.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/example_manual_aggregate.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_example_manual_aggregate.py: Manual aggregate ================== .. GENERATED FROM PYTHON SOURCE LINES 6-46 .. code-block:: Python 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"]}']) .. rst-class:: sphx-glr-script-out .. code-block:: none Opening individual URLs... Concatenating... =========================== Reader: NorKyst manual aggregate Projection: +proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs Coverage: [degrees] xmin: 0.000000 xmax: 2080800.000000 step: 800 numx: 2602 ymin: 0.000000 ymax: 720800.000000 step: 800 numy: 902 Corners (lon, lat): ( -1.58, 58.50) ( 23.71, 75.32) ( 9.19, 55.91) ( 38.06, 70.03) Vertical levels [m]: [ -0. -3. -10. -15. -25. -50. -75. -100. -150. -200. -250. -300. -500. -1000. -2000. -3000.] Available time range: start: 2025-03-10 00:00:00 end: 2025-03-12 23:00:00 step: 1:00:00 72 times (0 missing) Variables: ocean_vertical_diffusivity x_wind y_wind sea_floor_depth_below_sea_level sea_water_salinity sea_water_temperature x_sea_water_velocity eastward_sea_water_velocity y_sea_water_velocity northward_sea_water_velocity upward_sea_water_velocity sea_surface_height latitude longitude wind_speed - derived from ['x_wind', 'y_wind'] sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity'] =========================== 14:20:16 DEBUG opendrift.config:168: Adding 18 config items from __init__ 14:20:16 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails 14:20:16 DEBUG opendrift.config:168: Adding 5 config items from __init__ 14:20:16 INFO opendrift:509: OpenDriftSimulation initialised (version 1.13.0 / v1.13.0-75-gd4c13d2) 14:20:16 DEBUG opendrift.config:168: Adding 15 config items from oceandrift 14:20:16 DEBUG opendrift.config:178: Overwriting config item seed:z 14:20:16 DEBUG opendrift.models.basemodel.environment:316: Added reader NorKyst manual aggregate 14:20:16 INFO opendrift.models.basemodel.environment:206: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster... 14:20:16 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:20:20 DEBUG opendrift.models.basemodel.environment:316: Added reader global_landmask 14:20:20 INFO opendrift.models.basemodel.environment:233: Fallback values will be used for the following variables which have no readers: 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_significant_height: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_x_velocity: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_y_velocity: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_to_direction: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_significant_height: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_to_direction: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_mean_period: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_significant_height: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: surface_downward_x_stress: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: surface_downward_y_stress: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: turbulent_kinetic_energy: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: turbulent_generic_length_scale: 0.000000 14:20:20 INFO opendrift.models.basemodel.environment:236: ocean_mixed_layer_thickness: 50.000000 14:20:20 DEBUG opendrift:100: Changed mode from Mode.Config to Mode.Ready 14:20:20 DEBUG opendrift:100: Changed mode from Mode.Ready to Mode.Run 14:20:20 DEBUG opendrift:1763: ------------------------------------------------------ Software and hardware: OpenDrift version 1.13.0 Platform: Linux, 5.15.0-1077-aws 68.56757354736328 GB memory 36 processors (x86_64) NumPy version 1.26.4 SciPy version 1.15.2 Matplotlib version 3.9.1 NetCDF4 version 1.6.1 Xarray version 2025.1.2 ADIOS (adios_db) version 1.2.5 Copernicusmarine version 2.0.1 Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0] ------------------------------------------------------ 14:20:20 DEBUG opendrift:1777: No output file is specified, neglecting export_buffer_length 14:20:20 DEBUG opendrift:1895: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2025-03-10 00:00:00 to 2025-03-12 23:00:00) 14:20:20 DEBUG opendrift.models.basemodel.environment:168: Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556] 14:20:20 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation 14:20:20 DEBUG opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader NorKyst manual aggregate, assuming a maximum average speed of 2 m/s and time span of 1:00:00 14:20:20 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for NorKyst manual aggregate 14:20:20 DEBUG opendrift.models.basemodel.environment:168: Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556] 14:20:20 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for global_landmask 14:20:20 DEBUG opendrift:1982: Initial self.result, size Frozen({'trajectory': 1000, 'time': 72}) 14:20:20 INFO opendrift:919: Using existing reader for land_binary_mask 14:20:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:20:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:20:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:20 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:20:20 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:20:20 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:20:20 INFO opendrift:930: All points are in ocean 14:20:20 DEBUG opendrift:874: to be seeded: 1000, already seeded 0 14:20:20 DEBUG opendrift:892: Released 1000 new elements. 14:20:20 WARNING opendrift:713: Seafloor check not being run because environment is missing. This will happen the first time the function is run but if it happens subsequently there is probably a problem. 14:20:20 DEBUG opendrift:2055: ====================================================================== 14:20:20 INFO opendrift:2056: 2025-03-10 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated) 14:20:20 DEBUG opendrift:2062: 0 elements scheduled. 14:20:20 DEBUG opendrift:2064: ====================================================================== 14:20:20 DEBUG opendrift:2075: 59.99731 <- latitude -> 60.002846 14:20:20 DEBUG opendrift:2080: 4.4945407 <- longitude -> 4.504945 14:20:20 DEBUG opendrift:2083: z = 0.0 14:20:20 DEBUG opendrift:2086: --------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:20:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:20:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:20:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 00:00:00 (before) 2025-03-10 01:00:00 (after) 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:20:33 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-03-10 00:00:00) 14:20:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 00:00:00) in space (linearNDFast) 14:20:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:20:33 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:20:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees. 14:20:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees. 14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:20:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:20:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:33 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:20:33 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:20:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.145776 (min) 0.159455 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.302726 (min) 0.312355 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.742931 (min) -0.740033 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.730556 (min) 0.78324 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: 6.12017 (min) 6.17185 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.20885e-07 (min) -2.69704e-07 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:20:33 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:20:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.936519, mean: 0.943858, max: 0.950206 14:20:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:20:33 DEBUG opendrift.models.physics_methods:905: min: 5.272152, mean: 5.292767, max: 5.310538 14:20:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.272152, mean: 5.292767, max: 5.310538 14:20:33 DEBUG opendrift:643: No elements hit coastline. 14:20:33 DEBUG opendrift:733: No elements hit seafloor. 14:20:33 DEBUG opendrift:1695: No elements to deactivate 14:20:33 DEBUG opendrift:2129: Calling OceanDrift.update() 14:20:33 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.123402 m/s - 0.124300 m/s) 14:20:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:20:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:20:33 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:20:33 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:20:33 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:20:33 DEBUG opendrift:733: No elements hit seafloor. 14:20:33 DEBUG opendrift:2055: ====================================================================== 14:20:33 INFO opendrift:2056: 2025-03-10 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated) 14:20:33 DEBUG opendrift:2062: 0 elements scheduled. 14:20:33 DEBUG opendrift:2064: ====================================================================== 14:20:33 DEBUG opendrift:2075: 60.01130122002601 <- latitude -> 60.016666256902695 14:20:33 DEBUG opendrift:2080: 4.505139992961953 <- longitude -> 4.515982508406133 14:20:33 DEBUG opendrift:2083: z = 0.0 14:20:33 DEBUG opendrift:2086: --------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:20:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:20:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:20:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 01:00:00 (before) 2025-03-10 02:00:00 (after) 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:20:45 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-03-10 01:00:00) 14:20:45 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 01:00:00) in space (linearNDFast) 14:20:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:20:45 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:20:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4948709154515 and -65.48402841392604 degrees. 14:20:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4948709154515 and -65.48402841392604 degrees. 14:20:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:20:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:20:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:20:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:20:45 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:20:45 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:20:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:45 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:20:45 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:20:45 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.140122 (min) 0.153336 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.343733 (min) 0.349453 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.724446 (min) -0.720932 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.544049 (min) 0.567883 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.98197 (min) 6.02685 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.5006e-05 (min) 1.5405e-05 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.98 (min) 299.205 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:20:45 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:20:45 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.888213, mean: 0.894787, max: 0.901007 14:20:45 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:20:45 DEBUG opendrift.models.physics_methods:905: min: 5.134382, mean: 5.153344, max: 5.171227 14:20:45 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.134382, mean: 5.153344, max: 5.171227 14:20:45 DEBUG opendrift:643: No elements hit coastline. 14:20:45 DEBUG opendrift:733: No elements hit seafloor. 14:20:45 DEBUG opendrift:1695: No elements to deactivate 14:20:45 DEBUG opendrift:2129: Calling OceanDrift.update() 14:20:45 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120177 m/s - 0.121039 m/s) 14:20:45 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:20:45 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:20:45 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:20:45 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:20:45 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:20:45 DEBUG opendrift:733: No elements hit seafloor. 14:20:45 DEBUG opendrift:2055: ====================================================================== 14:20:45 INFO opendrift:2056: 2025-03-10 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated) 14:20:45 DEBUG opendrift:2062: 0 elements scheduled. 14:20:45 DEBUG opendrift:2064: ====================================================================== 14:20:45 DEBUG opendrift:2075: 60.02644772511189 <- latitude -> 60.03167350495067 14:20:45 DEBUG opendrift:2080: 4.5151591730768645 <- longitude -> 4.526298754561818 14:20:45 DEBUG opendrift:2083: z = 0.0 14:20:45 DEBUG opendrift:2086: --------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:20:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:20:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:20:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 02:00:00 (before) 2025-03-10 03:00:00 (after) 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:20:58 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 02:00:00) 14:20:58 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 02:00:00) in space (linearNDFast) 14:20:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:20:58 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:20:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48485173929662 and -65.47371215403605 degrees. 14:20:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48485173929662 and -65.47371215403605 degrees. 14:20:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:20:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:20:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:20:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:20:58 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:20:58 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:20:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:20:58 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:20:58 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:20:58 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.146653 (min) 0.158335 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.380438 (min) 0.389171 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.632144 (min) -0.628571 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.27585 (min) -0.234346 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.99805 (min) 6.03721 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.92965e-05 (min) 2.20907e-05 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.358 (min) 299.549 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:20:58 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:20:58 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.886525, mean: 0.892732, max: 0.898201 14:20:58 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:20:58 DEBUG opendrift.models.physics_methods:905: min: 5.129501, mean: 5.147424, max: 5.163169 14:20:58 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.129501, mean: 5.147424, max: 5.163169 14:20:58 DEBUG opendrift:643: No elements hit coastline. 14:20:58 DEBUG opendrift:733: No elements hit seafloor. 14:20:58 DEBUG opendrift:1695: No elements to deactivate 14:20:58 DEBUG opendrift:2129: Calling OceanDrift.update() 14:20:58 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120063 m/s - 0.120851 m/s) 14:20:58 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:20:58 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:20:58 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:20:58 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:20:58 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:20:58 DEBUG opendrift:733: No elements hit seafloor. 14:20:58 DEBUG opendrift:2055: ====================================================================== 14:20:58 INFO opendrift:2056: 2025-03-10 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated) 14:20:58 DEBUG opendrift:2062: 0 elements scheduled. 14:20:58 DEBUG opendrift:2064: ====================================================================== 14:20:58 DEBUG opendrift:2075: 60.04288520936434 <- latitude -> 60.047896551192736 14:20:58 DEBUG opendrift:2080: 4.52467765444129 <- longitude -> 4.535791050689333 14:20:58 DEBUG opendrift:2083: z = 0.0 14:20:58 DEBUG opendrift:2086: --------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:20:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:20:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:20:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:20:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:20:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 03:00:00 (before) 2025-03-10 04:00:00 (after) 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:21:11 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x7) for time before (2025-03-10 03:00:00) 14:21:11 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 03:00:00) in space (linearNDFast) 14:21:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:21:11 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:21:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47533324550474 and -65.46421985897445 degrees. 14:21:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47533324550474 and -65.46421985897445 degrees. 14:21:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:11 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:21:11 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:21:11 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:21:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:21:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:21:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:21:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:11 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:21:11 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:21:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.146589 (min) 0.156651 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.418239 (min) 0.4273 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.548911 (min) -0.545176 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.559598 (min) -0.500631 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.94506 (min) 5.97048 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.63387e-05 (min) 2.6901e-05 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.529 (min) 299.717 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:21:11 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:21:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.877158, mean: 0.880024, max: 0.883071 14:21:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:21:11 DEBUG opendrift.models.physics_methods:905: min: 5.102331, mean: 5.110657, max: 5.119499 14:21:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.102331, mean: 5.110657, max: 5.119499 14:21:11 DEBUG opendrift:643: No elements hit coastline. 14:21:11 DEBUG opendrift:733: No elements hit seafloor. 14:21:11 DEBUG opendrift:1695: No elements to deactivate 14:21:11 DEBUG opendrift:2129: Calling OceanDrift.update() 14:21:11 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119427 m/s - 0.119829 m/s) 14:21:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:21:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:21:11 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:21:11 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:21:11 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:21:11 DEBUG opendrift:733: No elements hit seafloor. 14:21:11 DEBUG opendrift:2055: ====================================================================== 14:21:11 INFO opendrift:2056: 2025-03-10 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated) 14:21:11 DEBUG opendrift:2062: 0 elements scheduled. 14:21:11 DEBUG opendrift:2064: ====================================================================== 14:21:11 DEBUG opendrift:2075: 60.06045627862875 <- latitude -> 60.065351304336914 14:21:11 DEBUG opendrift:2080: 4.5337210123497504 <- longitude -> 4.544991525418654 14:21:11 DEBUG opendrift:2083: z = 0.0 14:21:11 DEBUG opendrift:2086: --------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:21:11 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:21:11 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:21:11 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 04:00:00 (before) 2025-03-10 05:00:00 (after) 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:21:25 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-03-10 04:00:00) 14:21:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 04:00:00) in space (linearNDFast) 14:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:21:25 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:21:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46628989333101 and -65.45501937279542 degrees. 14:21:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46628989333101 and -65.45501937279542 degrees. 14:21:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:21:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:21:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:21:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:21:25 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:21:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:21:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:25 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:21:25 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:21:25 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.162717 (min) 0.178505 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.439813 (min) 0.45007 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.451434 (min) -0.448455 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.718707 (min) -0.688769 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: y_wind: 6.10196 (min) 6.12425 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.96872e-05 (min) 2.99051e-05 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.643 (min) 299.848 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:21:25 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:21:25 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.928489, mean: 0.931716, max: 0.934692 14:21:25 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:21:25 DEBUG opendrift.models.physics_methods:905: min: 5.249500, mean: 5.258614, max: 5.267005 14:21:25 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.249500, mean: 5.258614, max: 5.267005 14:21:25 DEBUG opendrift:643: No elements hit coastline. 14:21:25 DEBUG opendrift:733: No elements hit seafloor. 14:21:25 DEBUG opendrift:1695: No elements to deactivate 14:21:25 DEBUG opendrift:2129: Calling OceanDrift.update() 14:21:25 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.122871 m/s - 0.123281 m/s) 14:21:25 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:21:25 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:21:25 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:21:25 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:21:25 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:21:25 DEBUG opendrift:733: No elements hit seafloor. 14:21:25 DEBUG opendrift:2055: ====================================================================== 14:21:25 INFO opendrift:2056: 2025-03-10 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated) 14:21:25 DEBUG opendrift:2062: 0 elements scheduled. 14:21:25 DEBUG opendrift:2064: ====================================================================== 14:21:25 DEBUG opendrift:2075: 60.078934733638455 <- latitude -> 60.0835759279926 14:21:25 DEBUG opendrift:2080: 4.5434916025344805 <- longitude -> 4.555594743581466 14:21:25 DEBUG opendrift:2083: z = 0.0 14:21:25 DEBUG opendrift:2086: --------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:21:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:21:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:21:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 05:00:00 (before) 2025-03-10 06:00:00 (after) 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:21:38 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 05:00:00) 14:21:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 05:00:00) in space (linearNDFast) 14:21:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:21:38 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:21:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4565192945231 and -65.4444161428176 degrees. 14:21:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4565192945231 and -65.4444161428176 degrees. 14:21:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:21:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:21:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:21:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:21:38 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:21:38 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:21:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:38 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:21:38 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:21:38 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.181551 (min) 0.198185 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.390993 (min) 0.413129 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.320973 (min) -0.318324 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.38355 (min) -1.30869 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.47633 (min) 5.52594 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.41169e-05 (min) 3.43215e-05 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.833 (min) 300.024 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:21:38 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:21:38 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.784820, mean: 0.788735, max: 0.793358 14:21:38 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:21:38 DEBUG opendrift.models.physics_methods:905: min: 4.826304, mean: 4.838324, max: 4.852485 14:21:38 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.826304, mean: 4.838324, max: 4.852485 14:21:38 DEBUG opendrift:643: No elements hit coastline. 14:21:38 DEBUG opendrift:733: No elements hit seafloor. 14:21:38 DEBUG opendrift:1695: No elements to deactivate 14:21:38 DEBUG opendrift:2129: Calling OceanDrift.update() 14:21:38 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112966 m/s - 0.113579 m/s) 14:21:38 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:21:38 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:21:38 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:21:38 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:21:38 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:21:38 DEBUG opendrift:733: No elements hit seafloor. 14:21:38 DEBUG opendrift:2055: ====================================================================== 14:21:38 INFO opendrift:2056: 2025-03-10 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated) 14:21:38 DEBUG opendrift:2062: 0 elements scheduled. 14:21:38 DEBUG opendrift:2064: ====================================================================== 14:21:38 DEBUG opendrift:2075: 60.09576790631006 <- latitude -> 60.099757412055254 14:21:38 DEBUG opendrift:2080: 4.553636371866405 <- longitude -> 4.566287094947896 14:21:38 DEBUG opendrift:2083: z = 0.0 14:21:38 DEBUG opendrift:2086: --------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:21:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:21:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:21:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 06:00:00 (before) 2025-03-10 07:00:00 (after) 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:21:52 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x22x7) for time before (2025-03-10 06:00:00) 14:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 06:00:00) in space (linearNDFast) 14:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:21:52 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:21:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4463745112966 and -65.43372379117338 degrees. 14:21:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4463745112966 and -65.43372379117338 degrees. 14:21:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:52 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:21:52 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:21:52 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:52 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:21:52 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:21:52 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:21:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:21:52 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:21:52 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:21:52 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.153591 (min) 0.184194 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.249141 (min) 0.275119 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.204528 (min) -0.201612 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.92514 (min) -1.24178 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.56088 (min) -8.59664 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.68663e-05 (min) 2.69753e-05 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.935 (min) 299.993 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:21:52 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:21:52 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.855928, mean: 2.102514, max: 2.339869 14:21:52 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:21:52 DEBUG opendrift.models.physics_methods:905: min: 7.421815, mean: 7.898231, max: 8.333460 14:21:52 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 7.421815, mean: 7.898231, max: 8.333460 14:21:52 DEBUG opendrift:643: No elements hit coastline. 14:21:52 DEBUG opendrift:733: No elements hit seafloor. 14:21:52 DEBUG opendrift:1695: No elements to deactivate 14:21:52 DEBUG opendrift:2129: Calling OceanDrift.update() 14:21:52 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173717 m/s - 0.195055 m/s) 14:21:52 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:21:52 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:21:52 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:21:52 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:21:52 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:21:52 DEBUG opendrift:733: No elements hit seafloor. 14:21:52 DEBUG opendrift:2055: ====================================================================== 14:21:52 INFO opendrift:2056: 2025-03-10 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated) 14:21:52 DEBUG opendrift:2062: 0 elements scheduled. 14:21:52 DEBUG opendrift:2064: ====================================================================== 14:21:52 DEBUG opendrift:2075: 60.09856916091069 <- latitude -> 60.101902612745576 14:21:52 DEBUG opendrift:2080: 4.561366570896408 <- longitude -> 4.57606444696679 14:21:52 DEBUG opendrift:2083: z = 0.0 14:21:52 DEBUG opendrift:2086: --------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:21:52 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:21:52 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:21:52 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:21:52 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 07:00:00 (before) 2025-03-10 08:00:00 (after) 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:22:07 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 07:00:00) 14:22:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 07:00:00) in space (linearNDFast) 14:22:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:22:07 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:22:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43864431858036 and -65.42394644038109 degrees. 14:22:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43864431858036 and -65.42394644038109 degrees. 14:22:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:22:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:22:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:22:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:22:07 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:22:07 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:22:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:07 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:22:07 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:22:07 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.161473 (min) 0.185694 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.171686 (min) 0.192226 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.137788 (min) -0.135195 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.25801 (min) -2.16075 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.39976 (min) -9.3031 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.40634e-06 (min) 5.56518e-06 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.873 (min) 299.972 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:22:07 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:22:07 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.243928, mean: 2.270483, max: 2.298971 14:22:07 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:22:07 DEBUG opendrift.models.physics_methods:905: min: 8.160824, mean: 8.208951, max: 8.260310 14:22:07 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.160824, mean: 8.208951, max: 8.260310 14:22:07 DEBUG opendrift:643: No elements hit coastline. 14:22:07 DEBUG opendrift:733: No elements hit seafloor. 14:22:07 DEBUG opendrift:1695: No elements to deactivate 14:22:07 DEBUG opendrift:2129: Calling OceanDrift.update() 14:22:07 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191015 m/s - 0.193343 m/s) 14:22:07 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:22:07 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:22:07 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:22:07 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:22:07 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:22:07 DEBUG opendrift:733: No elements hit seafloor. 14:22:07 DEBUG opendrift:2055: ====================================================================== 14:22:07 INFO opendrift:2056: 2025-03-10 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated) 14:22:07 DEBUG opendrift:2062: 0 elements scheduled. 14:22:07 DEBUG opendrift:2064: ====================================================================== 14:22:07 DEBUG opendrift:2075: 60.0984840314032 <- latitude -> 60.10168874906708 14:22:07 DEBUG opendrift:2080: 4.569018615237455 <- longitude -> 4.584981229114374 14:22:07 DEBUG opendrift:2083: z = 0.0 14:22:07 DEBUG opendrift:2086: --------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:22:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:22:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:22:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 08:00:00 (before) 2025-03-10 09:00:00 (after) 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:22:21 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 08:00:00) 14:22:21 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 08:00:00) in space (linearNDFast) 14:22:21 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:22:21 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:22:21 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43099227069096 and -65.41502965875935 degrees. 14:22:21 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43099227069096 and -65.41502965875935 degrees. 14:22:21 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:21 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:22:21 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:22:21 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:21 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:22:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:22:21 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:22:21 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:22:21 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:21 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:22:21 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:22:21 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.167224 (min) 0.189219 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.13649 (min) 0.146292 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.157283 (min) -0.15507 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.8365 (min) -1.73484 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.64257 (min) -9.53939 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.86289e-05 (min) -1.85649e-05 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.792 (min) 299.975 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:22:21 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:22:21 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.312638, mean: 2.340298, max: 2.370255 14:22:21 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:22:21 DEBUG opendrift.models.physics_methods:905: min: 8.284826, mean: 8.334205, max: 8.387396 14:22:21 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.284826, mean: 8.334205, max: 8.387396 14:22:21 DEBUG opendrift:643: No elements hit coastline. 14:22:21 DEBUG opendrift:733: No elements hit seafloor. 14:22:21 DEBUG opendrift:1695: No elements to deactivate 14:22:21 DEBUG opendrift:2129: Calling OceanDrift.update() 14:22:21 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.193917 m/s - 0.196318 m/s) 14:22:21 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:22:21 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:22:21 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:22:21 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:22:21 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:22:21 DEBUG opendrift:733: No elements hit seafloor. 14:22:21 DEBUG opendrift:2055: ====================================================================== 14:22:21 INFO opendrift:2056: 2025-03-10 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated) 14:22:21 DEBUG opendrift:2062: 0 elements scheduled. 14:22:21 DEBUG opendrift:2064: ====================================================================== 14:22:21 DEBUG opendrift:2075: 60.096830352468245 <- latitude -> 60.10008141047601 14:22:21 DEBUG opendrift:2080: 4.577545991945498 <- longitude -> 4.594868161205128 14:22:21 DEBUG opendrift:2083: z = 0.0 14:22:21 DEBUG opendrift:2086: --------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:22:21 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:22:21 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:21 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:21 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:22:21 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 09:00:00 (before) 2025-03-10 10:00:00 (after) 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:22:34 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-03-10 09:00:00) 14:22:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 09:00:00) in space (linearNDFast) 14:22:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:22:34 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:22:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4224648970741 and -65.4051427190661 degrees. 14:22:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4224648970741 and -65.4051427190661 degrees. 14:22:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:22:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:22:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:22:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:22:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:22:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:22:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:34 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:22:34 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:22:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.159607 (min) 0.174858 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0901975 (min) 0.0945717 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.28439 (min) -0.282031 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.00848 (min) -0.976418 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.8674 (min) -11.733 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.58548e-05 (min) -4.57736e-05 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.705 (min) 299.96 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:22:34 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:22:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.410088, mean: 3.452260, max: 3.489539 14:22:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:22:34 DEBUG opendrift.models.physics_methods:905: min: 10.060334, mean: 10.122332, max: 10.176855 14:22:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.060334, mean: 10.122332, max: 10.176855 14:22:34 DEBUG opendrift:643: No elements hit coastline. 14:22:34 DEBUG opendrift:733: No elements hit seafloor. 14:22:34 DEBUG opendrift:1695: No elements to deactivate 14:22:34 DEBUG opendrift:2129: Calling OceanDrift.update() 14:22:34 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.235475 m/s - 0.238203 m/s) 14:22:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:22:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:22:34 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:22:34 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:22:34 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:22:34 DEBUG opendrift:733: No elements hit seafloor. 14:22:34 DEBUG opendrift:2055: ====================================================================== 14:22:34 INFO opendrift:2056: 2025-03-10 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated) 14:22:34 DEBUG opendrift:2062: 0 elements scheduled. 14:22:34 DEBUG opendrift:2064: ====================================================================== 14:22:34 DEBUG opendrift:2075: 60.09211494894119 <- latitude -> 60.09551281439842 14:22:34 DEBUG opendrift:2080: 4.586569605964305 <- longitude -> 4.604920830528215 14:22:34 DEBUG opendrift:2083: z = 0.0 14:22:34 DEBUG opendrift:2086: --------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:22:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:22:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:22:34 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 10:00:00 (before) 2025-03-10 11:00:00 (after) 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:22:54 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 10:00:00) 14:22:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 10:00:00) in space (linearNDFast) 14:22:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:22:54 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:22:54 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41344128125039 and -65.39509005069962 degrees. 14:22:54 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41344128125039 and -65.39509005069962 degrees. 14:22:54 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:54 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:22:54 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:22:54 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:54 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:22:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:22:54 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:22:54 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:22:54 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:22:54 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:22:54 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:22:54 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.132492 (min) 0.152571 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0503705 (min) 0.054269 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.471511 (min) -0.469245 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.706125 (min) -0.658058 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.068 (min) -12.935 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.40139e-05 (min) -5.39932e-05 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.709 (min) 299.994 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:22:54 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:22:54 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.126610, mean: 4.172598, max: 4.213275 14:22:54 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:22:54 DEBUG opendrift.models.physics_methods:905: min: 11.066908, mean: 11.128387, max: 11.182515 14:22:54 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.066908, mean: 11.128387, max: 11.182515 14:22:54 DEBUG opendrift:643: No elements hit coastline. 14:22:54 DEBUG opendrift:733: No elements hit seafloor. 14:22:54 DEBUG opendrift:1695: No elements to deactivate 14:22:54 DEBUG opendrift:2129: Calling OceanDrift.update() 14:22:54 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259035 m/s - 0.261741 m/s) 14:22:54 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:22:54 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:22:54 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:22:54 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:22:54 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:22:54 DEBUG opendrift:733: No elements hit seafloor. 14:22:54 DEBUG opendrift:2055: ====================================================================== 14:22:54 INFO opendrift:2056: 2025-03-10 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated) 14:22:54 DEBUG opendrift:2062: 0 elements scheduled. 14:22:54 DEBUG opendrift:2064: ====================================================================== 14:22:54 DEBUG opendrift:2075: 60.085414852557165 <- latitude -> 60.08881926700428 14:22:54 DEBUG opendrift:2080: 4.594228420319947 <- longitude -> 4.613940992020028 14:22:54 DEBUG opendrift:2083: z = 0.0 14:22:54 DEBUG opendrift:2086: --------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:22:54 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:22:54 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:22:54 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:22:54 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:22:54 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 11:00:00 (before) 2025-03-10 12:00:00 (after) 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:23:12 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-03-10 11:00:00) 14:23:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 11:00:00) in space (linearNDFast) 14:23:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:23:12 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:23:12 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40578246895006 and -65.38606989367588 degrees. 14:23:12 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40578246895006 and -65.38606989367588 degrees. 14:23:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:12 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:23:12 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:23:12 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:23:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:23:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:23:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:23:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:12 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:23:12 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:23:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0944622 (min) 0.110087 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0257684 (min) 0.0330985 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.65026 (min) -0.647593 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.41518 (min) -1.39686 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.3921 (min) -13.1932 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.16763e-05 (min) -4.15725e-05 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.841 (min) 300.102 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:23:12 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:23:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.329996, mean: 4.400005, max: 4.461233 14:23:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:23:12 DEBUG opendrift.models.physics_methods:905: min: 11.336351, mean: 11.427594, max: 11.506865 14:23:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.336351, mean: 11.427594, max: 11.506865 14:23:12 DEBUG opendrift:643: No elements hit coastline. 14:23:12 DEBUG opendrift:733: No elements hit seafloor. 14:23:12 DEBUG opendrift:1695: No elements to deactivate 14:23:12 DEBUG opendrift:2129: Calling OceanDrift.update() 14:23:12 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.265342 m/s - 0.269333 m/s) 14:23:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:23:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:23:12 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:23:12 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:23:12 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:23:12 DEBUG opendrift:733: No elements hit seafloor. 14:23:12 DEBUG opendrift:2055: ====================================================================== 14:23:12 INFO opendrift:2056: 2025-03-10 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated) 14:23:12 DEBUG opendrift:2062: 0 elements scheduled. 14:23:12 DEBUG opendrift:2064: ====================================================================== 14:23:12 DEBUG opendrift:2075: 60.07779654400697 <- latitude -> 60.08116848559993 14:23:12 DEBUG opendrift:2080: 4.598515937761386 <- longitude -> 4.619175250901291 14:23:12 DEBUG opendrift:2083: z = 0.0 14:23:12 DEBUG opendrift:2086: --------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:23:12 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:23:12 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:23:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 12:00:00 (before) 2025-03-10 13:00:00 (after) 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:23:30 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-10 12:00:00) 14:23:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 12:00:00) in space (linearNDFast) 14:23:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:23:30 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:23:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40149494604745 and -65.38083564069785 degrees. 14:23:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40149494604745 and -65.38083564069785 degrees. 14:23:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:23:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:23:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:23:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:23:30 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:23:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:23:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:30 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:23:30 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:23:30 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0167873 (min) 0.0277275 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.041801 (min) 0.0463206 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.756281 (min) -0.753464 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.914185 (min) -0.840686 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.2326 (min) -13.0491 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.85715e-05 (min) -1.82805e-05 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.04 (min) 300.226 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:23:30 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:23:30 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.206400, mean: 4.267833, max: 4.328085 14:23:30 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:23:30 DEBUG opendrift.models.physics_methods:905: min: 11.173387, mean: 11.254650, max: 11.333850 14:23:30 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.173387, mean: 11.254650, max: 11.333850 14:23:30 DEBUG opendrift:643: No elements hit coastline. 14:23:30 DEBUG opendrift:733: No elements hit seafloor. 14:23:30 DEBUG opendrift:1695: No elements to deactivate 14:23:30 DEBUG opendrift:2129: Calling OceanDrift.update() 14:23:30 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.261528 m/s - 0.265284 m/s) 14:23:30 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:23:30 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:23:30 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:23:30 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:23:30 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:23:30 DEBUG opendrift:733: No elements hit seafloor. 14:23:30 DEBUG opendrift:2055: ====================================================================== 14:23:30 INFO opendrift:2056: 2025-03-10 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated) 14:23:30 DEBUG opendrift:2062: 0 elements scheduled. 14:23:30 DEBUG opendrift:2064: ====================================================================== 14:23:30 DEBUG opendrift:2075: 60.07073193059094 <- latitude -> 60.074128685683625 14:23:30 DEBUG opendrift:2080: 4.5986854916507935 <- longitude -> 4.61961387702474 14:23:30 DEBUG opendrift:2083: z = 0.0 14:23:30 DEBUG opendrift:2086: --------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:23:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:23:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:23:30 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 13:00:00 (before) 2025-03-10 14:00:00 (after) 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:23:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 13:00:00) 14:23:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 13:00:00) in space (linearNDFast) 14:23:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:23:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:23:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40132539748753 and -65.3803970106242 degrees. 14:23:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40132539748753 and -65.3803970106242 degrees. 14:23:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:23:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:23:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:23:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:23:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:23:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:23:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:23:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:23:48 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:23:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0617215 (min) -0.0523036 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0758431 (min) 0.0811858 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.773526 (min) -0.769699 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.212897 (min) 0.33107 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.253 (min) -14.1651 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.77714e-06 (min) 5.93684e-06 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.225 (min) 300.324 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:23:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:23:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.938691, mean: 4.971391, max: 4.998523 14:23:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:23:48 DEBUG opendrift.models.physics_methods:905: min: 12.106971, mean: 12.146979, max: 12.180087 14:23:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.106971, mean: 12.146979, max: 12.180087 14:23:48 DEBUG opendrift:643: No elements hit coastline. 14:23:48 DEBUG opendrift:733: No elements hit seafloor. 14:23:48 DEBUG opendrift:1695: No elements to deactivate 14:23:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:23:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283379 m/s - 0.285091 m/s) 14:23:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:23:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:23:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:23:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:23:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:23:48 DEBUG opendrift:733: No elements hit seafloor. 14:23:48 DEBUG opendrift:2055: ====================================================================== 14:23:48 INFO opendrift:2056: 2025-03-10 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated) 14:23:48 DEBUG opendrift:2062: 0 elements scheduled. 14:23:48 DEBUG opendrift:2064: ====================================================================== 14:23:48 DEBUG opendrift:2075: 60.06411657744246 <- latitude -> 60.06745360863835 14:23:48 DEBUG opendrift:2080: 4.595183242654973 <- longitude -> 4.616306764415042 14:23:48 DEBUG opendrift:2083: z = 0.0 14:23:48 DEBUG opendrift:2086: --------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:23:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:23:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:23:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:23:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:23:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 14:00:00 (before) 2025-03-10 15:00:00 (after) 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:24:06 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 14:00:00) 14:24:06 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 14:00:00) in space (linearNDFast) 14:24:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:24:06 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:24:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40482765858664 and -65.38370411895397 degrees. 14:24:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40482765858664 and -65.38370411895397 degrees. 14:24:06 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:06 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:24:06 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:24:06 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:06 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:24:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:24:06 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:24:06 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:24:06 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:06 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:24:06 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:24:06 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.130347 (min) -0.120926 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.135161 (min) 0.137331 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.718752 (min) -0.714041 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.243415 (min) 0.356986 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.5871 (min) -14.5278 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.0049e-05 (min) 2.03121e-05 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.355 (min) 300.393 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:24:06 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:24:06 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.195167, mean: 5.214376, max: 5.235929 14:24:06 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:24:06 DEBUG opendrift.models.physics_methods:905: min: 12.417361, mean: 12.440295, max: 12.465981 14:24:06 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.417361, mean: 12.440295, max: 12.465981 14:24:06 DEBUG opendrift:643: No elements hit coastline. 14:24:06 DEBUG opendrift:733: No elements hit seafloor. 14:24:06 DEBUG opendrift:1695: No elements to deactivate 14:24:06 DEBUG opendrift:2129: Calling OceanDrift.update() 14:24:06 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.290645 m/s - 0.291783 m/s) 14:24:06 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:24:06 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:24:06 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:24:06 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:24:06 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:24:06 DEBUG opendrift:733: No elements hit seafloor. 14:24:06 DEBUG opendrift:2055: ====================================================================== 14:24:06 INFO opendrift:2056: 2025-03-10 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated) 14:24:06 DEBUG opendrift:2062: 0 elements scheduled. 14:24:06 DEBUG opendrift:2064: ====================================================================== 14:24:06 DEBUG opendrift:2075: 60.05911662701658 <- latitude -> 60.06244303412133 14:24:06 DEBUG opendrift:2080: 4.587226267245413 <- longitude -> 4.608831132468646 14:24:06 DEBUG opendrift:2083: z = 0.0 14:24:06 DEBUG opendrift:2086: --------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:24:06 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:24:06 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:06 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:06 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:24:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 15:00:00 (before) 2025-03-10 16:00:00 (after) 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:24:23 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 15:00:00) 14:24:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 15:00:00) in space (linearNDFast) 14:24:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:24:23 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:24:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41278463735583 and -65.39117976412145 degrees. 14:24:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41278463735583 and -65.39117976412145 degrees. 14:24:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:24:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:24:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:24:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:24:23 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:24:23 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:24:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:23 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:24:23 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:24:23 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.16301 (min) -0.14273 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20409 (min) 0.211779 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.627261 (min) -0.622199 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.636425 (min) 0.694938 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.4275 (min) -14.3741 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.97261e-05 (min) 2.99617e-05 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.318 (min) 300.415 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:24:23 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:24:23 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.094602, mean: 5.110942, max: 5.130549 14:24:23 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:24:23 DEBUG opendrift.models.physics_methods:905: min: 12.296592, mean: 12.316293, max: 12.339897 14:24:23 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.296592, mean: 12.316293, max: 12.339897 14:24:23 DEBUG opendrift:643: No elements hit coastline. 14:24:23 DEBUG opendrift:733: No elements hit seafloor. 14:24:23 DEBUG opendrift:1695: No elements to deactivate 14:24:23 DEBUG opendrift:2129: Calling OceanDrift.update() 14:24:23 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.287818 m/s - 0.288831 m/s) 14:24:23 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:24:23 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:24:23 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:24:23 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:24:23 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:24:23 DEBUG opendrift:733: No elements hit seafloor. 14:24:23 DEBUG opendrift:2055: ====================================================================== 14:24:23 INFO opendrift:2056: 2025-03-10 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated) 14:24:23 DEBUG opendrift:2062: 0 elements scheduled. 14:24:23 DEBUG opendrift:2064: ====================================================================== 14:24:23 DEBUG opendrift:2075: 60.05640419943248 <- latitude -> 60.059945492283234 14:24:23 DEBUG opendrift:2080: 4.577510984778576 <- longitude -> 4.600501906330896 14:24:23 DEBUG opendrift:2083: z = 0.0 14:24:23 DEBUG opendrift:2086: --------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:24:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:24:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:24:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 16:00:00 (before) 2025-03-10 17:00:00 (after) 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:24:40 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-10 16:00:00) 14:24:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 16:00:00) in space (linearNDFast) 14:24:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:24:40 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:24:40 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.42249990562543 and -65.39950898467899 degrees. 14:24:40 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.42249990562543 and -65.39950898467899 degrees. 14:24:40 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:40 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:24:40 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:24:40 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:40 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:24:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:24:40 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:24:40 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:24:40 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:40 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:24:40 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:24:40 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.171767 (min) -0.145984 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.240499 (min) 0.255849 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.514529 (min) -0.508291 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.72005 (min) 0.791524 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.9719 (min) -14.931 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.39889e-05 (min) 3.4185e-05 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.238 (min) 300.398 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:24:40 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:24:40 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.499546, mean: 5.512622, max: 5.527030 14:24:40 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:24:40 DEBUG opendrift.models.physics_methods:905: min: 12.775943, mean: 12.791122, max: 12.807828 14:24:40 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.775943, mean: 12.791122, max: 12.807828 14:24:40 DEBUG opendrift:643: No elements hit coastline. 14:24:40 DEBUG opendrift:733: No elements hit seafloor. 14:24:40 DEBUG opendrift:1695: No elements to deactivate 14:24:40 DEBUG opendrift:2129: Calling OceanDrift.update() 14:24:40 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.299038 m/s - 0.299784 m/s) 14:24:40 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:24:40 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:24:40 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:24:40 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:24:40 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:24:40 DEBUG opendrift:733: No elements hit seafloor. 14:24:40 DEBUG opendrift:2055: ====================================================================== 14:24:40 INFO opendrift:2056: 2025-03-10 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated) 14:24:40 DEBUG opendrift:2062: 0 elements scheduled. 14:24:40 DEBUG opendrift:2064: ====================================================================== 14:24:40 DEBUG opendrift:2075: 60.05453096325243 <- latitude -> 60.05848780420273 14:24:40 DEBUG opendrift:2080: 4.567338178938099 <- longitude -> 4.592087414936068 14:24:40 DEBUG opendrift:2083: z = 0.0 14:24:40 DEBUG opendrift:2086: --------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:24:40 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:24:40 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:40 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:40 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:24:40 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 17:00:00 (before) 2025-03-10 18:00:00 (after) 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:24:58 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 17:00:00) 14:24:58 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 17:00:00) in space (linearNDFast) 14:24:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:24:58 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:24:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43267271061289 and -65.40792347681838 degrees. 14:24:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43267271061289 and -65.40792347681838 degrees. 14:24:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:24:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:24:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:24:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:24:58 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:24:58 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:24:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:24:58 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:24:58 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:24:58 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.156634 (min) -0.139482 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.242497 (min) 0.253534 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.382185 (min) -0.375065 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.469904 (min) 0.489332 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: y_wind: -15.5667 (min) -15.4996 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.01793e-05 (min) 4.02725e-05 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.129 (min) 300.348 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:24:58 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:24:58 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.915283, mean: 5.939821, max: 5.967046 14:24:58 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:24:58 DEBUG opendrift.models.physics_methods:905: min: 13.250044, mean: 13.277495, max: 13.307892 14:24:58 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 13.250044, mean: 13.277495, max: 13.307892 14:24:58 DEBUG opendrift:643: No elements hit coastline. 14:24:58 DEBUG opendrift:733: No elements hit seafloor. 14:24:58 DEBUG opendrift:1695: No elements to deactivate 14:24:58 DEBUG opendrift:2129: Calling OceanDrift.update() 14:24:58 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.310135 m/s - 0.311489 m/s) 14:24:58 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:24:58 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:24:58 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:24:58 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:24:58 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:24:58 DEBUG opendrift:733: No elements hit seafloor. 14:24:58 DEBUG opendrift:2055: ====================================================================== 14:24:58 INFO opendrift:2056: 2025-03-10 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated) 14:24:58 DEBUG opendrift:2062: 0 elements scheduled. 14:24:58 DEBUG opendrift:2064: ====================================================================== 14:24:58 DEBUG opendrift:2075: 60.05234041368983 <- latitude -> 60.05661616203741 14:24:58 DEBUG opendrift:2080: 4.557845921283005 <- longitude -> 4.583677910786553 14:24:58 DEBUG opendrift:2083: z = 0.0 14:24:58 DEBUG opendrift:2086: --------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:24:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:24:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:24:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:24:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:24:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 18:00:00 (before) 2025-03-10 19:00:00 (after) 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:25:15 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-03-10 18:00:00) 14:25:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 18:00:00) in space (linearNDFast) 14:25:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:25:15 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:25:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.44216497424729 and -65.41633298283628 degrees. 14:25:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.44216497424729 and -65.41633298283628 degrees. 14:25:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:15 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:25:15 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:25:15 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:25:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:25:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:25:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:25:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:15 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:25:15 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:25:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.124061 (min) -0.120555 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20651 (min) 0.208438 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.235714 (min) -0.229394 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.173724 (min) -0.170104 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: -15.7836 (min) -15.6845 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.96901e-05 (min) 3.99552e-05 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.018 (min) 300.287 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:25:15 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:25:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 6.052436, mean: 6.090705, max: 6.129155 14:25:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:25:15 DEBUG opendrift.models.physics_methods:905: min: 13.402775, mean: 13.445072, max: 13.487450 14:25:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 13.402775, mean: 13.445072, max: 13.487450 14:25:15 DEBUG opendrift:643: No elements hit coastline. 14:25:15 DEBUG opendrift:733: No elements hit seafloor. 14:25:15 DEBUG opendrift:1695: No elements to deactivate 14:25:15 DEBUG opendrift:2129: Calling OceanDrift.update() 14:25:15 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.313709 m/s - 0.315691 m/s) 14:25:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:25:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:25:15 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:25:15 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:25:15 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:25:15 DEBUG opendrift:733: No elements hit seafloor. 14:25:15 DEBUG opendrift:2055: ====================================================================== 14:25:15 INFO opendrift:2056: 2025-03-10 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated) 14:25:15 DEBUG opendrift:2062: 0 elements scheduled. 14:25:15 DEBUG opendrift:2064: ====================================================================== 14:25:15 DEBUG opendrift:2075: 60.048881631398885 <- latitude -> 60.053167774784086 14:25:15 DEBUG opendrift:2080: 4.549693449666512 <- longitude -> 4.575665044669521 14:25:15 DEBUG opendrift:2083: z = 0.0 14:25:15 DEBUG opendrift:2086: --------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:25:15 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:25:15 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:25:15 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 19:00:00 (before) 2025-03-10 20:00:00 (after) 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:25:33 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-10 19:00:00) 14:25:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 19:00:00) in space (linearNDFast) 14:25:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:25:33 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:25:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45031746043229 and -65.4243458539236 degrees. 14:25:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45031746043229 and -65.4243458539236 degrees. 14:25:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:25:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:25:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:25:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:25:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:25:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:25:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:33 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:25:33 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:25:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101888 (min) -0.093081 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.153047 (min) 0.166128 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.108582 (min) -0.103331 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.57248 (min) -1.50501 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.4244 (min) -14.3281 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.72773e-05 (min) 2.76476e-05 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.906 (min) 300.205 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:25:33 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:25:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.105989, mean: 5.143127, max: 5.179151 14:25:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:25:33 DEBUG opendrift.models.physics_methods:905: min: 12.310325, mean: 12.355004, max: 12.398206 14:25:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.310325, mean: 12.355004, max: 12.398206 14:25:33 DEBUG opendrift:643: No elements hit coastline. 14:25:33 DEBUG opendrift:733: No elements hit seafloor. 14:25:33 DEBUG opendrift:1695: No elements to deactivate 14:25:33 DEBUG opendrift:2129: Calling OceanDrift.update() 14:25:33 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288139 m/s - 0.290196 m/s) 14:25:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:25:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:25:33 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:25:33 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:25:33 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:25:33 DEBUG opendrift:733: No elements hit seafloor. 14:25:33 DEBUG opendrift:2055: ====================================================================== 14:25:33 INFO opendrift:2056: 2025-03-10 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated) 14:25:33 DEBUG opendrift:2062: 0 elements scheduled. 14:25:33 DEBUG opendrift:2064: ====================================================================== 14:25:33 DEBUG opendrift:2075: 60.04492333299627 <- latitude -> 60.0488746417725 14:25:33 DEBUG opendrift:2080: 4.541646503683832 <- longitude -> 4.567135406796846 14:25:33 DEBUG opendrift:2083: z = 0.0 14:25:33 DEBUG opendrift:2086: --------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:25:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:25:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:25:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 20:00:00 (before) 2025-03-10 21:00:00 (after) 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:25:50 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 20:00:00) 14:25:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 20:00:00) in space (linearNDFast) 14:25:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:25:50 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:25:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45836439952186 and -65.43287549178292 degrees. 14:25:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45836439952186 and -65.43287549178292 degrees. 14:25:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:25:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:25:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:25:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:25:50 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:25:50 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:25:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:25:50 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:25:50 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:25:50 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0794614 (min) -0.072269 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.112839 (min) 0.12922 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0647285 (min) -0.0604974 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.580704 (min) -0.469182 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.059 (min) -12.8523 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.18716e-06 (min) -3.93861e-06 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.797 (min) 300.102 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:25:50 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:25:50 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.071749, mean: 4.135383, max: 4.200613 14:25:50 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:25:50 DEBUG opendrift.models.physics_methods:905: min: 10.993097, mean: 11.078625, max: 11.165699 14:25:50 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.993097, mean: 11.078625, max: 11.165699 14:25:50 DEBUG opendrift:643: No elements hit coastline. 14:25:50 DEBUG opendrift:733: No elements hit seafloor. 14:25:50 DEBUG opendrift:1695: No elements to deactivate 14:25:50 DEBUG opendrift:2129: Calling OceanDrift.update() 14:25:50 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.257308 m/s - 0.261348 m/s) 14:25:50 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:25:50 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:25:50 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:25:50 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:25:50 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:25:50 DEBUG opendrift:733: No elements hit seafloor. 14:25:50 DEBUG opendrift:2055: ====================================================================== 14:25:50 INFO opendrift:2056: 2025-03-10 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated) 14:25:50 DEBUG opendrift:2062: 0 elements scheduled. 14:25:50 DEBUG opendrift:2064: ====================================================================== 14:25:50 DEBUG opendrift:2075: 60.04067210070606 <- latitude -> 60.04424031123048 14:25:50 DEBUG opendrift:2080: 4.536047745936707 <- longitude -> 4.561250516335529 14:25:50 DEBUG opendrift:2083: z = 0.0 14:25:50 DEBUG opendrift:2086: --------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:25:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:25:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:25:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:25:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:25:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 21:00:00 (before) 2025-03-10 22:00:00 (after) 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:26:08 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 21:00:00) 14:26:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 21:00:00) in space (linearNDFast) 14:26:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:26:08 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:26:08 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.463963160979 and -65.43876038927448 degrees. 14:26:08 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.463963160979 and -65.43876038927448 degrees. 14:26:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:26:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:26:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:26:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:26:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:26:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:26:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:08 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:26:08 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:26:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0731146 (min) -0.0663263 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0690953 (min) 0.0829971 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.140935 (min) -0.136984 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.151336 (min) 0.158402 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.5045 (min) -14.3659 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.59728e-05 (min) -3.58703e-05 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.719 (min) 300.023 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:26:08 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:26:08 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.077508, mean: 5.124224, max: 5.175958 14:26:08 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:26:08 DEBUG opendrift.models.physics_methods:905: min: 12.275943, mean: 12.332270, max: 12.394385 14:26:08 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.275943, mean: 12.332270, max: 12.394385 14:26:08 DEBUG opendrift:643: No elements hit coastline. 14:26:08 DEBUG opendrift:733: No elements hit seafloor. 14:26:08 DEBUG opendrift:1695: No elements to deactivate 14:26:08 DEBUG opendrift:2129: Calling OceanDrift.update() 14:26:08 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.287334 m/s - 0.290107 m/s) 14:26:08 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:26:08 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:26:08 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:26:08 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:26:08 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:26:08 DEBUG opendrift:733: No elements hit seafloor. 14:26:08 DEBUG opendrift:2055: ====================================================================== 14:26:08 INFO opendrift:2056: 2025-03-10 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated) 14:26:08 DEBUG opendrift:2062: 0 elements scheduled. 14:26:08 DEBUG opendrift:2064: ====================================================================== 14:26:08 DEBUG opendrift:2075: 60.03398818739957 <- latitude -> 60.03720127613515 14:26:08 DEBUG opendrift:2080: 4.531522459670209 <- longitude -> 4.5570076348053705 14:26:08 DEBUG opendrift:2083: z = 0.0 14:26:08 DEBUG opendrift:2086: --------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:26:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:26:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:26:08 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 22:00:00 (before) 2025-03-10 23:00:00 (after) 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:26:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:26:25 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 22:00:00) 14:26:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 22:00:00) in space (linearNDFast) 14:26:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:26:25 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:26:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46848846702329 and -65.44300328161113 degrees. 14:26:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46848846702329 and -65.44300328161113 degrees. 14:26:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:26 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:26:26 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:26:26 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:26:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:26:26 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:26:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:26:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:26 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:26:26 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:26:26 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0848538 (min) -0.076924 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0466098 (min) 0.0589404 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.313714 (min) -0.309722 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.677041 (min) -0.623299 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.2004 (min) -14.0126 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.55674e-05 (min) -5.55077e-05 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.643 (min) 299.951 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:26:26 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:26:26 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.841496, mean: 4.902225, max: 4.970208 14:26:26 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:26:26 DEBUG opendrift.models.physics_methods:905: min: 11.987244, mean: 12.062160, max: 12.145541 14:26:26 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.987244, mean: 12.062160, max: 12.145541 14:26:26 DEBUG opendrift:643: No elements hit coastline. 14:26:26 DEBUG opendrift:733: No elements hit seafloor. 14:26:26 DEBUG opendrift:1695: No elements to deactivate 14:26:26 DEBUG opendrift:2129: Calling OceanDrift.update() 14:26:26 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.280577 m/s - 0.284282 m/s) 14:26:26 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:26:26 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:26:26 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:26:26 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:26:26 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:26:26 DEBUG opendrift:733: No elements hit seafloor. 14:26:26 DEBUG opendrift:2055: ====================================================================== 14:26:26 INFO opendrift:2056: 2025-03-10 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated) 14:26:26 DEBUG opendrift:2062: 0 elements scheduled. 14:26:26 DEBUG opendrift:2064: ====================================================================== 14:26:26 DEBUG opendrift:2075: 60.026728274167645 <- latitude -> 60.02964847584771 14:26:26 DEBUG opendrift:2080: 4.525237089959365 <- longitude -> 4.551158025097021 14:26:26 DEBUG opendrift:2083: z = 0.0 14:26:26 DEBUG opendrift:2086: --------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:26:26 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:26:26 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:26:26 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 23:00:00 (before) 2025-03-11 00:00:00 (after) 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:26:44 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-10 23:00:00) 14:26:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 23:00:00) in space (linearNDFast) 14:26:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:26:44 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:26:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47477382145803 and -65.44885287357812 degrees. 14:26:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47477382145803 and -65.44885287357812 degrees. 14:26:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:26:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:26:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:26:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:26:44 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:26:44 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:26:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:26:44 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:26:44 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:26:44 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101086 (min) -0.0873449 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.06707 (min) 0.0783522 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.511393 (min) -0.507397 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.62843 (min) -1.60953 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.9639 (min) -12.8224 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.98628e-05 (min) -4.97272e-05 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.513 (min) 299.85 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:26:44 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:26:44 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.109339, mean: 4.150993, max: 4.198099 14:26:44 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:26:44 DEBUG opendrift.models.physics_methods:905: min: 11.043724, mean: 11.099536, max: 11.162357 14:26:44 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.043724, mean: 11.099536, max: 11.162357 14:26:44 DEBUG opendrift:643: No elements hit coastline. 14:26:44 DEBUG opendrift:733: No elements hit seafloor. 14:26:44 DEBUG opendrift:1695: No elements to deactivate 14:26:44 DEBUG opendrift:2129: Calling OceanDrift.update() 14:26:44 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.258493 m/s - 0.261270 m/s) 14:26:44 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:26:44 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:26:44 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:26:44 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:26:44 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:26:44 DEBUG opendrift:733: No elements hit seafloor. 14:26:44 DEBUG opendrift:2055: ====================================================================== 14:26:44 INFO opendrift:2056: 2025-03-11 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated) 14:26:44 DEBUG opendrift:2062: 0 elements scheduled. 14:26:44 DEBUG opendrift:2064: ====================================================================== 14:26:44 DEBUG opendrift:2075: 60.020850272119816 <- latitude -> 60.02352974894076 14:26:44 DEBUG opendrift:2080: 4.51663142031166 <- longitude -> 4.543422321928393 14:26:44 DEBUG opendrift:2083: z = 0.0 14:26:44 DEBUG opendrift:2086: --------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:26:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:26:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:26:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:26:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:26:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 00:00:00 (before) 2025-03-11 01:00:00 (after) 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:27:04 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 00:00:00) 14:27:04 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 00:00:00) in space (linearNDFast) 14:27:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:27:04 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:27:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48337949501813 and -65.45658858904177 degrees. 14:27:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48337949501813 and -65.45658858904177 degrees. 14:27:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:27:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:27:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:27:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:27:04 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:27:04 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:27:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:04 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:27:04 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:27:04 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101215 (min) -0.0899418 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.10757 (min) 0.114841 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.661141 (min) -0.65691 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.45837 (min) -1.38302 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.441 (min) -12.1995 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.52255e-07 (min) -3.74305e-07 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.317 (min) 299.711 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:27:04 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:27:04 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.713182, mean: 3.778008, max: 3.854609 14:27:04 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:27:04 DEBUG opendrift.models.physics_methods:905: min: 10.497906, mean: 10.589092, max: 10.695960 14:27:04 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.497906, mean: 10.589092, max: 10.695960 14:27:04 DEBUG opendrift:643: No elements hit coastline. 14:27:04 DEBUG opendrift:733: No elements hit seafloor. 14:27:04 DEBUG opendrift:1695: No elements to deactivate 14:27:04 DEBUG opendrift:2129: Calling OceanDrift.update() 14:27:04 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245717 m/s - 0.250353 m/s) 14:27:04 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:27:04 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:27:04 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:27:04 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:27:04 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:27:04 DEBUG opendrift:733: No elements hit seafloor. 14:27:04 DEBUG opendrift:2055: ====================================================================== 14:27:04 INFO opendrift:2056: 2025-03-11 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated) 14:27:04 DEBUG opendrift:2062: 0 elements scheduled. 14:27:04 DEBUG opendrift:2064: ====================================================================== 14:27:04 DEBUG opendrift:2075: 60.01637103493787 <- latitude -> 60.01912537833725 14:27:04 DEBUG opendrift:2080: 4.508340902471234 <- longitude -> 4.535737347870873 14:27:04 DEBUG opendrift:2083: z = 0.0 14:27:04 DEBUG opendrift:2086: --------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:27:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:27:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:27:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 01:00:00 (before) 2025-03-11 02:00:00 (after) 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:27:24 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-11 01:00:00) 14:27:24 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 01:00:00) in space (linearNDFast) 14:27:24 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:27:24 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:27:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49167001545429 and -65.4642735632172 degrees. 14:27:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49167001545429 and -65.4642735632172 degrees. 14:27:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:27:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:27:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:27:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:27:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:27:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:27:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:24 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:27:24 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:27:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101924 (min) -0.0945767 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.136977 (min) 0.146227 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.730326 (min) -0.725447 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.07694 (min) -1.05386 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.9991 (min) -12.8245 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.99975e-06 (min) -5.70891e-06 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.104 (min) 299.563 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:27:24 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:27:24 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.074331, mean: 4.129450, max: 4.184182 14:27:24 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:27:24 DEBUG opendrift.models.physics_methods:905: min: 10.996583, mean: 11.070685, max: 11.143839 14:27:24 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.996583, mean: 11.070685, max: 11.143839 14:27:24 DEBUG opendrift:643: No elements hit coastline. 14:27:24 DEBUG opendrift:733: No elements hit seafloor. 14:27:24 DEBUG opendrift:1695: No elements to deactivate 14:27:24 DEBUG opendrift:2129: Calling OceanDrift.update() 14:27:24 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.257389 m/s - 0.260836 m/s) 14:27:24 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:27:24 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:27:24 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:27:24 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:27:24 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:27:24 DEBUG opendrift:733: No elements hit seafloor. 14:27:24 DEBUG opendrift:2055: ====================================================================== 14:27:24 INFO opendrift:2056: 2025-03-11 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated) 14:27:24 DEBUG opendrift:2062: 0 elements scheduled. 14:27:24 DEBUG opendrift:2064: ====================================================================== 14:27:24 DEBUG opendrift:2075: 60.01255516248459 <- latitude -> 60.01540359119339 14:27:24 DEBUG opendrift:2080: 4.500648807286067 <- longitude -> 4.528243395422648 14:27:24 DEBUG opendrift:2083: z = 0.0 14:27:24 DEBUG opendrift:2086: --------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:27:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:27:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:27:24 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 02:00:00 (before) 2025-03-11 03:00:00 (after) 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:27:44 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-11 02:00:00) 14:27:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 02:00:00) in space (linearNDFast) 14:27:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:27:44 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:27:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49936211376335 and -65.4717675241429 degrees. 14:27:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49936211376335 and -65.4717675241429 degrees. 14:27:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:27:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:27:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:27:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:27:44 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:27:44 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:27:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:44 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:27:44 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:27:44 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0910313 (min) -0.0839876 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.191886 (min) 0.200983 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.748264 (min) -0.743383 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.2685 (min) -1.26149 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.3772 (min) -12.1929 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.09433e-07 (min) 6.52081e-06 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.887 (min) 299.397 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:27:44 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:27:44 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.696629, mean: 3.752616, max: 3.808126 14:27:44 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:27:44 DEBUG opendrift.models.physics_methods:905: min: 10.474481, mean: 10.553468, max: 10.631273 14:27:44 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.474481, mean: 10.553468, max: 10.631273 14:27:44 DEBUG opendrift:643: No elements hit coastline. 14:27:44 DEBUG opendrift:733: No elements hit seafloor. 14:27:44 DEBUG opendrift:1695: No elements to deactivate 14:27:44 DEBUG opendrift:2129: Calling OceanDrift.update() 14:27:44 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245169 m/s - 0.248839 m/s) 14:27:44 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:27:44 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:27:44 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:27:44 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:27:44 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:27:44 DEBUG opendrift:733: No elements hit seafloor. 14:27:44 DEBUG opendrift:2055: ====================================================================== 14:27:44 INFO opendrift:2056: 2025-03-11 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated) 14:27:44 DEBUG opendrift:2062: 0 elements scheduled. 14:27:44 DEBUG opendrift:2064: ====================================================================== 14:27:44 DEBUG opendrift:2075: 60.010837676519955 <- latitude -> 60.01389054076927 14:27:44 DEBUG opendrift:2080: 4.493591489090615 <- longitude -> 4.520833783218672 14:27:44 DEBUG opendrift:2083: z = 0.0 14:27:44 DEBUG opendrift:2086: --------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:27:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:27:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:27:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 03:00:00 (before) 2025-03-11 04:00:00 (after) 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:27:59 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 03:00:00) 14:27:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 03:00:00) in space (linearNDFast) 14:27:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:27:59 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:27:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50641943604457 and -65.47917713590604 degrees. 14:27:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50641943604457 and -65.47917713590604 degrees. 14:27:59 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:59 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:27:59 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:27:59 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:59 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:27:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:27:59 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:27:59 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:27:59 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:27:59 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:27:59 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:27:59 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0788459 (min) -0.0737719 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.230338 (min) 0.239168 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.676062 (min) -0.670522 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.330092 (min) -0.310551 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.5296 (min) -12.3816 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.72322e-05 (min) 2.083e-05 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.715 (min) 299.249 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:27:59 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:27:59 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.773956, mean: 3.820544, max: 3.864335 14:27:59 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:27:59 DEBUG opendrift.models.physics_methods:905: min: 10.583468, mean: 10.648568, max: 10.709444 14:27:59 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.583468, mean: 10.648568, max: 10.709444 14:27:59 DEBUG opendrift:643: No elements hit coastline. 14:27:59 DEBUG opendrift:733: No elements hit seafloor. 14:27:59 DEBUG opendrift:1695: No elements to deactivate 14:27:59 DEBUG opendrift:2129: Calling OceanDrift.update() 14:27:59 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247720 m/s - 0.250669 m/s) 14:27:59 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:27:59 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:27:59 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:27:59 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:27:59 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:27:59 DEBUG opendrift:733: No elements hit seafloor. 14:27:59 DEBUG opendrift:2055: ====================================================================== 14:27:59 INFO opendrift:2056: 2025-03-11 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated) 14:27:59 DEBUG opendrift:2062: 0 elements scheduled. 14:27:59 DEBUG opendrift:2064: ====================================================================== 14:27:59 DEBUG opendrift:2075: 60.01040216489116 <- latitude -> 60.01337766934297 14:27:59 DEBUG opendrift:2080: 4.48841579271645 <- longitude -> 4.515353220374952 14:27:59 DEBUG opendrift:2083: z = 0.0 14:27:59 DEBUG opendrift:2086: --------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:27:59 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:27:59 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:27:59 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:27:59 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:27:59 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 04:00:00 (before) 2025-03-11 05:00:00 (after) 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:28:14 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-11 04:00:00) 14:28:14 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 04:00:00) in space (linearNDFast) 14:28:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:28:14 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:28:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51159511938545 and -65.48465770273981 degrees. 14:28:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51159511938545 and -65.48465770273981 degrees. 14:28:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:14 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:28:14 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:28:14 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:28:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:28:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:28:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:28:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:14 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:28:14 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:28:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0851399 (min) -0.0758623 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243674 (min) 0.256785 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.563794 (min) -0.557209 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.301171 (min) 0.308868 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.0502 (min) -12.0451 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.00262e-05 (min) 3.20876e-05 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.613 (min) 299.143 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:28:14 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:28:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.571356, mean: 3.572490, max: 3.574405 14:28:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:28:14 DEBUG opendrift.models.physics_methods:905: min: 10.295469, mean: 10.297104, max: 10.299863 14:28:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.295469, mean: 10.297104, max: 10.299863 14:28:14 DEBUG opendrift:643: No elements hit coastline. 14:28:14 DEBUG opendrift:733: No elements hit seafloor. 14:28:14 DEBUG opendrift:1695: No elements to deactivate 14:28:14 DEBUG opendrift:2129: Calling OceanDrift.update() 14:28:14 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.240979 m/s - 0.241082 m/s) 14:28:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:28:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:28:14 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:28:14 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:28:14 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:28:14 DEBUG opendrift:733: No elements hit seafloor. 14:28:14 DEBUG opendrift:2055: ====================================================================== 14:28:14 INFO opendrift:2056: 2025-03-11 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated) 14:28:14 DEBUG opendrift:2062: 0 elements scheduled. 14:28:14 DEBUG opendrift:2064: ====================================================================== 14:28:14 DEBUG opendrift:2075: 60.01080470265599 <- latitude -> 60.01369338185704 14:28:14 DEBUG opendrift:2080: 4.483823982561296 <- longitude -> 4.51024741723721 14:28:14 DEBUG opendrift:2083: z = 0.0 14:28:14 DEBUG opendrift:2086: --------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:28:14 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:28:14 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:28:14 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 05:00:00 (before) 2025-03-11 06:00:00 (after) 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:28:28 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-11 05:00:00) 14:28:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 05:00:00) in space (linearNDFast) 14:28:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:28:28 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:28:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51618694857021 and -65.48976350385836 degrees. 14:28:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51618694857021 and -65.48976350385836 degrees. 14:28:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:28:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:28:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:28:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:28:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:28:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:28:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:28 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:28:28 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:28:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0994609 (min) -0.0789295 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.232488 (min) 0.240168 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.439566 (min) -0.433085 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.883123 (min) 0.894367 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.3374 (min) -11.3238 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.34221e-05 (min) 4.41852e-05 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.544 (min) 299.06 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:28:28 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:28:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.174111, mean: 3.178039, max: 3.181423 14:28:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:28:28 DEBUG opendrift.models.physics_methods:905: min: 9.706008, mean: 9.712011, max: 9.717181 14:28:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.706008, mean: 9.712011, max: 9.717181 14:28:28 DEBUG opendrift:643: No elements hit coastline. 14:28:28 DEBUG opendrift:733: No elements hit seafloor. 14:28:28 DEBUG opendrift:1695: No elements to deactivate 14:28:28 DEBUG opendrift:2129: Calling OceanDrift.update() 14:28:28 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.227182 m/s - 0.227443 m/s) 14:28:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:28:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:28:28 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:28:28 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:28:28 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:28:28 DEBUG opendrift:733: No elements hit seafloor. 14:28:28 DEBUG opendrift:2055: ====================================================================== 14:28:28 INFO opendrift:2056: 2025-03-11 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated) 14:28:28 DEBUG opendrift:2062: 0 elements scheduled. 14:28:28 DEBUG opendrift:2064: ====================================================================== 14:28:28 DEBUG opendrift:2075: 60.01112513311974 <- latitude -> 60.01408983393541 14:28:28 DEBUG opendrift:2080: 4.4798687909819055 <- longitude -> 4.504980617512156 14:28:28 DEBUG opendrift:2083: z = 0.0 14:28:28 DEBUG opendrift:2086: --------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:28:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:28:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:28:28 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 06:00:00 (before) 2025-03-11 07:00:00 (after) 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:28:42 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 06:00:00) 14:28:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 06:00:00) in space (linearNDFast) 14:28:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:28:42 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:28:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52014214129024 and -65.49503030459702 degrees. 14:28:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52014214129024 and -65.49503030459702 degrees. 14:28:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:28:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:28:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:28:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:28:42 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:28:42 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:28:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:42 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:28:42 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:28:42 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.120979 (min) -0.0876048 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20988 (min) 0.223075 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.280716 (min) -0.275631 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.0559961 (min) 0.116564 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: y_wind: -8.66864 (min) -8.65395 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.64204e-05 (min) 4.69868e-05 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.487 (min) 298.972 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:28:42 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:28:42 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.842634, mean: 1.845674, max: 1.848659 14:28:42 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:28:42 DEBUG opendrift.models.physics_methods:905: min: 7.395187, mean: 7.401284, max: 7.407266 14:28:42 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 7.395187, mean: 7.401284, max: 7.407266 14:28:42 DEBUG opendrift:643: No elements hit coastline. 14:28:42 DEBUG opendrift:733: No elements hit seafloor. 14:28:42 DEBUG opendrift:1695: No elements to deactivate 14:28:42 DEBUG opendrift:2129: Calling OceanDrift.update() 14:28:42 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173094 m/s - 0.173377 m/s) 14:28:42 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:28:42 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:28:42 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:28:42 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:28:42 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:28:42 DEBUG opendrift:733: No elements hit seafloor. 14:28:42 DEBUG opendrift:2055: ====================================================================== 14:28:42 INFO opendrift:2056: 2025-03-11 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated) 14:28:42 DEBUG opendrift:2062: 0 elements scheduled. 14:28:42 DEBUG opendrift:2064: ====================================================================== 14:28:42 DEBUG opendrift:2075: 60.01231195130198 <- latitude -> 60.015537183282945 14:28:42 DEBUG opendrift:2080: 4.474364236274492 <- longitude -> 4.497243040235428 14:28:42 DEBUG opendrift:2083: z = 0.0 14:28:42 DEBUG opendrift:2086: --------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:28:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:28:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:28:42 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 07:00:00 (before) 2025-03-11 08:00:00 (after) 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:28:57 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-03-11 07:00:00) 14:28:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 07:00:00) in space (linearNDFast) 14:28:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:28:57 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:28:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52564668710795 and -65.50276787576828 degrees. 14:28:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52564668710795 and -65.50276787576828 degrees. 14:28:57 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:57 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:28:57 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:28:57 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:57 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:28:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:28:57 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:28:57 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:28:57 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:28:57 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:28:57 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:28:57 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.118442 (min) -0.0797114 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.173691 (min) 0.203016 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.113509 (min) -0.110264 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.649004 (min) 0.683545 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: y_wind: -6.97729 (min) -6.89996 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.87251e-05 (min) 3.90101e-05 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.425 (min) 298.86 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:28:57 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:28:57 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.181554, mean: 1.195783, max: 1.209087 14:28:57 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:28:57 DEBUG opendrift.models.physics_methods:905: min: 5.921835, mean: 5.957373, max: 5.990435 14:28:57 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.921835, mean: 5.957373, max: 5.990435 14:28:57 DEBUG opendrift:643: No elements hit coastline. 14:28:57 DEBUG opendrift:733: No elements hit seafloor. 14:28:57 DEBUG opendrift:1695: No elements to deactivate 14:28:57 DEBUG opendrift:2129: Calling OceanDrift.update() 14:28:57 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.138608 m/s - 0.140214 m/s) 14:28:57 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:28:57 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:28:57 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:28:57 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:28:57 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:28:57 DEBUG opendrift:733: No elements hit seafloor. 14:28:57 DEBUG opendrift:2055: ====================================================================== 14:28:57 INFO opendrift:2056: 2025-03-11 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated) 14:28:57 DEBUG opendrift:2062: 0 elements scheduled. 14:28:57 DEBUG opendrift:2064: ====================================================================== 14:28:57 DEBUG opendrift:2075: 60.01346094957319 <- latitude -> 60.017435500449125 14:28:57 DEBUG opendrift:2080: 4.470056513532043 <- longitude -> 4.490498825793235 14:28:57 DEBUG opendrift:2083: z = 0.0 14:28:57 DEBUG opendrift:2086: --------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:28:57 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:28:57 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:28:57 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:28:57 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:28:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 08:00:00 (before) 2025-03-11 09:00:00 (after) 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:29:12 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 08:00:00) 14:29:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 08:00:00) in space (linearNDFast) 14:29:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:29:12 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:29:12 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52995440627494 and -65.50951207933608 degrees. 14:29:12 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52995440627494 and -65.50951207933608 degrees. 14:29:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:12 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:29:12 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:29:12 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:29:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:29:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:29:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:29:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:12 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:29:12 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:29:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0855996 (min) -0.0600378 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.145299 (min) 0.178305 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0274963 (min) -0.0254219 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.77737 (min) 0.78797 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.82094 (min) -4.74159 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.07338e-06 (min) 2.3192e-06 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.386 (min) 298.768 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:29:12 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:29:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.568349, mean: 0.577507, max: 0.586606 14:29:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:29:12 DEBUG opendrift.models.physics_methods:905: min: 4.107116, mean: 4.140060, max: 4.172563 14:29:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.107116, mean: 4.140060, max: 4.172563 14:29:12 DEBUG opendrift:643: No elements hit coastline. 14:29:12 DEBUG opendrift:733: No elements hit seafloor. 14:29:12 DEBUG opendrift:1695: No elements to deactivate 14:29:12 DEBUG opendrift:2129: Calling OceanDrift.update() 14:29:12 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096132 m/s - 0.097664 m/s) 14:29:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:29:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:29:12 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:29:12 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:29:12 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:29:12 DEBUG opendrift:733: No elements hit seafloor. 14:29:12 DEBUG opendrift:2055: ====================================================================== 14:29:12 INFO opendrift:2056: 2025-03-11 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated) 14:29:12 DEBUG opendrift:2062: 0 elements scheduled. 14:29:12 DEBUG opendrift:2064: ====================================================================== 14:29:12 DEBUG opendrift:2075: 60.01510354997198 <- latitude -> 60.0200655356725 14:29:12 DEBUG opendrift:2080: 4.4671981646008865 <- longitude -> 4.485993400118188 14:29:12 DEBUG opendrift:2083: z = 0.0 14:29:12 DEBUG opendrift:2086: --------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:29:12 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:29:12 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:29:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 09:00:00 (before) 2025-03-11 10:00:00 (after) 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:29:27 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 09:00:00) 14:29:27 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 09:00:00) in space (linearNDFast) 14:29:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:29:27 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:29:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53281275367544 and -65.51401751872024 degrees. 14:29:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53281275367544 and -65.51401751872024 degrees. 14:29:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:29:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:29:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:29:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:29:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:29:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:29:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:27 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:29:27 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:29:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0409442 (min) -0.0343753 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.131735 (min) 0.15598 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0655573 (min) -0.0643214 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.75968 (min) 1.77534 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: -3.46244 (min) -3.38804 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.59822e-05 (min) -3.59045e-05 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.371 (min) 298.717 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:29:27 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:29:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.359482, mean: 0.364510, max: 0.372146 14:29:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:29:27 DEBUG opendrift.models.physics_methods:905: min: 3.266393, mean: 3.289139, max: 3.323426 14:29:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.266393, mean: 3.289139, max: 3.323426 14:29:27 DEBUG opendrift:643: No elements hit coastline. 14:29:27 DEBUG opendrift:733: No elements hit seafloor. 14:29:27 DEBUG opendrift:1695: No elements to deactivate 14:29:27 DEBUG opendrift:2129: Calling OceanDrift.update() 14:29:27 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076454 m/s - 0.077789 m/s) 14:29:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:29:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:29:27 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:29:27 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:29:27 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:29:27 DEBUG opendrift:733: No elements hit seafloor. 14:29:27 DEBUG opendrift:2055: ====================================================================== 14:29:27 INFO opendrift:2056: 2025-03-11 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated) 14:29:27 DEBUG opendrift:2062: 0 elements scheduled. 14:29:27 DEBUG opendrift:2064: ====================================================================== 14:29:27 DEBUG opendrift:2075: 60.017169390071444 <- latitude -> 60.02286628305967 14:29:27 DEBUG opendrift:2080: 4.4672115093801175 <- longitude -> 4.485643012612592 14:29:27 DEBUG opendrift:2083: z = 0.0 14:29:27 DEBUG opendrift:2086: --------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:29:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:29:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:29:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 10:00:00 (before) 2025-03-11 11:00:00 (after) 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:29:42 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 10:00:00) 14:29:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 10:00:00) in space (linearNDFast) 14:29:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:29:42 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:29:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5327994069618 and -65.51436790452333 degrees. 14:29:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5327994069618 and -65.51436790452333 degrees. 14:29:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:29:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:29:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:29:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:29:42 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:29:42 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:29:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:42 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:29:42 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:29:42 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.018758 (min) -0.011962 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.134173 (min) 0.156178 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.220868 (min) -0.21993 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.68844 (min) -0.42767 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.35053 (min) 1.40111 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.11611e-05 (min) -6.10363e-05 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.393 (min) 298.739 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:29:42 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:29:42 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.052783, mean: 0.054598, max: 0.056723 14:29:42 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:29:42 DEBUG opendrift.models.physics_methods:905: min: 1.251634, mean: 1.272943, max: 1.297505 14:29:42 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.251634, mean: 1.272943, max: 1.297505 14:29:42 DEBUG opendrift:643: No elements hit coastline. 14:29:42 DEBUG opendrift:733: No elements hit seafloor. 14:29:42 DEBUG opendrift:1695: No elements to deactivate 14:29:42 DEBUG opendrift:2129: Calling OceanDrift.update() 14:29:42 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.029296 m/s - 0.030370 m/s) 14:29:42 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:29:42 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:29:42 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:29:42 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:29:42 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:29:42 DEBUG opendrift:733: No elements hit seafloor. 14:29:42 DEBUG opendrift:2055: ====================================================================== 14:29:42 INFO opendrift:2056: 2025-03-11 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated) 14:29:42 DEBUG opendrift:2062: 0 elements scheduled. 14:29:42 DEBUG opendrift:2064: ====================================================================== 14:29:42 DEBUG opendrift:2075: 60.022406889319306 <- latitude -> 60.02878476312618 14:29:42 DEBUG opendrift:2080: 4.46585732041343 <- longitude -> 4.4835427655562725 14:29:42 DEBUG opendrift:2083: z = 0.0 14:29:42 DEBUG opendrift:2086: --------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:29:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:29:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:29:42 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 11:00:00 (before) 2025-03-11 12:00:00 (after) 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:29:58 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 11:00:00) 14:29:58 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 11:00:00) in space (linearNDFast) 14:29:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:29:58 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:29:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53415359872326 and -65.51646814837268 degrees. 14:29:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53415359872326 and -65.51646814837268 degrees. 14:29:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:29:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:29:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:29:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:29:58 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:29:58 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:29:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:29:58 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:29:58 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:29:58 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00751177 (min) 0.0194049 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.152243 (min) 0.173492 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.454283 (min) -0.453389 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.819316 (min) 0.845104 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.85953 (min) 1.98379 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.63115e-05 (min) -6.62499e-05 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.41 (min) 298.723 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:29:58 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:29:58 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.101626, mean: 0.106873, max: 0.114356 14:29:58 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:29:58 DEBUG opendrift.models.physics_methods:905: min: 1.736730, mean: 1.780900, max: 1.842296 14:29:58 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.736730, mean: 1.780900, max: 1.842296 14:29:58 DEBUG opendrift:643: No elements hit coastline. 14:29:58 DEBUG opendrift:733: No elements hit seafloor. 14:29:58 DEBUG opendrift:1695: No elements to deactivate 14:29:58 DEBUG opendrift:2129: Calling OceanDrift.update() 14:29:58 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.040650 m/s - 0.043121 m/s) 14:29:58 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:29:58 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:29:58 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:29:58 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:29:58 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:29:58 DEBUG opendrift:733: No elements hit seafloor. 14:29:58 DEBUG opendrift:2055: ====================================================================== 14:29:58 INFO opendrift:2056: 2025-03-11 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated) 14:29:58 DEBUG opendrift:2062: 0 elements scheduled. 14:29:58 DEBUG opendrift:2064: ====================================================================== 14:29:58 DEBUG opendrift:2075: 60.028603620050305 <- latitude -> 60.03559495518008 14:29:58 DEBUG opendrift:2080: 4.468200953947662 <- longitude -> 4.4850877673738285 14:29:58 DEBUG opendrift:2083: z = 0.0 14:29:58 DEBUG opendrift:2086: --------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:29:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:29:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:29:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:29:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:29:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 12:00:00 (before) 2025-03-11 13:00:00 (after) 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:30:13 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 12:00:00) 14:30:13 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 12:00:00) in space (linearNDFast) 14:30:13 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:30:13 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:30:13 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53180996212319 and -65.51492314177196 degrees. 14:30:13 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53180996212319 and -65.51492314177196 degrees. 14:30:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:13 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:30:13 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:30:13 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:30:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:30:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:30:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:30:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:13 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:30:13 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:30:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0343484 (min) 0.0546482 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.180531 (min) 0.201711 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.659827 (min) -0.65868 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 3.17348 (min) 3.33714 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 2.54852 (min) 2.59116 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.83286e-05 (min) -4.80585e-05 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.443 (min) 298.741 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:30:13 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:30:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.408666, mean: 0.428954, max: 0.435941 14:30:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:30:13 DEBUG opendrift.models.physics_methods:905: min: 3.482684, mean: 3.568024, max: 3.597026 14:30:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.482684, mean: 3.568024, max: 3.597026 14:30:13 DEBUG opendrift:643: No elements hit coastline. 14:30:13 DEBUG opendrift:733: No elements hit seafloor. 14:30:13 DEBUG opendrift:1695: No elements to deactivate 14:30:13 DEBUG opendrift:2129: Calling OceanDrift.update() 14:30:13 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081517 m/s - 0.084193 m/s) 14:30:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:30:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:30:13 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:30:13 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:30:13 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:30:13 DEBUG opendrift:733: No elements hit seafloor. 14:30:13 DEBUG opendrift:2055: ====================================================================== 14:30:13 INFO opendrift:2056: 2025-03-11 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated) 14:30:13 DEBUG opendrift:2062: 0 elements scheduled. 14:30:13 DEBUG opendrift:2064: ====================================================================== 14:30:13 DEBUG opendrift:2075: 60.036094509502064 <- latitude -> 60.04376627547491 14:30:13 DEBUG opendrift:2080: 4.47603352875099 <- longitude -> 4.491414681089063 14:30:13 DEBUG opendrift:2083: z = 0.0 14:30:13 DEBUG opendrift:2086: --------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:30:13 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:30:13 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:30:13 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 13:00:00 (before) 2025-03-11 14:00:00 (after) 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:30:29 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 13:00:00) 14:30:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 13:00:00) in space (linearNDFast) 14:30:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:30:29 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:30:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52397738901415 and -65.50859623193311 degrees. 14:30:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52397738901415 and -65.50859623193311 degrees. 14:30:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:30:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:30:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:30:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:30:29 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:30:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:30:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:29 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:30:29 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:30:29 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0443282 (min) 0.065183 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.211448 (min) 0.237483 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.778722 (min) -0.777489 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.599882 (min) -0.511633 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.11919 (min) 4.14216 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.58808e-05 (min) -1.56904e-05 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.538 (min) 298.826 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:30:29 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:30:29 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.423970, mean: 0.427478, max: 0.430852 14:30:29 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:30:29 DEBUG opendrift.models.physics_methods:905: min: 3.547293, mean: 3.561936, max: 3.575970 14:30:29 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.547293, mean: 3.561936, max: 3.575970 14:30:29 DEBUG opendrift:643: No elements hit coastline. 14:30:29 DEBUG opendrift:733: No elements hit seafloor. 14:30:29 DEBUG opendrift:1695: No elements to deactivate 14:30:29 DEBUG opendrift:2129: Calling OceanDrift.update() 14:30:29 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083029 m/s - 0.083700 m/s) 14:30:29 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:30:29 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:30:29 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:30:29 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:30:29 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:30:29 DEBUG opendrift:733: No elements hit seafloor. 14:30:29 DEBUG opendrift:2055: ====================================================================== 14:30:29 INFO opendrift:2056: 2025-03-11 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated) 14:30:29 DEBUG opendrift:2062: 0 elements scheduled. 14:30:29 DEBUG opendrift:2064: ====================================================================== 14:30:29 DEBUG opendrift:2075: 60.04558880939457 <- latitude -> 60.054116663197235 14:30:29 DEBUG opendrift:2080: 4.479583303919733 <- longitude -> 4.49350363507934 14:30:29 DEBUG opendrift:2083: z = 0.0 14:30:29 DEBUG opendrift:2086: --------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:30:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:30:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:30:29 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 14:00:00 (before) 2025-03-11 15:00:00 (after) 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:30:44 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-03-11 14:00:00) 14:30:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 14:00:00) in space (linearNDFast) 14:30:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:30:44 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:30:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52042760684398 and -65.5065072761357 degrees. 14:30:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52042760684398 and -65.5065072761357 degrees. 14:30:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:30:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:30:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:30:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:30:44 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:30:44 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:30:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:30:44 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:30:44 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:30:44 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0529118 (min) 0.0644348 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.263977 (min) 0.29004 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.811101 (min) -0.808626 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.08213 (min) 1.70447 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.56613 (min) 4.89504 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.98224e-06 (min) 4.17334e-06 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.504 (min) 298.761 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:30:44 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:30:44 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.582004, mean: 0.607208, max: 0.622717 14:30:44 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:30:44 DEBUG opendrift.models.physics_methods:905: min: 4.156162, mean: 4.245159, max: 4.299076 14:30:44 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.156162, mean: 4.245159, max: 4.299076 14:30:44 DEBUG opendrift:643: No elements hit coastline. 14:30:44 DEBUG opendrift:733: No elements hit seafloor. 14:30:44 DEBUG opendrift:1695: No elements to deactivate 14:30:44 DEBUG opendrift:2129: Calling OceanDrift.update() 14:30:44 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.097280 m/s - 0.100625 m/s) 14:30:44 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:30:44 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:30:44 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:30:44 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:30:44 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:30:44 DEBUG opendrift:733: No elements hit seafloor. 14:30:44 DEBUG opendrift:2055: ====================================================================== 14:30:44 INFO opendrift:2056: 2025-03-11 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated) 14:30:44 DEBUG opendrift:2062: 0 elements scheduled. 14:30:44 DEBUG opendrift:2064: ====================================================================== 14:30:44 DEBUG opendrift:2075: 60.05706923952011 <- latitude -> 60.06659062423307 14:30:44 DEBUG opendrift:2080: 4.485950397239805 <- longitude -> 4.498322776557604 14:30:44 DEBUG opendrift:2083: z = 0.0 14:30:44 DEBUG opendrift:2086: --------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:30:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:30:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:30:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:30:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:30:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 15:00:00 (before) 2025-03-11 16:00:00 (after) 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:31:01 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-03-11 15:00:00) 14:31:01 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 15:00:00) in space (linearNDFast) 14:31:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:31:01 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:31:01 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51406050299401 and -65.50168812554213 degrees. 14:31:01 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51406050299401 and -65.50168812554213 degrees. 14:31:01 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:01 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:31:01 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:31:01 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:01 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:31:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:31:01 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:31:01 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:31:01 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:01 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:31:01 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:31:01 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0108729 (min) 0.0167612 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.329238 (min) 0.353444 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.77805 (min) -0.77575 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.63996 (min) -2.45899 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.16699 (min) 4.5831 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.81807e-05 (min) 1.83987e-05 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.488 (min) 298.734 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:31:01 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:31:01 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.598596, mean: 0.638013, max: 0.665795 14:31:01 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:31:01 DEBUG opendrift.models.physics_methods:905: min: 4.214991, mean: 4.351404, max: 4.445288 14:31:01 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.214991, mean: 4.351404, max: 4.445288 14:31:01 DEBUG opendrift:643: No elements hit coastline. 14:31:01 DEBUG opendrift:733: No elements hit seafloor. 14:31:01 DEBUG opendrift:1695: No elements to deactivate 14:31:01 DEBUG opendrift:2129: Calling OceanDrift.update() 14:31:01 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098657 m/s - 0.104048 m/s) 14:31:01 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:31:01 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:31:01 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:31:01 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:31:01 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:31:01 DEBUG opendrift:733: No elements hit seafloor. 14:31:01 DEBUG opendrift:2055: ====================================================================== 14:31:01 INFO opendrift:2056: 2025-03-11 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated) 14:31:01 DEBUG opendrift:2062: 0 elements scheduled. 14:31:01 DEBUG opendrift:2064: ====================================================================== 14:31:01 DEBUG opendrift:2075: 60.070400453461716 <- latitude -> 60.080833200539935 14:31:01 DEBUG opendrift:2080: 4.483433037794792 <- longitude -> 4.496180235397878 14:31:01 DEBUG opendrift:2083: z = 0.0 14:31:01 DEBUG opendrift:2086: --------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:31:01 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:31:01 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:01 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:01 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:31:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 16:00:00 (before) 2025-03-11 17:00:00 (after) 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:31:17 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-11 16:00:00) 14:31:17 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 16:00:00) in space (linearNDFast) 14:31:17 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:31:17 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:31:17 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51657785269256 and -65.5038306607639 degrees. 14:31:17 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51657785269256 and -65.5038306607639 degrees. 14:31:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:17 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:31:17 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:31:17 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:31:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:31:17 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:31:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:31:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:17 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:31:17 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:31:17 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0161406 (min) -0.0116888 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.392425 (min) 0.420389 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.696544 (min) -0.693818 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.26675 (min) -1.16141 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: y_wind: 2.07286 (min) 2.20398 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.50283e-05 (min) 2.5245e-05 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.174 (min) 298.513 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:31:17 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:31:17 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.140827, mean: 0.192477, max: 0.242476 14:31:17 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:31:17 DEBUG opendrift.models.physics_methods:905: min: 2.044433, mean: 2.387880, max: 2.682650 14:31:17 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.044433, mean: 2.387880, max: 2.682650 14:31:17 DEBUG opendrift:643: No elements hit coastline. 14:31:17 DEBUG opendrift:733: No elements hit seafloor. 14:31:17 DEBUG opendrift:1695: No elements to deactivate 14:31:17 DEBUG opendrift:2129: Calling OceanDrift.update() 14:31:17 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.047853 m/s - 0.062791 m/s) 14:31:17 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:31:17 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:31:17 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:31:17 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:31:17 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:31:17 DEBUG opendrift:733: No elements hit seafloor. 14:31:17 DEBUG opendrift:2055: ====================================================================== 14:31:17 INFO opendrift:2056: 2025-03-11 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated) 14:31:17 DEBUG opendrift:2062: 0 elements scheduled. 14:31:17 DEBUG opendrift:2064: ====================================================================== 14:31:17 DEBUG opendrift:2075: 60.08443231534045 <- latitude -> 60.09543317251469 14:31:17 DEBUG opendrift:2080: 4.481105245516809 <- longitude -> 4.492378861493554 14:31:17 DEBUG opendrift:2083: z = 0.0 14:31:17 DEBUG opendrift:2086: --------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:31:17 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:31:17 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:31:17 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 17:00:00 (before) 2025-03-11 18:00:00 (after) 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:31:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:31:33 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-11 17:00:00) 14:31:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 17:00:00) in space (linearNDFast) 14:31:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:31:33 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:31:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5189056489254 and -65.50763202339573 degrees. 14:31:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5189056489254 and -65.50763202339573 degrees. 14:31:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:31:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:31:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:31:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:31:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:31:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:31:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:33 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:31:33 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:31:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0281898 (min) -0.0245596 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.423259 (min) 0.455558 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.579976 (min) -0.57628 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.84938 (min) 1.90576 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.79124 (min) 1.98825 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.81278e-05 (min) 3.85111e-05 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.855 (min) 298.26 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:31:33 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:31:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.164838, mean: 0.173951, max: 0.186081 14:31:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:31:33 DEBUG opendrift.models.physics_methods:905: min: 2.211866, mean: 2.272050, max: 2.350066 14:31:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.211866, mean: 2.272050, max: 2.350066 14:31:33 DEBUG opendrift:643: No elements hit coastline. 14:31:33 DEBUG opendrift:733: No elements hit seafloor. 14:31:33 DEBUG opendrift:1695: No elements to deactivate 14:31:33 DEBUG opendrift:2129: Calling OceanDrift.update() 14:31:33 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.051772 m/s - 0.055006 m/s) 14:31:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:31:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:31:33 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:31:33 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:31:33 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:31:33 DEBUG opendrift:733: No elements hit seafloor. 14:31:33 DEBUG opendrift:2055: ====================================================================== 14:31:33 INFO opendrift:2056: 2025-03-11 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated) 14:31:33 DEBUG opendrift:2062: 0 elements scheduled. 14:31:33 DEBUG opendrift:2064: ====================================================================== 14:31:33 DEBUG opendrift:2075: 60.099269473301874 <- latitude -> 60.111146609450486 14:31:33 DEBUG opendrift:2080: 4.481851831506292 <- longitude -> 4.493037915082009 14:31:33 DEBUG opendrift:2083: z = 0.0 14:31:33 DEBUG opendrift:2086: --------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:31:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:31:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:31:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 18:00:00 (before) 2025-03-11 19:00:00 (after) 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:31:47 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-03-11 18:00:00) 14:31:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 18:00:00) in space (linearNDFast) 14:31:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:31:47 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:31:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51815905441214 and -65.5069729695003 degrees. 14:31:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51815905441214 and -65.5069729695003 degrees. 14:31:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:31:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:31:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:31:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:31:47 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:31:47 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:31:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:31:47 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:31:47 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:31:47 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0413585 (min) -0.0358813 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.416314 (min) 0.44644 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.415534 (min) -0.410728 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.680067 (min) 0.774808 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.503761 (min) 0.622756 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.95469e-05 (min) 4.97604e-05 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.74 (min) 298.274 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:31:47 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:31:47 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.017620, mean: 0.021510, max: 0.024284 14:31:47 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:31:47 DEBUG opendrift.models.physics_methods:905: min: 0.723160, mean: 0.798755, max: 0.848959 14:31:47 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 0.723160, mean: 0.798755, max: 0.848959 14:31:47 DEBUG opendrift:643: No elements hit coastline. 14:31:47 DEBUG opendrift:733: No elements hit seafloor. 14:31:47 DEBUG opendrift:1695: No elements to deactivate 14:31:47 DEBUG opendrift:2129: Calling OceanDrift.update() 14:31:47 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.016926 m/s - 0.019871 m/s) 14:31:47 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:31:47 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:31:47 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:31:47 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:31:47 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:31:47 DEBUG opendrift:733: No elements hit seafloor. 14:31:47 DEBUG opendrift:2055: ====================================================================== 14:31:47 INFO opendrift:2056: 2025-03-11 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated) 14:31:47 DEBUG opendrift:2062: 0 elements scheduled. 14:31:47 DEBUG opendrift:2064: ====================================================================== 14:31:47 DEBUG opendrift:2075: 60.11304688595682 <- latitude -> 60.125718437547235 14:31:47 DEBUG opendrift:2080: 4.480345855348703 <- longitude -> 4.491373822363789 14:31:47 DEBUG opendrift:2083: z = 0.0 14:31:47 DEBUG opendrift:2086: --------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:31:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:31:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:31:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:31:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:31:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 19:00:00 (before) 2025-03-11 20:00:00 (after) 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:32:02 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-03-11 19:00:00) 14:32:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 19:00:00) in space (linearNDFast) 14:32:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:32:02 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:32:02 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51966503870588 and -65.50863706697578 degrees. 14:32:02 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51966503870588 and -65.50863706697578 degrees. 14:32:02 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:02 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:32:02 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:32:02 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:02 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:32:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:32:02 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:32:02 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:32:02 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:02 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:32:02 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:32:02 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0475615 (min) -0.0378969 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.386234 (min) 0.413107 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.232734 (min) -0.227337 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.15169 (min) -0.982165 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.717688 (min) 1.04068 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.85472e-05 (min) 4.88216e-05 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.624 (min) 298.27 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:32:02 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:32:02 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.044829, mean: 0.047556, max: 0.050808 14:32:02 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:32:02 DEBUG opendrift.models.physics_methods:905: min: 1.153480, mean: 1.187969, max: 1.227986 14:32:02 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.153480, mean: 1.187969, max: 1.227986 14:32:02 DEBUG opendrift:643: No elements hit coastline. 14:32:02 DEBUG opendrift:733: No elements hit seafloor. 14:32:02 DEBUG opendrift:1695: No elements to deactivate 14:32:02 DEBUG opendrift:2129: Calling OceanDrift.update() 14:32:02 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.026999 m/s - 0.028743 m/s) 14:32:02 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:32:02 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:32:02 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:32:02 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:32:02 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:32:02 DEBUG opendrift:733: No elements hit seafloor. 14:32:02 DEBUG opendrift:2055: ====================================================================== 14:32:02 INFO opendrift:2056: 2025-03-11 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated) 14:32:02 DEBUG opendrift:2062: 0 elements scheduled. 14:32:02 DEBUG opendrift:2064: ====================================================================== 14:32:02 DEBUG opendrift:2075: 60.1259905810724 <- latitude -> 60.13958638709114 14:32:02 DEBUG opendrift:2080: 4.47630566522405 <- longitude -> 4.487007333691496 14:32:02 DEBUG opendrift:2083: z = 0.0 14:32:02 DEBUG opendrift:2086: --------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:32:02 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:32:02 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:02 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:02 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:32:02 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 20:00:00 (before) 2025-03-11 21:00:00 (after) 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:32:16 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-03-11 20:00:00) 14:32:16 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 20:00:00) in space (linearNDFast) 14:32:16 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:32:16 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:32:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52370521761173 and -65.51300355061375 degrees. 14:32:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52370521761173 and -65.51300355061375 degrees. 14:32:16 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:16 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:32:16 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:32:16 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:16 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:32:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:32:16 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:32:16 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:32:16 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:16 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:32:16 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:32:16 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0458344 (min) -0.0348566 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.343095 (min) 0.366259 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0997243 (min) -0.0946244 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: x_wind: -3.85008 (min) -3.67646 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.5359 (min) 1.70934 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.27197e-05 (min) 2.28491e-05 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.45 (min) 298.219 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:32:16 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:32:16 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.404379, mean: 0.419024, max: 0.425027 14:32:16 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:32:16 DEBUG opendrift.models.physics_methods:905: min: 3.464365, mean: 3.526525, max: 3.551712 14:32:16 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.464365, mean: 3.526525, max: 3.551712 14:32:16 DEBUG opendrift:643: No elements hit coastline. 14:32:16 DEBUG opendrift:733: No elements hit seafloor. 14:32:16 DEBUG opendrift:1695: No elements to deactivate 14:32:16 DEBUG opendrift:2129: Calling OceanDrift.update() 14:32:16 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081088 m/s - 0.083132 m/s) 14:32:16 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:32:16 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:32:16 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:32:16 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:32:16 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:32:16 DEBUG opendrift:733: No elements hit seafloor. 14:32:16 DEBUG opendrift:2055: ====================================================================== 14:32:16 INFO opendrift:2056: 2025-03-11 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated) 14:32:16 DEBUG opendrift:2062: 0 elements scheduled. 14:32:16 DEBUG opendrift:2064: ====================================================================== 14:32:16 DEBUG opendrift:2075: 60.13818112288824 <- latitude -> 60.15243313960455 14:32:16 DEBUG opendrift:2080: 4.469034586800713 <- longitude -> 4.479158639499789 14:32:16 DEBUG opendrift:2083: z = 0.0 14:32:16 DEBUG opendrift:2086: --------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:32:16 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:32:16 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:16 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:16 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:32:16 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 21:00:00 (before) 2025-03-11 22:00:00 (after) 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:32:32 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-11 21:00:00) 14:32:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 21:00:00) in space (linearNDFast) 14:32:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:32:32 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:32:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53097629289472 and -65.52085222733008 degrees. 14:32:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53097629289472 and -65.52085222733008 degrees. 14:32:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:32:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:32:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:32:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:32:32 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:32:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:32:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:32 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:32:32 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:32:32 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0533989 (min) -0.0444135 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.288964 (min) 0.311236 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0911029 (min) -0.0871176 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: x_wind: -4.91722 (min) -4.47617 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: y_wind: -1.34668 (min) -1.01382 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.70682e-05 (min) -1.68633e-05 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.151 (min) 298.084 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:32:32 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:32:32 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.518173, mean: 0.593772, max: 0.639419 14:32:32 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:32:32 DEBUG opendrift.models.physics_methods:905: min: 3.921634, mean: 4.197421, max: 4.356344 14:32:32 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.921634, mean: 4.197421, max: 4.356344 14:32:32 DEBUG opendrift:643: No elements hit coastline. 14:32:32 DEBUG opendrift:733: No elements hit seafloor. 14:32:32 DEBUG opendrift:1695: No elements to deactivate 14:32:32 DEBUG opendrift:2129: Calling OceanDrift.update() 14:32:32 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091791 m/s - 0.101966 m/s) 14:32:32 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:32:32 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:32:32 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:32:32 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:32:32 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:32:32 DEBUG opendrift:733: No elements hit seafloor. 14:32:32 DEBUG opendrift:2055: ====================================================================== 14:32:32 INFO opendrift:2056: 2025-03-11 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated) 14:32:32 DEBUG opendrift:2062: 0 elements scheduled. 14:32:32 DEBUG opendrift:2064: ====================================================================== 14:32:32 DEBUG opendrift:2075: 60.14686271370904 <- latitude -> 60.16153310385175 14:32:32 DEBUG opendrift:2080: 4.46030983593413 <- longitude -> 4.469405612131994 14:32:32 DEBUG opendrift:2083: z = 0.0 14:32:32 DEBUG opendrift:2086: --------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:32:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:32:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:32:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 22:00:00 (before) 2025-03-11 23:00:00 (after) 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:32:47 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x7) for time before (2025-03-11 22:00:00) 14:32:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 22:00:00) in space (linearNDFast) 14:32:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:32:47 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:32:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5397010359747 and -65.53060525647075 degrees. 14:32:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5397010359747 and -65.53060525647075 degrees. 14:32:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:32:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:32:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:32:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:32:47 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:32:47 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:32:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:32:47 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:32:47 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:32:47 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0700385 (min) -0.0550426 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.231387 (min) 0.260593 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.220224 (min) -0.216923 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: x_wind: -3.87985 (min) -3.63732 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.50133 (min) -4.37109 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.29075e-05 (min) -5.26707e-05 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.755 (min) 297.859 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:32:47 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:32:47 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.823906, mean: 0.834602, max: 0.841910 14:32:47 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:32:47 DEBUG opendrift.models.physics_methods:905: min: 4.945023, mean: 4.977008, max: 4.998761 14:32:47 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.945023, mean: 4.977008, max: 4.998761 14:32:47 DEBUG opendrift:643: No elements hit coastline. 14:32:47 DEBUG opendrift:733: No elements hit seafloor. 14:32:47 DEBUG opendrift:1695: No elements to deactivate 14:32:47 DEBUG opendrift:2129: Calling OceanDrift.update() 14:32:47 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.115745 m/s - 0.117003 m/s) 14:32:47 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:32:47 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:32:47 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:32:47 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:32:47 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:32:47 DEBUG opendrift:733: No elements hit seafloor. 14:32:47 DEBUG opendrift:2055: ====================================================================== 14:32:47 INFO opendrift:2056: 2025-03-11 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated) 14:32:47 DEBUG opendrift:2062: 0 elements scheduled. 14:32:47 DEBUG opendrift:2064: ====================================================================== 14:32:47 DEBUG opendrift:2075: 60.151525638910535 <- latitude -> 60.16699523678632 14:32:47 DEBUG opendrift:2080: 4.451728543325602 <- longitude -> 4.460121364224072 14:32:47 DEBUG opendrift:2083: z = 0.0 14:32:47 DEBUG opendrift:2086: --------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:32:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:32:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:32:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:32:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:32:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 23:00:00 (before) 2025-03-12 00:00:00 (after) 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:33:07 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-11 23:00:00) 14:33:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 23:00:00) in space (linearNDFast) 14:33:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:33:07 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:33:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.54828232599739 and -65.53988951083646 degrees. 14:33:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.54828232599739 and -65.53988951083646 degrees. 14:33:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:33:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:33:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:33:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:33:07 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:33:07 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:33:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:07 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:33:07 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:33:07 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0732648 (min) -0.0531434 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.200362 (min) 0.238465 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.445478 (min) -0.442766 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.90099 (min) -1.85339 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.99285 (min) -2.96831 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.8783e-05 (min) -6.87155e-05 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.281 (min) 297.556 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:33:07 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:33:07 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.301322, mean: 0.305589, max: 0.309245 14:33:07 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:33:07 DEBUG opendrift.models.physics_methods:905: min: 2.990507, mean: 3.011603, max: 3.029570 14:33:07 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.990507, mean: 3.011603, max: 3.029570 14:33:07 DEBUG opendrift:643: No elements hit coastline. 14:33:07 DEBUG opendrift:733: No elements hit seafloor. 14:33:07 DEBUG opendrift:1695: No elements to deactivate 14:33:07 DEBUG opendrift:2129: Calling OceanDrift.update() 14:33:07 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069997 m/s - 0.070911 m/s) 14:33:07 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:33:07 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:33:07 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:33:07 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:33:07 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:33:07 DEBUG opendrift:733: No elements hit seafloor. 14:33:07 DEBUG opendrift:2055: ====================================================================== 14:33:07 INFO opendrift:2056: 2025-03-12 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated) 14:33:07 DEBUG opendrift:2062: 0 elements scheduled. 14:33:07 DEBUG opendrift:2064: ====================================================================== 14:33:07 DEBUG opendrift:2075: 60.15613109549774 <- latitude -> 60.17276744611716 14:33:07 DEBUG opendrift:2080: 4.44587467576985 <- longitude -> 4.4529289691108636 14:33:07 DEBUG opendrift:2083: z = 0.0 14:33:07 DEBUG opendrift:2086: --------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:33:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:33:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:33:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 00:00:00 (before) 2025-03-12 01:00:00 (after) 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:33:28 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-03-12 00:00:00) 14:33:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 00:00:00) in space (linearNDFast) 14:33:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:33:28 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:33:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55413619465688 and -65.54708190155092 degrees. 14:33:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55413619465688 and -65.54708190155092 degrees. 14:33:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:33:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:33:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:33:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:33:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:33:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:33:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:28 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:33:28 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:33:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.063053 (min) -0.0344588 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.202547 (min) 0.242134 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.674592 (min) -0.673365 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.920306 (min) -0.81104 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.61582 (min) 0.683217 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.27153e-07 (min) -1.65125e-07 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.046 (min) 297.443 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:33:28 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:33:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.025975, mean: 0.028319, max: 0.030219 14:33:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:33:28 DEBUG opendrift.models.physics_methods:905: min: 0.878024, mean: 0.916700, max: 0.947044 14:33:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 0.878024, mean: 0.916700, max: 0.947044 14:33:28 DEBUG opendrift:643: No elements hit coastline. 14:33:28 DEBUG opendrift:733: No elements hit seafloor. 14:33:28 DEBUG opendrift:1695: No elements to deactivate 14:33:28 DEBUG opendrift:2129: Calling OceanDrift.update() 14:33:28 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.020551 m/s - 0.022167 m/s) 14:33:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:33:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:33:28 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:33:28 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:33:28 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:33:28 DEBUG opendrift:733: No elements hit seafloor. 14:33:28 DEBUG opendrift:2055: ====================================================================== 14:33:28 INFO opendrift:2056: 2025-03-12 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated) 14:33:28 DEBUG opendrift:2062: 0 elements scheduled. 14:33:28 DEBUG opendrift:2064: ====================================================================== 14:33:28 DEBUG opendrift:2075: 60.1631426967501 <- latitude -> 60.1809898861937 14:33:28 DEBUG opendrift:2080: 4.442454987503516 <- longitude -> 4.447838850844548 14:33:28 DEBUG opendrift:2083: z = 0.0 14:33:28 DEBUG opendrift:2086: --------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:33:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:33:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:33:28 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 01:00:00 (before) 2025-03-12 02:00:00 (after) 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:33:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-12 01:00:00) 14:33:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 01:00:00) in space (linearNDFast) 14:33:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:33:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:33:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55755588425863 and -65.55217201051076 degrees. 14:33:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55755588425863 and -65.55217201051076 degrees. 14:33:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:33:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:33:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:33:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:33:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:33:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:33:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:33:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:33:48 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:33:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0308056 (min) 0.00212295 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.217931 (min) 0.261691 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.841113 (min) -0.840365 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.872642 (min) -0.645456 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.18444 (min) -1.90665 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.01842e-05 (min) -2.99409e-05 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.169 (min) 297.677 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:33:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:33:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.099677, mean: 0.126699, max: 0.136119 14:33:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:33:48 DEBUG opendrift.models.physics_methods:905: min: 1.719998, mean: 1.938743, max: 2.009969 14:33:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.719998, mean: 1.938743, max: 2.009969 14:33:48 DEBUG opendrift:643: No elements hit coastline. 14:33:48 DEBUG opendrift:733: No elements hit seafloor. 14:33:48 DEBUG opendrift:1695: No elements to deactivate 14:33:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:33:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.040259 m/s - 0.047046 m/s) 14:33:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:33:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:33:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:33:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:33:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:33:48 DEBUG opendrift:733: No elements hit seafloor. 14:33:48 DEBUG opendrift:2055: ====================================================================== 14:33:48 INFO opendrift:2056: 2025-03-12 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated) 14:33:48 DEBUG opendrift:2062: 0 elements scheduled. 14:33:48 DEBUG opendrift:2064: ====================================================================== 14:33:48 DEBUG opendrift:2075: 60.168955405159096 <- latitude -> 60.18800420105855 14:33:48 DEBUG opendrift:2080: 4.4415613850070175 <- longitude -> 4.444875561675657 14:33:48 DEBUG opendrift:2083: z = 0.0 14:33:48 DEBUG opendrift:2086: --------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:33:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:33:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:33:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:33:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:33:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 02:00:00 (before) 2025-03-12 03:00:00 (after) 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:34:07 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-12 02:00:00) 14:34:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 02:00:00) in space (linearNDFast) 14:34:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:34:07 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:34:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5584494836981 and -65.55513530136439 degrees. 14:34:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5584494836981 and -65.55513530136439 degrees. 14:34:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:34:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:34:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:34:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:34:07 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:34:07 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:34:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:07 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:34:07 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:34:07 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.000851687 (min) 0.0181117 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243188 (min) 0.286456 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.924892 (min) -0.92412 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.628575 (min) 0.659744 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.69357 (min) -2.68294 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.75431e-06 (min) 9.03994e-06 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.487 (min) 298.023 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:34:07 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:34:07 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.187458, mean: 0.187697, max: 0.188201 14:34:07 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:34:07 DEBUG opendrift.models.physics_methods:905: min: 2.358747, mean: 2.360253, max: 2.363417 14:34:07 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.358747, mean: 2.360253, max: 2.363417 14:34:07 DEBUG opendrift:643: No elements hit coastline. 14:34:07 DEBUG opendrift:733: No elements hit seafloor. 14:34:07 DEBUG opendrift:1695: No elements to deactivate 14:34:07 DEBUG opendrift:2129: Calling OceanDrift.update() 14:34:07 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.055210 m/s - 0.055319 m/s) 14:34:07 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:34:07 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:34:07 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:34:07 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:34:07 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:34:07 DEBUG opendrift:733: No elements hit seafloor. 14:34:07 DEBUG opendrift:2055: ====================================================================== 14:34:07 INFO opendrift:2056: 2025-03-12 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated) 14:34:07 DEBUG opendrift:2062: 0 elements scheduled. 14:34:07 DEBUG opendrift:2064: ====================================================================== 14:34:07 DEBUG opendrift:2075: 60.17512735623333 <- latitude -> 60.19550659049653 14:34:07 DEBUG opendrift:2080: 4.4431010589507585 <- longitude -> 4.445918647651449 14:34:07 DEBUG opendrift:2083: z = 0.0 14:34:07 DEBUG opendrift:2086: --------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:34:07 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:34:07 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:07 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:07 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:34:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 03:00:00 (before) 2025-03-12 04:00:00 (after) 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:34:27 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-03-12 03:00:00) 14:34:27 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 03:00:00) in space (linearNDFast) 14:34:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:34:27 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:34:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55690980342587 and -65.55409221820001 degrees. 14:34:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55690980342587 and -65.55409221820001 degrees. 14:34:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:34:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:34:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:34:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:34:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:34:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:34:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:27 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:34:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:34:27 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:34:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:34:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00204075 (min) 0.011655 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.259334 (min) 0.300769 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.899956 (min) -0.899084 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.5647 (min) -0.125816 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.30646 (min) -4.25872 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.26114e-06 (min) -5.16838e-06 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.039 (min) 298.695 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:34:27 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:34:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.446553, mean: 0.458004, max: 0.463884 14:34:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:34:28 DEBUG opendrift.models.physics_methods:905: min: 3.640541, mean: 3.686907, max: 3.710514 14:34:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.640541, mean: 3.686907, max: 3.710514 14:34:28 DEBUG opendrift:643: No elements hit coastline. 14:34:28 DEBUG opendrift:733: No elements hit seafloor. 14:34:28 DEBUG opendrift:1695: No elements to deactivate 14:34:28 DEBUG opendrift:2129: Calling OceanDrift.update() 14:34:28 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085212 m/s - 0.086849 m/s) 14:34:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:34:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:34:28 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:34:28 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:34:28 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:34:28 DEBUG opendrift:733: No elements hit seafloor. 14:34:28 DEBUG opendrift:2055: ====================================================================== 14:34:28 INFO opendrift:2056: 2025-03-12 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated) 14:34:28 DEBUG opendrift:2062: 0 elements scheduled. 14:34:28 DEBUG opendrift:2064: ====================================================================== 14:34:28 DEBUG opendrift:2075: 60.18080178754406 <- latitude -> 60.20241884062712 14:34:28 DEBUG opendrift:2080: 4.443155653911397 <- longitude -> 4.445622606222014 14:34:28 DEBUG opendrift:2083: z = 0.0 14:34:28 DEBUG opendrift:2086: --------------------------------- 14:34:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:28 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:34:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:34:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:34:28 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 04:00:00 (before) 2025-03-12 05:00:00 (after) 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:34:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x7) for time before (2025-03-12 04:00:00) 14:34:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 04:00:00) in space (linearNDFast) 14:34:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:34:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:34:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55685520675057 and -65.55438826079236 degrees. 14:34:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55685520675057 and -65.55438826079236 degrees. 14:34:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:34:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:34:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:34:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:34:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:34:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:34:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:34:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:34:48 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:34:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0167875 (min) -0.0117355 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.262454 (min) 0.297483 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.808032 (min) -0.806957 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.32688 (min) -0.936692 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.51094 (min) -4.47622 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.66524e-05 (min) 3.67481e-05 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.476 (min) 299.301 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:34:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:34:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.521029, mean: 0.523157, max: 0.541360 14:34:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:34:48 DEBUG opendrift.models.physics_methods:905: min: 3.932424, mean: 3.940435, max: 4.008415 14:34:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.932424, mean: 3.940435, max: 4.008415 14:34:48 DEBUG opendrift:643: No elements hit coastline. 14:34:48 DEBUG opendrift:733: No elements hit seafloor. 14:34:48 DEBUG opendrift:1695: No elements to deactivate 14:34:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:34:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.092044 m/s - 0.093822 m/s) 14:34:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:34:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:34:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:34:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:34:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:34:48 DEBUG opendrift:733: No elements hit seafloor. 14:34:48 DEBUG opendrift:2055: ====================================================================== 14:34:48 INFO opendrift:2056: 2025-03-12 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated) 14:34:48 DEBUG opendrift:2062: 0 elements scheduled. 14:34:48 DEBUG opendrift:2064: ====================================================================== 14:34:48 DEBUG opendrift:2075: 60.18638038072281 <- latitude -> 60.20911277747212 14:34:48 DEBUG opendrift:2080: 4.440754320934729 <- longitude -> 4.44322797755251 14:34:48 DEBUG opendrift:2083: z = 0.0 14:34:48 DEBUG opendrift:2086: --------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:34:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:34:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:34:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:34:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:34:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 05:00:00 (before) 2025-03-12 06:00:00 (after) 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:35:08 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x7) for time before (2025-03-12 05:00:00) 14:35:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 05:00:00) in space (linearNDFast) 14:35:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:35:08 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:35:08 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55925654065857 and -65.55678288825047 degrees. 14:35:08 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55925654065857 and -65.55678288825047 degrees. 14:35:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:35:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:35:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:35:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:35:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:35:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:35:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:08 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:35:08 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:35:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0546489 (min) -0.045324 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243211 (min) 0.273722 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.67454 (min) -0.672509 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.19702 (min) -2.05782 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.7355 (min) -5.62789 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.92937e-05 (min) 4.99109e-05 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.753 (min) 299.851 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:35:08 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:35:08 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.897850, mean: 0.906148, max: 0.913914 14:35:08 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:35:08 DEBUG opendrift.models.physics_methods:905: min: 5.162160, mean: 5.185954, max: 5.208134 14:35:08 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.162160, mean: 5.185954, max: 5.208134 14:35:08 DEBUG opendrift:643: No elements hit coastline. 14:35:08 DEBUG opendrift:733: No elements hit seafloor. 14:35:08 DEBUG opendrift:1695: No elements to deactivate 14:35:08 DEBUG opendrift:2129: Calling OceanDrift.update() 14:35:08 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120827 m/s - 0.121903 m/s) 14:35:08 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:35:08 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:35:08 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:35:08 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:35:08 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:35:08 DEBUG opendrift:733: No elements hit seafloor. 14:35:08 DEBUG opendrift:2055: ====================================================================== 14:35:08 INFO opendrift:2056: 2025-03-12 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated) 14:35:08 DEBUG opendrift:2062: 0 elements scheduled. 14:35:08 DEBUG opendrift:2064: ====================================================================== 14:35:08 DEBUG opendrift:2075: 60.190567807461576 <- latitude -> 60.214311445621206 14:35:08 DEBUG opendrift:2080: 4.434648939106246 <- longitude -> 4.437114556664389 14:35:08 DEBUG opendrift:2083: z = 0.0 14:35:08 DEBUG opendrift:2086: --------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:35:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:35:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:35:08 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 06:00:00 (before) 2025-03-12 07:00:00 (after) 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:35:28 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x7) for time before (2025-03-12 06:00:00) 14:35:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 06:00:00) in space (linearNDFast) 14:35:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:35:28 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:35:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.56536192518865 and -65.56289630818 degrees. 14:35:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.56536192518865 and -65.56289630818 degrees. 14:35:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:35:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:35:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:35:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:35:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:35:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:35:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:28 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:35:28 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:35:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0984019 (min) -0.0858185 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.212034 (min) 0.239484 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.494732 (min) -0.491043 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.47331 (min) -2.46256 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.81739 (min) -4.64642 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.73426e-05 (min) 5.93255e-05 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.766 (min) 300.075 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:35:28 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:35:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.681580, mean: 0.696582, max: 0.720078 14:35:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:35:28 DEBUG opendrift.models.physics_methods:905: min: 4.497673, mean: 4.546856, max: 4.622950 14:35:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.497673, mean: 4.546856, max: 4.622950 14:35:28 DEBUG opendrift:643: No elements hit coastline. 14:35:28 DEBUG opendrift:733: No elements hit seafloor. 14:35:28 DEBUG opendrift:1695: No elements to deactivate 14:35:28 DEBUG opendrift:2129: Calling OceanDrift.update() 14:35:28 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105274 m/s - 0.108206 m/s) 14:35:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:35:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:35:28 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:35:28 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:35:28 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:35:28 DEBUG opendrift:733: No elements hit seafloor. 14:35:28 DEBUG opendrift:2055: ====================================================================== 14:35:28 INFO opendrift:2056: 2025-03-12 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated) 14:35:28 DEBUG opendrift:2062: 0 elements scheduled. 14:35:28 DEBUG opendrift:2064: ====================================================================== 14:35:28 DEBUG opendrift:2075: 60.19431341728135 <- latitude -> 60.219040096783296 14:35:28 DEBUG opendrift:2080: 4.425240252454003 <- longitude -> 4.427752399715077 14:35:28 DEBUG opendrift:2083: z = 0.0 14:35:28 DEBUG opendrift:2086: --------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:35:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:35:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:35:28 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 07:00:00 (before) 2025-03-12 08:00:00 (after) 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:35:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x23x7) for time before (2025-03-12 07:00:00) 14:35:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 07:00:00) in space (linearNDFast) 14:35:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:35:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:35:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5747706086833 and -65.5722584643879 degrees. 14:35:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5747706086833 and -65.5722584643879 degrees. 14:35:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:35:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:35:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:35:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:35:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:35:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:35:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:35:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:35:48 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:35:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.128524 (min) -0.109517 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.168367 (min) 0.19436 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.277023 (min) -0.271733 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.01458 (min) -1.97518 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.77112 (min) -4.67496 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.82112e-05 (min) 5.902e-05 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.581 (min) 300.035 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:35:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:35:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.637435, mean: 0.643048, max: 0.655957 14:35:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:35:48 DEBUG opendrift.models.physics_methods:905: min: 4.349583, mean: 4.368676, max: 4.412323 14:35:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.349583, mean: 4.368676, max: 4.412323 14:35:48 DEBUG opendrift:643: No elements hit coastline. 14:35:48 DEBUG opendrift:733: No elements hit seafloor. 14:35:48 DEBUG opendrift:1695: No elements to deactivate 14:35:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:35:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101808 m/s - 0.103276 m/s) 14:35:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:35:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:35:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:35:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:35:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:35:48 DEBUG opendrift:733: No elements hit seafloor. 14:35:48 DEBUG opendrift:2055: ====================================================================== 14:35:48 INFO opendrift:2056: 2025-03-12 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated) 14:35:48 DEBUG opendrift:2062: 0 elements scheduled. 14:35:48 DEBUG opendrift:2064: ====================================================================== 14:35:48 DEBUG opendrift:2075: 60.196696343242735 <- latitude -> 60.222295201770294 14:35:48 DEBUG opendrift:2080: 4.414523977727897 <- longitude -> 4.418080036510836 14:35:48 DEBUG opendrift:2083: z = 0.0 14:35:48 DEBUG opendrift:2086: --------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:35:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:35:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:35:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:35:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:35:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 08:00:00 (before) 2025-03-12 09:00:00 (after) 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:36:03 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x7) for time before (2025-03-12 08:00:00) 14:36:03 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 08:00:00) in space (linearNDFast) 14:36:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:36:03 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:36:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.58548688104871 and -65.5819308352107 degrees. 14:36:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.58548688104871 and -65.5819308352107 degrees. 14:36:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:36:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:36:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:36:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:36:03 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:36:03 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:36:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:03 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:36:03 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:36:03 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.121411 (min) -0.0925122 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.110579 (min) 0.137623 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.107975 (min) -0.102504 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.32885 (min) -2.19203 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.47006 (min) -5.4019 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.25604e-05 (min) 3.28464e-05 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.227 (min) 299.675 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:36:03 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:36:03 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.849391, mean: 0.851837, max: 0.854642 14:36:03 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:36:03 DEBUG opendrift.models.physics_methods:905: min: 5.020921, mean: 5.028146, max: 5.036416 14:36:03 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.020921, mean: 5.028146, max: 5.036416 14:36:03 DEBUG opendrift:643: No elements hit coastline. 14:36:03 DEBUG opendrift:733: No elements hit seafloor. 14:36:03 DEBUG opendrift:1695: No elements to deactivate 14:36:03 DEBUG opendrift:2129: Calling OceanDrift.update() 14:36:03 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.117521 m/s - 0.117884 m/s) 14:36:03 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:36:03 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:36:03 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:36:03 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:36:03 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:36:03 DEBUG opendrift:733: No elements hit seafloor. 14:36:03 DEBUG opendrift:2055: ====================================================================== 14:36:03 INFO opendrift:2056: 2025-03-12 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated) 14:36:03 DEBUG opendrift:2062: 0 elements scheduled. 14:36:03 DEBUG opendrift:2064: ====================================================================== 14:36:03 DEBUG opendrift:2075: 60.196778968666266 <- latitude -> 60.223244430994036 14:36:03 DEBUG opendrift:2080: 4.404139703136204 <- longitude -> 4.409168453504208 14:36:03 DEBUG opendrift:2083: z = 0.0 14:36:03 DEBUG opendrift:2086: --------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:36:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:36:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:36:03 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 09:00:00 (before) 2025-03-12 10:00:00 (after) 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:36:20 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x7) for time before (2025-03-12 09:00:00) 14:36:20 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 09:00:00) in space (linearNDFast) 14:36:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:36:20 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:36:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.59587116809777 and -65.59084242344082 degrees. 14:36:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.59587116809777 and -65.59084242344082 degrees. 14:36:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:36:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:36:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:36:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:36:20 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:36:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:36:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:20 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:36:20 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:36:20 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0789935 (min) -0.0435095 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0495806 (min) 0.0830375 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0432305 (min) -0.0380106 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.49752 (min) -2.46434 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.03324 (min) -4.98978 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.46013e-06 (min) -1.88779e-06 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.702 (min) 299.043 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:36:20 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:36:20 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.764367, mean: 0.766774, max: 0.772600 14:36:20 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:36:20 DEBUG opendrift.models.physics_methods:905: min: 4.763001, mean: 4.770491, max: 4.788581 14:36:20 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.763001, mean: 4.770491, max: 4.788581 14:36:20 DEBUG opendrift:643: No elements hit coastline. 14:36:20 DEBUG opendrift:733: No elements hit seafloor. 14:36:20 DEBUG opendrift:1695: No elements to deactivate 14:36:20 DEBUG opendrift:2129: Calling OceanDrift.update() 14:36:20 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111484 m/s - 0.112083 m/s) 14:36:20 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:36:20 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:36:20 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:36:20 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:36:20 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:36:20 DEBUG opendrift:733: No elements hit seafloor. 14:36:20 DEBUG opendrift:2055: ====================================================================== 14:36:20 INFO opendrift:2056: 2025-03-12 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated) 14:36:20 DEBUG opendrift:2062: 0 elements scheduled. 14:36:20 DEBUG opendrift:2064: ====================================================================== 14:36:20 DEBUG opendrift:2075: 60.19512829220409 <- latitude -> 60.22268867442713 14:36:20 DEBUG opendrift:2080: 4.396321816503979 <- longitude -> 4.403095683541549 14:36:20 DEBUG opendrift:2083: z = 0.0 14:36:20 DEBUG opendrift:2086: --------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:36:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:36:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:36:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 10:00:00 (before) 2025-03-12 11:00:00 (after) 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:36:38 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x7) for time before (2025-03-12 10:00:00) 14:36:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 10:00:00) in space (linearNDFast) 14:36:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:36:38 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:36:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60368905110803 and -65.59691519025421 degrees. 14:36:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60368905110803 and -65.59691519025421 degrees. 14:36:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:36:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:36:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:36:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:36:38 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:36:38 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:36:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:38 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:36:38 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:36:38 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0314749 (min) -0.0017466 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0107602 (min) 0.0239018 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.13455 (min) -0.131279 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.06592 (min) -2.04224 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: y_wind: -6.12711 (min) -5.93977 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.65088e-05 (min) -4.58763e-05 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.178 (min) 298.445 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:36:38 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:36:38 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.970510, mean: 1.007464, max: 1.028513 14:36:38 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:36:38 DEBUG opendrift.models.physics_methods:905: min: 5.366975, mean: 5.468144, max: 5.525029 14:36:38 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.366975, mean: 5.468144, max: 5.525029 14:36:38 DEBUG opendrift:643: No elements hit coastline. 14:36:38 DEBUG opendrift:733: No elements hit seafloor. 14:36:38 DEBUG opendrift:1695: No elements to deactivate 14:36:38 DEBUG opendrift:2129: Calling OceanDrift.update() 14:36:38 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125621 m/s - 0.129321 m/s) 14:36:38 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:36:38 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:36:38 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:36:38 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:36:38 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:36:38 DEBUG opendrift:733: No elements hit seafloor. 14:36:38 DEBUG opendrift:2055: ====================================================================== 14:36:38 INFO opendrift:2056: 2025-03-12 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated) 14:36:38 DEBUG opendrift:2062: 0 elements scheduled. 14:36:38 DEBUG opendrift:2064: ====================================================================== 14:36:38 DEBUG opendrift:2075: 60.190946579432335 <- latitude -> 60.21949408997058 14:36:38 DEBUG opendrift:2080: 4.3915938758089705 <- longitude -> 4.400331894967438 14:36:38 DEBUG opendrift:2083: z = 0.0 14:36:38 DEBUG opendrift:2086: --------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:36:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:36:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:36:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 11:00:00 (before) 2025-03-12 12:00:00 (after) 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:36:55 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x7) for time before (2025-03-12 11:00:00) 14:36:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 11:00:00) in space (linearNDFast) 14:36:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:36:55 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:36:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60841697967797 and -65.59967897231019 degrees. 14:36:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60841697967797 and -65.59967897231019 degrees. 14:36:55 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:55 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:36:55 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:36:55 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:55 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:36:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:36:55 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:36:55 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:36:55 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:36:55 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:36:55 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:36:55 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00241935 (min) 0.0238869 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0612442 (min) -0.0336308 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.35 (min) -0.349771 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.56145 (min) -1.52892 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: y_wind: -7.10647 (min) -6.93699 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.2108e-05 (min) -7.19549e-05 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 295.599 (min) 297.857 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:36:55 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:36:55 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.243776, mean: 1.280978, max: 1.299853 14:36:55 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:36:55 DEBUG opendrift.models.physics_methods:905: min: 6.075762, mean: 6.165916, max: 6.211217 14:36:55 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 6.075762, mean: 6.165916, max: 6.211217 14:36:55 DEBUG opendrift:643: No elements hit coastline. 14:36:55 DEBUG opendrift:733: No elements hit seafloor. 14:36:55 DEBUG opendrift:1695: No elements to deactivate 14:36:55 DEBUG opendrift:2129: Calling OceanDrift.update() 14:36:55 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142211 m/s - 0.145382 m/s) 14:36:55 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:36:55 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:36:55 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:36:55 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:36:55 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:36:55 DEBUG opendrift:733: No elements hit seafloor. 14:36:55 DEBUG opendrift:2055: ====================================================================== 14:36:55 INFO opendrift:2056: 2025-03-12 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated) 14:36:55 DEBUG opendrift:2062: 0 elements scheduled. 14:36:55 DEBUG opendrift:2064: ====================================================================== 14:36:55 DEBUG opendrift:2075: 60.18448896597094 <- latitude -> 60.21380657680177 14:36:55 DEBUG opendrift:2080: 4.389765376284699 <- longitude -> 4.399855762539824 14:36:55 DEBUG opendrift:2083: z = 0.0 14:36:55 DEBUG opendrift:2086: --------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:36:55 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:36:55 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:36:55 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:36:55 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:36:55 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 12:00:00 (before) 2025-03-12 13:00:00 (after) 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:37:10 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x7) for time before (2025-03-12 12:00:00) 14:37:10 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 12:00:00) in space (linearNDFast) 14:37:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:37:10 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:37:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61024549305344 and -65.60015511341696 degrees. 14:37:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61024549305344 and -65.60015511341696 degrees. 14:37:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:10 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:37:10 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:37:10 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:37:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:37:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:37:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:37:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:10 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:37:10 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:37:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0191289 (min) 0.0317657 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.101012 (min) -0.0832586 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.616366 (min) -0.614962 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.1488 (min) -1.11408 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: -8.1013 (min) -8.0754 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.04255e-05 (min) -6.97557e-05 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 294.934 (min) 297.225 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:37:10 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:37:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.636681, mean: 1.640462, max: 1.645055 14:37:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:37:10 DEBUG opendrift.models.physics_methods:905: min: 6.969660, mean: 6.977706, max: 6.987468 14:37:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 6.969660, mean: 6.977706, max: 6.987468 14:37:10 DEBUG opendrift:643: No elements hit coastline. 14:37:10 DEBUG opendrift:733: No elements hit seafloor. 14:37:10 DEBUG opendrift:1695: No elements to deactivate 14:37:10 DEBUG opendrift:2129: Calling OceanDrift.update() 14:37:10 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.163134 m/s - 0.163551 m/s) 14:37:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:37:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:37:10 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:37:10 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:37:10 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:37:10 DEBUG opendrift:733: No elements hit seafloor. 14:37:10 DEBUG opendrift:2055: ====================================================================== 14:37:10 INFO opendrift:2056: 2025-03-12 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated) 14:37:10 DEBUG opendrift:2062: 0 elements scheduled. 14:37:10 DEBUG opendrift:2064: ====================================================================== 14:37:10 DEBUG opendrift:2075: 60.17620064337355 <- latitude -> 60.20579000901091 14:37:10 DEBUG opendrift:2080: 4.389515825299916 <- longitude -> 4.400327995746956 14:37:10 DEBUG opendrift:2083: z = 0.0 14:37:10 DEBUG opendrift:2086: --------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:37:10 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:37:10 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:37:10 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 13:00:00 (before) 2025-03-12 14:00:00 (after) 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:37:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:37:24 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x7) for time before (2025-03-12 13:00:00) 14:37:24 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 13:00:00) in space (linearNDFast) 14:37:24 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:37:24 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:37:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61049503365919 and -65.59968287203614 degrees. 14:37:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61049503365919 and -65.59968287203614 degrees. 14:37:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:37:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:37:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:37:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:37:25 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:37:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:37:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:25 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:37:25 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:37:25 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0157157 (min) 0.0346649 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.135031 (min) -0.119186 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.8292 (min) -0.825892 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.611914 (min) -0.547855 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.62087 (min) -9.49905 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.76196e-05 (min) -4.69695e-05 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 294.13 (min) 296.449 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:37:25 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:37:25 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.228916, mean: 2.262280, max: 2.284388 14:37:25 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:37:25 DEBUG opendrift.models.physics_methods:905: min: 8.133481, mean: 8.194111, max: 8.234069 14:37:25 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.133481, mean: 8.194111, max: 8.234069 14:37:25 DEBUG opendrift:643: No elements hit coastline. 14:37:25 DEBUG opendrift:733: No elements hit seafloor. 14:37:25 DEBUG opendrift:1695: No elements to deactivate 14:37:25 DEBUG opendrift:2129: Calling OceanDrift.update() 14:37:25 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.190375 m/s - 0.192729 m/s) 14:37:25 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:37:25 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:37:25 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:37:25 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:37:25 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:37:25 DEBUG opendrift:733: No elements hit seafloor. 14:37:25 DEBUG opendrift:2055: ====================================================================== 14:37:25 INFO opendrift:2056: 2025-03-12 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated) 14:37:25 DEBUG opendrift:2062: 0 elements scheduled. 14:37:25 DEBUG opendrift:2064: ====================================================================== 14:37:25 DEBUG opendrift:2075: 60.16605563930085 <- latitude -> 60.19569811867742 14:37:25 DEBUG opendrift:2080: 4.389824852646387 <- longitude -> 4.4017825886560695 14:37:25 DEBUG opendrift:2083: z = 0.0 14:37:25 DEBUG opendrift:2086: --------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:37:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:37:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:37:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 14:00:00 (before) 2025-03-12 15:00:00 (after) 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:37:44 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x7) for time before (2025-03-12 14:00:00) 14:37:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 14:00:00) in space (linearNDFast) 14:37:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:37:44 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:37:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6101860109564 and -65.59822828385316 degrees. 14:37:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6101860109564 and -65.59822828385316 degrees. 14:37:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:37:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:37:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:37:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:37:44 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:37:44 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:37:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:37:44 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:37:44 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:37:44 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00300811 (min) 0.0327355 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.157764 (min) -0.14006 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.946156 (min) -0.94133 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.950155 (min) -0.862773 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: y_wind: -10.8838 (min) -10.7254 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.73347e-05 (min) -1.6491e-05 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 293.238 (min) 295.466 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:37:44 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:37:44 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.848129, mean: 2.902071, max: 2.936230 14:37:44 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:37:44 DEBUG opendrift.models.physics_methods:905: min: 9.194103, mean: 9.280731, max: 9.335222 14:37:44 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.194103, mean: 9.280731, max: 9.335222 14:37:44 DEBUG opendrift:643: No elements hit coastline. 14:37:44 DEBUG opendrift:733: No elements hit seafloor. 14:37:44 DEBUG opendrift:1695: No elements to deactivate 14:37:44 DEBUG opendrift:2129: Calling OceanDrift.update() 14:37:44 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.215200 m/s - 0.218503 m/s) 14:37:44 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:37:44 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:37:44 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:37:44 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:37:44 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:37:44 DEBUG opendrift:733: No elements hit seafloor. 14:37:44 DEBUG opendrift:2055: ====================================================================== 14:37:44 INFO opendrift:2056: 2025-03-12 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated) 14:37:44 DEBUG opendrift:2062: 0 elements scheduled. 14:37:44 DEBUG opendrift:2064: ====================================================================== 14:37:44 DEBUG opendrift:2075: 60.154442907198316 <- latitude -> 60.18391305409495 14:37:44 DEBUG opendrift:2080: 4.388787194452517 <- longitude -> 4.402786427298424 14:37:44 DEBUG opendrift:2083: z = 0.0 14:37:44 DEBUG opendrift:2086: --------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:37:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:37:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:37:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:37:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:37:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 15:00:00 (before) 2025-03-12 16:00:00 (after) 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:38:04 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x25x7) for time before (2025-03-12 15:00:00) 14:38:04 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 15:00:00) in space (linearNDFast) 14:38:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:38:04 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:38:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61122368331338 and -65.59722444736606 degrees. 14:38:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61122368331338 and -65.59722444736606 degrees. 14:38:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:38:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:38:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:38:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:38:04 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:38:04 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:38:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:04 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:38:04 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:38:04 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0011233 (min) 0.0206138 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.168695 (min) -0.143781 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.952757 (min) -0.946005 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.848161 (min) -0.809741 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.7601 (min) -11.6713 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.18128e-06 (min) 8.60776e-06 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 292.292 (min) 294.196 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:38:04 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:38:04 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.368676, mean: 3.389499, max: 3.418290 14:38:04 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:38:04 DEBUG opendrift.models.physics_methods:905: min: 9.999061, mean: 10.029910, max: 10.072425 14:38:04 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.999061, mean: 10.029910, max: 10.072425 14:38:04 DEBUG opendrift:643: No elements hit coastline. 14:38:04 DEBUG opendrift:733: No elements hit seafloor. 14:38:04 DEBUG opendrift:1695: No elements to deactivate 14:38:04 DEBUG opendrift:2129: Calling OceanDrift.update() 14:38:04 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.234041 m/s - 0.235758 m/s) 14:38:04 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:38:04 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:38:04 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:38:04 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:38:04 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:38:04 DEBUG opendrift:733: No elements hit seafloor. 14:38:04 DEBUG opendrift:2055: ====================================================================== 14:38:04 INFO opendrift:2056: 2025-03-12 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated) 14:38:04 DEBUG opendrift:2062: 0 elements scheduled. 14:38:04 DEBUG opendrift:2064: ====================================================================== 14:38:04 DEBUG opendrift:2075: 60.14161602743006 <- latitude -> 60.17172492267888 14:38:04 DEBUG opendrift:2080: 4.387614221306152 <- longitude -> 4.402990806772375 14:38:04 DEBUG opendrift:2083: z = 0.0 14:38:04 DEBUG opendrift:2086: --------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:38:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:38:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:38:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 16:00:00 (before) 2025-03-12 17:00:00 (after) 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:38:23 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x7) for time before (2025-03-12 16:00:00) 14:38:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 16:00:00) in space (linearNDFast) 14:38:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:38:23 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:38:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61239666098729 and -65.59702007626846 degrees. 14:38:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61239666098729 and -65.59702007626846 degrees. 14:38:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:38:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:38:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:38:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:38:23 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:38:23 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:38:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:23 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:38:23 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:38:23 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00230935 (min) 0.00780302 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.160005 (min) -0.122587 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.886696 (min) -0.879622 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.388501 (min) 0.493276 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: y_wind: -10.9928 (min) -10.8534 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.65739e-05 (min) 2.72763e-05 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.497 (min) 292.804 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:38:23 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:38:23 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.903751, mean: 2.930178, max: 2.976425 14:38:23 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:38:23 DEBUG opendrift.models.physics_methods:905: min: 9.283446, mean: 9.325574, max: 9.398901 14:38:23 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.283446, mean: 9.325574, max: 9.398901 14:38:23 DEBUG opendrift:643: No elements hit coastline. 14:38:23 DEBUG opendrift:733: No elements hit seafloor. 14:38:23 DEBUG opendrift:1695: No elements to deactivate 14:38:23 DEBUG opendrift:2129: Calling OceanDrift.update() 14:38:23 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.217291 m/s - 0.219994 m/s) 14:38:23 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:38:23 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:38:23 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:38:23 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:38:23 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:38:23 DEBUG opendrift:733: No elements hit seafloor. 14:38:23 DEBUG opendrift:2055: ====================================================================== 14:38:23 INFO opendrift:2056: 2025-03-12 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated) 14:38:23 DEBUG opendrift:2062: 0 elements scheduled. 14:38:23 DEBUG opendrift:2064: ====================================================================== 14:38:23 DEBUG opendrift:2075: 60.1295278951293 <- latitude -> 60.160750155592524 14:38:23 DEBUG opendrift:2080: 4.388434789732548 <- longitude -> 4.403656579638614 14:38:23 DEBUG opendrift:2083: z = 0.0 14:38:23 DEBUG opendrift:2086: --------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:38:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:38:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:38:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 17:00:00 (before) 2025-03-12 18:00:00 (after) 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:38:43 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x25x7) for time before (2025-03-12 17:00:00) 14:38:43 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 17:00:00) in space (linearNDFast) 14:38:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:38:43 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:38:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61157609687474 and -65.5963543081512 degrees. 14:38:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61157609687474 and -65.5963543081512 degrees. 14:38:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:38:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:38:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:38:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:38:43 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:38:43 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:38:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:38:43 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:38:43 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:38:43 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0368798 (min) -0.0139554 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.143739 (min) -0.109701 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.761663 (min) -0.755385 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.784688 (min) -0.689881 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.2165 (min) -11.1133 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.03037e-05 (min) 4.08012e-05 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.045 (min) 291.684 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:38:43 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:38:43 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.053377, mean: 3.077973, max: 3.106655 14:38:43 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:38:43 DEBUG opendrift.models.physics_methods:905: min: 9.519624, mean: 9.557879, max: 9.602319 14:38:43 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.519624, mean: 9.557879, max: 9.602319 14:38:43 DEBUG opendrift:643: No elements hit coastline. 14:38:43 DEBUG opendrift:733: No elements hit seafloor. 14:38:43 DEBUG opendrift:1695: No elements to deactivate 14:38:43 DEBUG opendrift:2129: Calling OceanDrift.update() 14:38:43 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222819 m/s - 0.224755 m/s) 14:38:43 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:38:43 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:38:43 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:38:43 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:38:43 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:38:43 DEBUG opendrift:733: No elements hit seafloor. 14:38:43 DEBUG opendrift:2055: ====================================================================== 14:38:43 INFO opendrift:2056: 2025-03-12 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated) 14:38:43 DEBUG opendrift:2062: 0 elements scheduled. 14:38:43 DEBUG opendrift:2064: ====================================================================== 14:38:43 DEBUG opendrift:2075: 60.1182994745394 <- latitude -> 60.149859258518816 14:38:43 DEBUG opendrift:2080: 4.386477276775258 <- longitude -> 4.400374819365382 14:38:43 DEBUG opendrift:2083: z = 0.0 14:38:43 DEBUG opendrift:2086: --------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:38:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:38:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:38:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:38:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:38:43 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 18:00:00 (before) 2025-03-12 19:00:00 (after) 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:39:03 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x7) for time before (2025-03-12 18:00:00) 14:39:03 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 18:00:00) in space (linearNDFast) 14:39:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:39:03 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:39:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6135336033826 and -65.59963607183664 degrees. 14:39:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6135336033826 and -65.59963607183664 degrees. 14:39:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:39:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:39:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:39:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:39:03 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:39:03 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:39:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:03 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:39:03 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:39:03 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0553837 (min) -0.0317018 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.16504 (min) -0.125281 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.590551 (min) -0.587919 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.696884 (min) -0.628789 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.8715 (min) -12.7952 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.2954e-05 (min) 5.38609e-05 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 290.324 (min) 291.433 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:39:03 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:39:03 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.039344, mean: 4.066110, max: 4.085361 14:39:03 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:39:03 DEBUG opendrift.models.physics_methods:905: min: 10.949266, mean: 10.985479, max: 11.011456 14:39:03 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.949266, mean: 10.985479, max: 11.011456 14:39:03 DEBUG opendrift:643: No elements hit coastline. 14:39:03 DEBUG opendrift:733: No elements hit seafloor. 14:39:03 DEBUG opendrift:1695: No elements to deactivate 14:39:03 DEBUG opendrift:2129: Calling OceanDrift.update() 14:39:03 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256282 m/s - 0.257738 m/s) 14:39:03 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:39:03 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:39:03 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:39:03 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:39:03 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:39:03 DEBUG opendrift:733: No elements hit seafloor. 14:39:03 DEBUG opendrift:2055: ====================================================================== 14:39:03 INFO opendrift:2056: 2025-03-12 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated) 14:39:03 DEBUG opendrift:2062: 0 elements scheduled. 14:39:03 DEBUG opendrift:2064: ====================================================================== 14:39:03 DEBUG opendrift:2075: 60.10514362560048 <- latitude -> 60.13749317667786 14:39:03 DEBUG opendrift:2080: 4.383437712507952 <- longitude -> 4.395888128161786 14:39:03 DEBUG opendrift:2083: z = 0.0 14:39:03 DEBUG opendrift:2086: --------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:39:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:39:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:39:03 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 19:00:00 (before) 2025-03-12 20:00:00 (after) 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:39:23 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x7) for time before (2025-03-12 19:00:00) 14:39:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 19:00:00) in space (linearNDFast) 14:39:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:39:23 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:39:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61657318551826 and -65.60412277159234 degrees. 14:39:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61657318551826 and -65.60412277159234 degrees. 14:39:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:39:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:39:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:39:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:39:23 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:39:23 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:39:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:23 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:39:23 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:39:23 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0722881 (min) -0.0492351 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.208304 (min) -0.177153 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.378615 (min) -0.377836 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.63055 (min) -1.40256 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.4919 (min) -12.4433 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 6.07007e-05 (min) 6.16399e-05 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.644 (min) 291.948 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:39:23 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:39:23 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.857327, mean: 3.883764, max: 3.904176 14:39:23 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:39:23 DEBUG opendrift.models.physics_methods:905: min: 10.699730, mean: 10.736329, max: 10.764511 14:39:23 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.699730, mean: 10.736329, max: 10.764511 14:39:23 DEBUG opendrift:643: No elements hit coastline. 14:39:23 DEBUG opendrift:733: No elements hit seafloor. 14:39:23 DEBUG opendrift:1695: No elements to deactivate 14:39:23 DEBUG opendrift:2129: Calling OceanDrift.update() 14:39:23 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.250441 m/s - 0.251957 m/s) 14:39:23 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:39:23 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:39:23 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:39:23 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:39:23 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:39:23 DEBUG opendrift:733: No elements hit seafloor. 14:39:23 DEBUG opendrift:2055: ====================================================================== 14:39:23 INFO opendrift:2056: 2025-03-12 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated) 14:39:23 DEBUG opendrift:2062: 0 elements scheduled. 14:39:23 DEBUG opendrift:2064: ====================================================================== 14:39:23 DEBUG opendrift:2075: 60.0909119079398 <- latitude -> 60.12348638430669 14:39:23 DEBUG opendrift:2080: 4.378116242118216 <- longitude -> 4.389395661182302 14:39:23 DEBUG opendrift:2083: z = 0.0 14:39:23 DEBUG opendrift:2086: --------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:39:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:39:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:39:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 20:00:00 (before) 2025-03-12 21:00:00 (after) 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:39:43 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x7) for time before (2025-03-12 20:00:00) 14:39:43 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 20:00:00) in space (linearNDFast) 14:39:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:39:43 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:39:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6218946500734 and -65.61061523365812 degrees. 14:39:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6218946500734 and -65.61061523365812 degrees. 14:39:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:39:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:39:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:39:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:39:43 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:39:43 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:39:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:39:43 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:39:43 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:39:43 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.085398 (min) -0.0610107 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.263484 (min) -0.232202 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.171022 (min) -0.167751 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.58705 (min) -2.52234 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.341 (min) -12.1634 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.04893e-05 (min) 5.09368e-05 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.332 (min) 292.941 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:39:43 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:39:43 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.796021, mean: 3.853658, max: 3.911204 14:39:43 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:39:43 DEBUG opendrift.models.physics_methods:905: min: 10.614362, mean: 10.694606, max: 10.774195 14:39:43 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.614362, mean: 10.694606, max: 10.774195 14:39:43 DEBUG opendrift:643: No elements hit coastline. 14:39:43 DEBUG opendrift:733: No elements hit seafloor. 14:39:43 DEBUG opendrift:1695: No elements to deactivate 14:39:43 DEBUG opendrift:2129: Calling OceanDrift.update() 14:39:43 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.248443 m/s - 0.252184 m/s) 14:39:43 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:39:43 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:39:43 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:39:43 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:39:43 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:39:43 DEBUG opendrift:733: No elements hit seafloor. 14:39:43 DEBUG opendrift:2055: ====================================================================== 14:39:43 INFO opendrift:2056: 2025-03-12 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated) 14:39:43 DEBUG opendrift:2062: 0 elements scheduled. 14:39:43 DEBUG opendrift:2064: ====================================================================== 14:39:43 DEBUG opendrift:2075: 60.07472735402641 <- latitude -> 60.10800821965434 14:39:43 DEBUG opendrift:2080: 4.370817183074629 <- longitude -> 4.380610347379046 14:39:43 DEBUG opendrift:2083: z = 0.0 14:39:43 DEBUG opendrift:2086: --------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:39:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:39:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:39:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:39:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:39:43 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 21:00:00 (before) 2025-03-12 22:00:00 (after) 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:03 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x7) for time before (2025-03-12 21:00:00) 14:40:03 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 21:00:00) in space (linearNDFast) 14:40:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:03 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.62919370781646 and -65.61940056293385 degrees. 14:40:03 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.62919370781646 and -65.61940056293385 degrees. 14:40:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:03 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:03 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:03 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:03 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:03 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:40:03 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.106938 (min) -0.0696892 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.33592 (min) -0.306414 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0417913 (min) -0.0387839 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.70636 (min) -2.64071 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.8038 (min) -12.7141 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.75512e-05 (min) 1.77872e-05 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.992 (min) 294.429 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:03 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:03 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.156724, mean: 4.184865, max: 4.204430 14:40:03 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:03 DEBUG opendrift.models.physics_methods:905: min: 11.107215, mean: 11.144744, max: 11.170771 14:40:03 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.107215, mean: 11.144744, max: 11.170771 14:40:03 DEBUG opendrift:643: No elements hit coastline. 14:40:03 DEBUG opendrift:733: No elements hit seafloor. 14:40:03 DEBUG opendrift:1695: No elements to deactivate 14:40:03 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:03 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259979 m/s - 0.261466 m/s) 14:40:03 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:03 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:03 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:03 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:03 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:03 DEBUG opendrift:733: No elements hit seafloor. 14:40:03 DEBUG opendrift:2055: ====================================================================== 14:40:03 INFO opendrift:2056: 2025-03-12 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated) 14:40:03 DEBUG opendrift:2062: 0 elements scheduled. 14:40:03 DEBUG opendrift:2064: ====================================================================== 14:40:03 DEBUG opendrift:2075: 60.05598836288247 <- latitude -> 60.089832941990664 14:40:03 DEBUG opendrift:2080: 4.3628911176078065 <- longitude -> 4.3701997289201815 14:40:03 DEBUG opendrift:2083: z = 0.0 14:40:03 DEBUG opendrift:2086: --------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:03 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:601: Calling reader NorKyst manual aggregate 14:40:03 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:03 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:03 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements 14:40:03 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 22:00:00 (before) 2025-03-12 23:00:00 (after) 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:24 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x7) for time before (2025-03-12 22:00:00) 14:40:24 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 22:00:00) in space (linearNDFast) 14:40:24 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:24 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.63711979834406 and -65.62981119355625 degrees. 14:40:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.63711979834406 and -65.62981119355625 degrees. 14:40:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:24 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:24 DEBUG opendrift.models.basemodel.environment:802: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles 14:40:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.133818 (min) -0.080181 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.372494 (min) -0.341337 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0575883 (min) -0.0546977 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.31336 (min) -2.29116 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.2091 (min) -12.173 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.53688e-05 (min) -2.49514e-05 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.834 (min) 296.341 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:24 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.774402, mean: 3.788378, max: 3.798551 14:40:24 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:24 DEBUG opendrift.models.physics_methods:905: min: 10.584094, mean: 10.603669, max: 10.617898 14:40:24 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.584094, mean: 10.603669, max: 10.617898 14:40:24 DEBUG opendrift:643: No elements hit coastline. 14:40:24 DEBUG opendrift:733: No elements hit seafloor. 14:40:24 DEBUG opendrift:1695: No elements to deactivate 14:40:24 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:24 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247735 m/s - 0.248526 m/s) 14:40:24 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:24 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:24 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:24 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:24 DEBUG opendrift:2173: Cleaning up 14:40:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:24 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:24 DEBUG opendrift:643: No elements hit coastline. 14:40:24 DEBUG opendrift:2256: Updating minval and maxval 14:40:24 DEBUG opendrift:2336: Writing to file 14:40:24 DEBUG opendrift:1695: No elements to deactivate 14:40:24 DEBUG opendrift:100: Changed mode from Mode.Run to Mode.Result 14:40:24 DEBUG opendrift.models.oceandrift:116: No machine learning correction available. 14:40:24 DEBUG opendrift.config:168: Adding 50 config items from environment 14:40:24 DEBUG opendrift.config:168: Adding 5 config items from environment 14:40:24 DEBUG opendrift.config:168: Adding 18 config items from __init__ 14:40:24 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails 14:40:24 DEBUG opendrift.config:168: Adding 5 config items from __init__ 14:40:24 INFO opendrift:509: OpenDriftSimulation initialised (version 1.13.0 / v1.13.0-75-gd4c13d2) 14:40:24 DEBUG opendrift.config:168: Adding 15 config items from oceandrift 14:40:24 DEBUG opendrift.config:178: Overwriting config item seed:z 14:40:24 DEBUG opendrift.readers.reader_lazy:37: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:24 DEBUG opendrift.models.basemodel.environment:316: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:24 INFO opendrift.models.basemodel.environment:206: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster... 14:40:24 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:40:24 DEBUG opendrift.models.basemodel.environment:316: Added reader global_landmask 14:40:24 INFO opendrift.models.basemodel.environment:233: Fallback values will be used for the following variables which have no readers: 14:40:24 INFO opendrift.models.basemodel.environment:236: x_sea_water_velocity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: y_sea_water_velocity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_height: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: x_wind: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: y_wind: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: upward_sea_water_velocity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: ocean_vertical_diffusivity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_significant_height: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_x_velocity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_y_velocity: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_to_direction: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_significant_height: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_to_direction: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_mean_period: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_significant_height: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: surface_downward_x_stress: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: surface_downward_y_stress: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: turbulent_kinetic_energy: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: turbulent_generic_length_scale: 0.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: ocean_mixed_layer_thickness: 50.000000 14:40:24 INFO opendrift.models.basemodel.environment:236: sea_floor_depth_below_sea_level: 10000.000000 14:40:24 DEBUG opendrift:100: Changed mode from Mode.Config to Mode.Ready 14:40:24 DEBUG opendrift:100: Changed mode from Mode.Ready to Mode.Run 14:40:24 DEBUG opendrift:1763: ------------------------------------------------------ Software and hardware: OpenDrift version 1.13.0 Platform: Linux, 5.15.0-1077-aws 68.56757354736328 GB memory 36 processors (x86_64) NumPy version 1.26.4 SciPy version 1.15.2 Matplotlib version 3.9.1 NetCDF4 version 1.6.1 Xarray version 2025.1.2 ADIOS (adios_db) version 1.2.5 Copernicusmarine version 2.0.1 Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0] ------------------------------------------------------ 14:40:24 DEBUG opendrift:1777: No output file is specified, neglecting export_buffer_length 14:40:24 DEBUG opendrift:1895: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2025-03-10 00:00:00 to 2025-03-12 23:00:00) 14:40:24 DEBUG opendrift.models.basemodel.environment:168: Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556] 14:40:24 DEBUG opendrift.models.basemodel.environment:168: Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556] 14:40:24 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for global_landmask 14:40:24 DEBUG opendrift:1982: Initial self.result, size Frozen({'trajectory': 1000, 'time': 72}) 14:40:24 INFO opendrift:919: Using existing reader for land_binary_mask 14:40:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:24 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:24 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:24 INFO opendrift:930: All points are in ocean 14:40:24 DEBUG opendrift:874: to be seeded: 1000, already seeded 0 14:40:24 DEBUG opendrift:892: Released 1000 new elements. 14:40:24 DEBUG opendrift:2055: ====================================================================== 14:40:24 INFO opendrift:2056: 2025-03-10 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated) 14:40:24 DEBUG opendrift:2062: 0 elements scheduled. 14:40:24 DEBUG opendrift:2064: ====================================================================== 14:40:24 DEBUG opendrift:2075: 59.99731 <- latitude -> 60.002846 14:40:24 DEBUG opendrift:2080: 4.4945407 <- longitude -> 4.504945 14:40:24 DEBUG opendrift:2083: z = 0.0 14:40:24 DEBUG opendrift:2086: --------------------------------- 14:40:24 DEBUG opendrift.models.basemodel.environment:569: Variables not covered by any reader: ['ocean_mixed_layer_thickness', 'turbulent_generic_length_scale', 'upward_sea_water_velocity', 'y_sea_water_velocity', 'sea_surface_wave_significant_height', 'x_sea_water_velocity', 'sea_floor_depth_below_sea_level', 'surface_downward_y_stress', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_height', 'turbulent_kinetic_energy', 'y_wind', 'surface_downward_x_stress', 'ocean_vertical_diffusivity', 'x_wind', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment'] 14:40:24 DEBUG opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:24 DEBUG opendrift.readers:136: Testing reader 14:40:24 INFO opendrift.readers:58: Opening file with xr.open_dataset 14:40:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables. 14:40:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:143: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'} 14:40:27 INFO opendrift.readers.reader_netCDF_CF_generic:338: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'} 14:40:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:374: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar'] 14:40:27 DEBUG opendrift.readers.basereader.variables:612: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00 14:40:27 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:40:27 DEBUG opendrift.readers.basereader.variables:567: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed 14:40:27 DEBUG opendrift.readers.basereader.variables:567: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed 14:40:27 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation 14:40:27 DEBUG opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00 14:40:27 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:27 DEBUG opendrift.readers.reader_lazy:71: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:27 DEBUG opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00 14:40:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 00:00:00 (before) 2025-03-10 01:00:00 (after) 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:29 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-03-10 00:00:00) 14:40:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 00:00:00) in space (linearNDFast) 14:40:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:29 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees. 14:40:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees. 14:40:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:29 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:29 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:29 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:29 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.145776 (min) 0.159455 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.302726 (min) 0.312355 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.742931 (min) -0.740033 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.730556 (min) 0.78324 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: y_wind: 6.12017 (min) 6.17185 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.20885e-07 (min) -2.69704e-07 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:29 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:29 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.936519, mean: 0.943858, max: 0.950206 14:40:29 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:29 DEBUG opendrift.models.physics_methods:905: min: 5.272152, mean: 5.292767, max: 5.310538 14:40:29 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.272152, mean: 5.292767, max: 5.310538 14:40:29 DEBUG opendrift:643: No elements hit coastline. 14:40:29 DEBUG opendrift:733: No elements hit seafloor. 14:40:29 DEBUG opendrift:1695: No elements to deactivate 14:40:29 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:29 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.123402 m/s - 0.124300 m/s) 14:40:29 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:29 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:29 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:29 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:29 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:29 DEBUG opendrift:733: No elements hit seafloor. 14:40:29 DEBUG opendrift:2055: ====================================================================== 14:40:29 INFO opendrift:2056: 2025-03-10 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated) 14:40:29 DEBUG opendrift:2062: 0 elements scheduled. 14:40:29 DEBUG opendrift:2064: ====================================================================== 14:40:29 DEBUG opendrift:2075: 60.01130122002601 <- latitude -> 60.016666256902695 14:40:29 DEBUG opendrift:2080: 4.505139992961953 <- longitude -> 4.515982508406133 14:40:29 DEBUG opendrift:2083: z = 0.0 14:40:29 DEBUG opendrift:2086: --------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:29 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:29 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 01:00:00 (before) 2025-03-10 02:00:00 (after) 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:30 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-03-10 01:00:00) 14:40:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 01:00:00) in space (linearNDFast) 14:40:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:30 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4948709154515 and -65.48402841392604 degrees. 14:40:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4948709154515 and -65.48402841392604 degrees. 14:40:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:30 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:30 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:30 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:30 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.140122 (min) 0.153336 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.343733 (min) 0.349453 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.724446 (min) -0.720932 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.544049 (min) 0.567883 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.98197 (min) 6.02685 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.5006e-05 (min) 1.5405e-05 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.98 (min) 299.205 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:30 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:30 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.888213, mean: 0.894787, max: 0.901007 14:40:30 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:30 DEBUG opendrift.models.physics_methods:905: min: 5.134382, mean: 5.153344, max: 5.171227 14:40:30 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.134382, mean: 5.153344, max: 5.171227 14:40:30 DEBUG opendrift:643: No elements hit coastline. 14:40:30 DEBUG opendrift:733: No elements hit seafloor. 14:40:30 DEBUG opendrift:1695: No elements to deactivate 14:40:30 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:30 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120177 m/s - 0.121039 m/s) 14:40:30 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:30 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:30 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:30 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:30 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:30 DEBUG opendrift:733: No elements hit seafloor. 14:40:30 DEBUG opendrift:2055: ====================================================================== 14:40:30 INFO opendrift:2056: 2025-03-10 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated) 14:40:30 DEBUG opendrift:2062: 0 elements scheduled. 14:40:30 DEBUG opendrift:2064: ====================================================================== 14:40:30 DEBUG opendrift:2075: 60.02644772511189 <- latitude -> 60.03167350495067 14:40:30 DEBUG opendrift:2080: 4.5151591730768645 <- longitude -> 4.526298754561818 14:40:30 DEBUG opendrift:2083: z = 0.0 14:40:30 DEBUG opendrift:2086: --------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:30 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:30 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 02:00:00 (before) 2025-03-10 03:00:00 (after) 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:31 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 02:00:00) 14:40:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 02:00:00) in space (linearNDFast) 14:40:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:31 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:31 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48485173929662 and -65.47371215403605 degrees. 14:40:31 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48485173929662 and -65.47371215403605 degrees. 14:40:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:31 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:31 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:31 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:31 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.146653 (min) 0.158335 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.380438 (min) 0.389171 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.632144 (min) -0.628571 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.27585 (min) -0.234346 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.99805 (min) 6.03721 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.92965e-05 (min) 2.20907e-05 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.358 (min) 299.549 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:31 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:31 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.886525, mean: 0.892732, max: 0.898201 14:40:31 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:31 DEBUG opendrift.models.physics_methods:905: min: 5.129501, mean: 5.147424, max: 5.163169 14:40:31 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.129501, mean: 5.147424, max: 5.163169 14:40:31 DEBUG opendrift:643: No elements hit coastline. 14:40:31 DEBUG opendrift:733: No elements hit seafloor. 14:40:31 DEBUG opendrift:1695: No elements to deactivate 14:40:31 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:31 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120063 m/s - 0.120851 m/s) 14:40:31 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:31 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:31 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:31 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:31 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:31 DEBUG opendrift:733: No elements hit seafloor. 14:40:31 DEBUG opendrift:2055: ====================================================================== 14:40:31 INFO opendrift:2056: 2025-03-10 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated) 14:40:31 DEBUG opendrift:2062: 0 elements scheduled. 14:40:31 DEBUG opendrift:2064: ====================================================================== 14:40:31 DEBUG opendrift:2075: 60.04288520936434 <- latitude -> 60.047896551192736 14:40:31 DEBUG opendrift:2080: 4.52467765444129 <- longitude -> 4.535791050689333 14:40:31 DEBUG opendrift:2083: z = 0.0 14:40:31 DEBUG opendrift:2086: --------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:31 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:31 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:31 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:31 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:31 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:31 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:31 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 03:00:00 (before) 2025-03-10 04:00:00 (after) 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:32 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x2) for time before (2025-03-10 03:00:00) 14:40:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 03:00:00) in space (linearNDFast) 14:40:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:32 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47533324550474 and -65.46421985897445 degrees. 14:40:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47533324550474 and -65.46421985897445 degrees. 14:40:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:32 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:32 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:32 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:32 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.146589 (min) 0.156651 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.418239 (min) 0.4273 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.548911 (min) -0.545176 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.559598 (min) -0.500631 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.94506 (min) 5.97048 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.63387e-05 (min) 2.6901e-05 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.529 (min) 299.717 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:32 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:32 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.877158, mean: 0.880024, max: 0.883071 14:40:32 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:32 DEBUG opendrift.models.physics_methods:905: min: 5.102331, mean: 5.110657, max: 5.119499 14:40:32 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.102331, mean: 5.110657, max: 5.119499 14:40:32 DEBUG opendrift:643: No elements hit coastline. 14:40:32 DEBUG opendrift:733: No elements hit seafloor. 14:40:32 DEBUG opendrift:1695: No elements to deactivate 14:40:32 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:32 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119427 m/s - 0.119829 m/s) 14:40:32 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:32 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:32 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:32 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:32 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:32 DEBUG opendrift:733: No elements hit seafloor. 14:40:32 DEBUG opendrift:2055: ====================================================================== 14:40:32 INFO opendrift:2056: 2025-03-10 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated) 14:40:32 DEBUG opendrift:2062: 0 elements scheduled. 14:40:32 DEBUG opendrift:2064: ====================================================================== 14:40:32 DEBUG opendrift:2075: 60.06045627862875 <- latitude -> 60.065351304336914 14:40:32 DEBUG opendrift:2080: 4.5337210123497504 <- longitude -> 4.544991525418654 14:40:32 DEBUG opendrift:2083: z = 0.0 14:40:32 DEBUG opendrift:2086: --------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:32 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 04:00:00 (before) 2025-03-10 05:00:00 (after) 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:34 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-03-10 04:00:00) 14:40:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 04:00:00) in space (linearNDFast) 14:40:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:34 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46628989333101 and -65.45501937279542 degrees. 14:40:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46628989333101 and -65.45501937279542 degrees. 14:40:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:34 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.162717 (min) 0.178505 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.439813 (min) 0.45007 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.451434 (min) -0.448455 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.718707 (min) -0.688769 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 6.10196 (min) 6.12425 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.96872e-05 (min) 2.99051e-05 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.643 (min) 299.848 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:34 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.928489, mean: 0.931716, max: 0.934692 14:40:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:34 DEBUG opendrift.models.physics_methods:905: min: 5.249500, mean: 5.258614, max: 5.267005 14:40:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.249500, mean: 5.258614, max: 5.267005 14:40:34 DEBUG opendrift:643: No elements hit coastline. 14:40:34 DEBUG opendrift:733: No elements hit seafloor. 14:40:34 DEBUG opendrift:1695: No elements to deactivate 14:40:34 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:34 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.122871 m/s - 0.123281 m/s) 14:40:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:34 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:34 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:34 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:34 DEBUG opendrift:733: No elements hit seafloor. 14:40:34 DEBUG opendrift:2055: ====================================================================== 14:40:34 INFO opendrift:2056: 2025-03-10 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated) 14:40:34 DEBUG opendrift:2062: 0 elements scheduled. 14:40:34 DEBUG opendrift:2064: ====================================================================== 14:40:34 DEBUG opendrift:2075: 60.078934733638455 <- latitude -> 60.0835759279926 14:40:34 DEBUG opendrift:2080: 4.5434916025344805 <- longitude -> 4.555594743581466 14:40:34 DEBUG opendrift:2083: z = 0.0 14:40:34 DEBUG opendrift:2086: --------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:34 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 05:00:00 (before) 2025-03-10 06:00:00 (after) 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:35 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 05:00:00) 14:40:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 05:00:00) in space (linearNDFast) 14:40:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:35 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4565192945231 and -65.4444161428176 degrees. 14:40:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4565192945231 and -65.4444161428176 degrees. 14:40:35 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:35 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:35 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:35 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:35 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.181551 (min) 0.198185 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.390993 (min) 0.413129 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.320973 (min) -0.318324 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.38355 (min) -1.30869 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: y_wind: 5.47633 (min) 5.52594 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.41169e-05 (min) 3.43215e-05 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.833 (min) 300.024 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:35 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:35 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.784820, mean: 0.788735, max: 0.793358 14:40:35 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:35 DEBUG opendrift.models.physics_methods:905: min: 4.826304, mean: 4.838324, max: 4.852485 14:40:35 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.826304, mean: 4.838324, max: 4.852485 14:40:35 DEBUG opendrift:643: No elements hit coastline. 14:40:35 DEBUG opendrift:733: No elements hit seafloor. 14:40:35 DEBUG opendrift:1695: No elements to deactivate 14:40:35 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:35 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112966 m/s - 0.113579 m/s) 14:40:35 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:35 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:35 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:35 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:35 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:35 DEBUG opendrift:733: No elements hit seafloor. 14:40:35 DEBUG opendrift:2055: ====================================================================== 14:40:35 INFO opendrift:2056: 2025-03-10 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated) 14:40:35 DEBUG opendrift:2062: 0 elements scheduled. 14:40:35 DEBUG opendrift:2064: ====================================================================== 14:40:35 DEBUG opendrift:2075: 60.09576790631006 <- latitude -> 60.099757412055254 14:40:35 DEBUG opendrift:2080: 4.553636371866405 <- longitude -> 4.566287094947896 14:40:35 DEBUG opendrift:2083: z = 0.0 14:40:35 DEBUG opendrift:2086: --------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:35 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:35 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:35 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:35 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:35 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:35 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:35 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:35 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:35 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:35 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:35 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 06:00:00 (before) 2025-03-10 07:00:00 (after) 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:36 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x22x2) for time before (2025-03-10 06:00:00) 14:40:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 06:00:00) in space (linearNDFast) 14:40:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:36 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:36 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4463745112966 and -65.43372379117338 degrees. 14:40:36 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4463745112966 and -65.43372379117338 degrees. 14:40:36 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:36 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:36 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:36 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:36 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.153591 (min) 0.184194 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.249141 (min) 0.275119 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.204528 (min) -0.201612 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.92514 (min) -1.24178 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.56088 (min) -8.59664 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.68663e-05 (min) 2.69753e-05 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.935 (min) 299.993 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:36 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:36 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.855928, mean: 2.102514, max: 2.339869 14:40:36 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:36 DEBUG opendrift.models.physics_methods:905: min: 7.421815, mean: 7.898231, max: 8.333460 14:40:36 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 7.421815, mean: 7.898231, max: 8.333460 14:40:36 DEBUG opendrift:643: No elements hit coastline. 14:40:36 DEBUG opendrift:733: No elements hit seafloor. 14:40:36 DEBUG opendrift:1695: No elements to deactivate 14:40:36 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:36 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173717 m/s - 0.195055 m/s) 14:40:36 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:36 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:36 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:36 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:36 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:36 DEBUG opendrift:733: No elements hit seafloor. 14:40:36 DEBUG opendrift:2055: ====================================================================== 14:40:36 INFO opendrift:2056: 2025-03-10 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated) 14:40:36 DEBUG opendrift:2062: 0 elements scheduled. 14:40:36 DEBUG opendrift:2064: ====================================================================== 14:40:36 DEBUG opendrift:2075: 60.09856916091069 <- latitude -> 60.101902612745576 14:40:36 DEBUG opendrift:2080: 4.561366570896408 <- longitude -> 4.57606444696679 14:40:36 DEBUG opendrift:2083: z = 0.0 14:40:36 DEBUG opendrift:2086: --------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:36 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:36 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:36 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:36 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:36 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:36 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:36 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:36 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:36 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:36 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:36 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:36 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 07:00:00 (before) 2025-03-10 08:00:00 (after) 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:37 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 07:00:00) 14:40:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 07:00:00) in space (linearNDFast) 14:40:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:37 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:37 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43864431858036 and -65.42394644038109 degrees. 14:40:37 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43864431858036 and -65.42394644038109 degrees. 14:40:37 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:37 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:37 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:37 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:37 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.161473 (min) 0.185694 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.171686 (min) 0.192226 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.137788 (min) -0.135195 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.25801 (min) -2.16075 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.39976 (min) -9.3031 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.40634e-06 (min) 5.56518e-06 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.873 (min) 299.972 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:37 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:37 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.243928, mean: 2.270483, max: 2.298971 14:40:37 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:37 DEBUG opendrift.models.physics_methods:905: min: 8.160824, mean: 8.208951, max: 8.260310 14:40:37 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.160824, mean: 8.208951, max: 8.260310 14:40:37 DEBUG opendrift:643: No elements hit coastline. 14:40:37 DEBUG opendrift:733: No elements hit seafloor. 14:40:37 DEBUG opendrift:1695: No elements to deactivate 14:40:37 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:37 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191015 m/s - 0.193343 m/s) 14:40:37 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:37 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:37 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:37 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:37 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:37 DEBUG opendrift:733: No elements hit seafloor. 14:40:37 DEBUG opendrift:2055: ====================================================================== 14:40:37 INFO opendrift:2056: 2025-03-10 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated) 14:40:37 DEBUG opendrift:2062: 0 elements scheduled. 14:40:37 DEBUG opendrift:2064: ====================================================================== 14:40:37 DEBUG opendrift:2075: 60.0984840314032 <- latitude -> 60.10168874906708 14:40:37 DEBUG opendrift:2080: 4.569018615237455 <- longitude -> 4.584981229114374 14:40:37 DEBUG opendrift:2083: z = 0.0 14:40:37 DEBUG opendrift:2086: --------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:37 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:37 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:37 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:37 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:37 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:37 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:37 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:37 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:37 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:37 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:37 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 08:00:00 (before) 2025-03-10 09:00:00 (after) 14:40:38 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:38 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 08:00:00) 14:40:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 08:00:00) in space (linearNDFast) 14:40:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:38 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43099227069096 and -65.41502965875935 degrees. 14:40:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43099227069096 and -65.41502965875935 degrees. 14:40:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:38 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:38 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:38 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:38 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:38 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:38 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.167224 (min) 0.189219 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.13649 (min) 0.146292 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.157283 (min) -0.15507 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.8365 (min) -1.73484 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.64257 (min) -9.53939 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.86289e-05 (min) -1.85649e-05 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.792 (min) 299.975 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:38 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:38 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.312638, mean: 2.340298, max: 2.370255 14:40:38 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:38 DEBUG opendrift.models.physics_methods:905: min: 8.284826, mean: 8.334205, max: 8.387396 14:40:38 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.284826, mean: 8.334205, max: 8.387396 14:40:38 DEBUG opendrift:643: No elements hit coastline. 14:40:38 DEBUG opendrift:733: No elements hit seafloor. 14:40:39 DEBUG opendrift:1695: No elements to deactivate 14:40:39 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:39 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.193917 m/s - 0.196318 m/s) 14:40:39 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:39 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:39 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:39 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:39 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:39 DEBUG opendrift:733: No elements hit seafloor. 14:40:39 DEBUG opendrift:2055: ====================================================================== 14:40:39 INFO opendrift:2056: 2025-03-10 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated) 14:40:39 DEBUG opendrift:2062: 0 elements scheduled. 14:40:39 DEBUG opendrift:2064: ====================================================================== 14:40:39 DEBUG opendrift:2075: 60.096830352468245 <- latitude -> 60.10008141047601 14:40:39 DEBUG opendrift:2080: 4.577545991945498 <- longitude -> 4.594868161205128 14:40:39 DEBUG opendrift:2083: z = 0.0 14:40:39 DEBUG opendrift:2086: --------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:39 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:39 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:39 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:39 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:39 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:39 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:39 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:39 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:39 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:39 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:39 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 09:00:00 (before) 2025-03-10 10:00:00 (after) 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:40 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-03-10 09:00:00) 14:40:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 09:00:00) in space (linearNDFast) 14:40:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:40 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:40 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4224648970741 and -65.4051427190661 degrees. 14:40:40 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.4224648970741 and -65.4051427190661 degrees. 14:40:40 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:40 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:40 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:40 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:40 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.159607 (min) 0.174858 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0901975 (min) 0.0945717 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.28439 (min) -0.282031 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.00848 (min) -0.976418 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.8674 (min) -11.733 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.58548e-05 (min) -4.57736e-05 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.705 (min) 299.96 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:40 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:40 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.410088, mean: 3.452260, max: 3.489539 14:40:40 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:40 DEBUG opendrift.models.physics_methods:905: min: 10.060334, mean: 10.122332, max: 10.176855 14:40:40 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.060334, mean: 10.122332, max: 10.176855 14:40:40 DEBUG opendrift:643: No elements hit coastline. 14:40:40 DEBUG opendrift:733: No elements hit seafloor. 14:40:40 DEBUG opendrift:1695: No elements to deactivate 14:40:40 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:40 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.235475 m/s - 0.238203 m/s) 14:40:40 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:40 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:40 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:40 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:40 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:40 DEBUG opendrift:733: No elements hit seafloor. 14:40:40 DEBUG opendrift:2055: ====================================================================== 14:40:40 INFO opendrift:2056: 2025-03-10 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated) 14:40:40 DEBUG opendrift:2062: 0 elements scheduled. 14:40:40 DEBUG opendrift:2064: ====================================================================== 14:40:40 DEBUG opendrift:2075: 60.09211494894119 <- latitude -> 60.09551281439842 14:40:40 DEBUG opendrift:2080: 4.586569605964305 <- longitude -> 4.604920830528215 14:40:40 DEBUG opendrift:2083: z = 0.0 14:40:40 DEBUG opendrift:2086: --------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:40 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:40 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:40 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:40 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:40 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:40 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:40 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:40 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:40 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:40 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:40 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:40 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 10:00:00 (before) 2025-03-10 11:00:00 (after) 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:41 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 10:00:00) 14:40:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 10:00:00) in space (linearNDFast) 14:40:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:41 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41344128125039 and -65.39509005069962 degrees. 14:40:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41344128125039 and -65.39509005069962 degrees. 14:40:41 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:41 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:41 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:41 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:41 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.132492 (min) 0.152571 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0503705 (min) 0.054269 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.471511 (min) -0.469245 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.706125 (min) -0.658058 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.068 (min) -12.935 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.40139e-05 (min) -5.39932e-05 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.709 (min) 299.994 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:41 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:41 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.126610, mean: 4.172598, max: 4.213275 14:40:41 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:41 DEBUG opendrift.models.physics_methods:905: min: 11.066908, mean: 11.128387, max: 11.182515 14:40:41 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.066908, mean: 11.128387, max: 11.182515 14:40:41 DEBUG opendrift:643: No elements hit coastline. 14:40:41 DEBUG opendrift:733: No elements hit seafloor. 14:40:41 DEBUG opendrift:1695: No elements to deactivate 14:40:41 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:41 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259035 m/s - 0.261741 m/s) 14:40:41 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:41 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:41 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:41 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:41 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:41 DEBUG opendrift:733: No elements hit seafloor. 14:40:41 DEBUG opendrift:2055: ====================================================================== 14:40:41 INFO opendrift:2056: 2025-03-10 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated) 14:40:41 DEBUG opendrift:2062: 0 elements scheduled. 14:40:41 DEBUG opendrift:2064: ====================================================================== 14:40:41 DEBUG opendrift:2075: 60.085414852557165 <- latitude -> 60.08881926700428 14:40:41 DEBUG opendrift:2080: 4.594228420319947 <- longitude -> 4.613940992020028 14:40:41 DEBUG opendrift:2083: z = 0.0 14:40:41 DEBUG opendrift:2086: --------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:41 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:41 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:41 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:41 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:41 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:41 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:41 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:41 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:41 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:41 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:41 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:41 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 11:00:00 (before) 2025-03-10 12:00:00 (after) 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:42 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-03-10 11:00:00) 14:40:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 11:00:00) in space (linearNDFast) 14:40:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:42 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40578246895006 and -65.38606989367588 degrees. 14:40:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40578246895006 and -65.38606989367588 degrees. 14:40:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:42 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:42 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:42 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:42 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0944622 (min) 0.110087 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0257684 (min) 0.0330985 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.65026 (min) -0.647593 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.41518 (min) -1.39686 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.3921 (min) -13.1932 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.16763e-05 (min) -4.15725e-05 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.841 (min) 300.102 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:42 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:42 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.329996, mean: 4.400005, max: 4.461233 14:40:42 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:42 DEBUG opendrift.models.physics_methods:905: min: 11.336351, mean: 11.427594, max: 11.506865 14:40:42 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.336351, mean: 11.427594, max: 11.506865 14:40:42 DEBUG opendrift:643: No elements hit coastline. 14:40:42 DEBUG opendrift:733: No elements hit seafloor. 14:40:42 DEBUG opendrift:1695: No elements to deactivate 14:40:42 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:42 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.265342 m/s - 0.269333 m/s) 14:40:42 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:42 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:42 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:42 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:42 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:42 DEBUG opendrift:733: No elements hit seafloor. 14:40:42 DEBUG opendrift:2055: ====================================================================== 14:40:42 INFO opendrift:2056: 2025-03-10 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated) 14:40:42 DEBUG opendrift:2062: 0 elements scheduled. 14:40:42 DEBUG opendrift:2064: ====================================================================== 14:40:42 DEBUG opendrift:2075: 60.07779654400697 <- latitude -> 60.08116848559993 14:40:42 DEBUG opendrift:2080: 4.598515937761386 <- longitude -> 4.619175250901291 14:40:42 DEBUG opendrift:2083: z = 0.0 14:40:42 DEBUG opendrift:2086: --------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:42 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:42 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:42 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 12:00:00 (before) 2025-03-10 13:00:00 (after) 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:43 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-10 12:00:00) 14:40:43 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 12:00:00) in space (linearNDFast) 14:40:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:43 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40149494604745 and -65.38083564069785 degrees. 14:40:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40149494604745 and -65.38083564069785 degrees. 14:40:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:43 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:43 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:43 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:43 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0167873 (min) 0.0277275 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.041801 (min) 0.0463206 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.756281 (min) -0.753464 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.914185 (min) -0.840686 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.2326 (min) -13.0491 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.85715e-05 (min) -1.82805e-05 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.04 (min) 300.226 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:43 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:43 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.206400, mean: 4.267833, max: 4.328085 14:40:43 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:43 DEBUG opendrift.models.physics_methods:905: min: 11.173387, mean: 11.254650, max: 11.333850 14:40:43 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.173387, mean: 11.254650, max: 11.333850 14:40:43 DEBUG opendrift:643: No elements hit coastline. 14:40:43 DEBUG opendrift:733: No elements hit seafloor. 14:40:43 DEBUG opendrift:1695: No elements to deactivate 14:40:43 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:43 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.261528 m/s - 0.265284 m/s) 14:40:43 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:43 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:43 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:43 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:43 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:43 DEBUG opendrift:733: No elements hit seafloor. 14:40:43 DEBUG opendrift:2055: ====================================================================== 14:40:43 INFO opendrift:2056: 2025-03-10 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated) 14:40:43 DEBUG opendrift:2062: 0 elements scheduled. 14:40:43 DEBUG opendrift:2064: ====================================================================== 14:40:43 DEBUG opendrift:2075: 60.07073193059094 <- latitude -> 60.074128685683625 14:40:43 DEBUG opendrift:2080: 4.5986854916507935 <- longitude -> 4.61961387702474 14:40:43 DEBUG opendrift:2083: z = 0.0 14:40:43 DEBUG opendrift:2086: --------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:43 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:43 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:43 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 13:00:00 (before) 2025-03-10 14:00:00 (after) 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:45 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 13:00:00) 14:40:45 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 13:00:00) in space (linearNDFast) 14:40:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:45 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40132539748753 and -65.3803970106242 degrees. 14:40:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40132539748753 and -65.3803970106242 degrees. 14:40:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:45 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:45 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:45 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:45 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0617215 (min) -0.0523036 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0758431 (min) 0.0811858 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.773526 (min) -0.769699 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.212897 (min) 0.33107 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.253 (min) -14.1651 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.77714e-06 (min) 5.93684e-06 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.225 (min) 300.324 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:45 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:45 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.938691, mean: 4.971391, max: 4.998523 14:40:45 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:45 DEBUG opendrift.models.physics_methods:905: min: 12.106971, mean: 12.146979, max: 12.180087 14:40:45 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.106971, mean: 12.146979, max: 12.180087 14:40:45 DEBUG opendrift:643: No elements hit coastline. 14:40:45 DEBUG opendrift:733: No elements hit seafloor. 14:40:45 DEBUG opendrift:1695: No elements to deactivate 14:40:45 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:45 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283379 m/s - 0.285091 m/s) 14:40:45 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:45 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:45 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:45 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:45 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:45 DEBUG opendrift:733: No elements hit seafloor. 14:40:45 DEBUG opendrift:2055: ====================================================================== 14:40:45 INFO opendrift:2056: 2025-03-10 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated) 14:40:45 DEBUG opendrift:2062: 0 elements scheduled. 14:40:45 DEBUG opendrift:2064: ====================================================================== 14:40:45 DEBUG opendrift:2075: 60.06411657744246 <- latitude -> 60.06745360863835 14:40:45 DEBUG opendrift:2080: 4.595183242654973 <- longitude -> 4.616306764415042 14:40:45 DEBUG opendrift:2083: z = 0.0 14:40:45 DEBUG opendrift:2086: --------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:45 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:45 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 14:00:00 (before) 2025-03-10 15:00:00 (after) 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:46 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 14:00:00) 14:40:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 14:00:00) in space (linearNDFast) 14:40:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:46 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40482765858664 and -65.38370411895397 degrees. 14:40:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.40482765858664 and -65.38370411895397 degrees. 14:40:46 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:46 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:46 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:46 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:46 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.130347 (min) -0.120926 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.135161 (min) 0.137331 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.718752 (min) -0.714041 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.243415 (min) 0.356986 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.5871 (min) -14.5278 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.0049e-05 (min) 2.03121e-05 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.355 (min) 300.393 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:46 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:46 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.195167, mean: 5.214376, max: 5.235929 14:40:46 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:46 DEBUG opendrift.models.physics_methods:905: min: 12.417361, mean: 12.440295, max: 12.465981 14:40:46 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.417361, mean: 12.440295, max: 12.465981 14:40:46 DEBUG opendrift:643: No elements hit coastline. 14:40:46 DEBUG opendrift:733: No elements hit seafloor. 14:40:46 DEBUG opendrift:1695: No elements to deactivate 14:40:46 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:46 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.290645 m/s - 0.291783 m/s) 14:40:46 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:46 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:46 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:46 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:46 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:46 DEBUG opendrift:733: No elements hit seafloor. 14:40:46 DEBUG opendrift:2055: ====================================================================== 14:40:46 INFO opendrift:2056: 2025-03-10 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated) 14:40:46 DEBUG opendrift:2062: 0 elements scheduled. 14:40:46 DEBUG opendrift:2064: ====================================================================== 14:40:46 DEBUG opendrift:2075: 60.05911662701658 <- latitude -> 60.06244303412133 14:40:46 DEBUG opendrift:2080: 4.587226267245413 <- longitude -> 4.608831132468646 14:40:46 DEBUG opendrift:2083: z = 0.0 14:40:46 DEBUG opendrift:2086: --------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:46 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:46 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:46 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:46 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:46 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:46 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:46 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:46 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:46 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:46 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:46 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 15:00:00 (before) 2025-03-10 16:00:00 (after) 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 15:00:00) 14:40:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 15:00:00) in space (linearNDFast) 14:40:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41278463735583 and -65.39117976412145 degrees. 14:40:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.41278463735583 and -65.39117976412145 degrees. 14:40:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:48 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:48 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.16301 (min) -0.14273 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20409 (min) 0.211779 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.627261 (min) -0.622199 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.636425 (min) 0.694938 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.4275 (min) -14.3741 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.97261e-05 (min) 2.99617e-05 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.318 (min) 300.415 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.094602, mean: 5.110942, max: 5.130549 14:40:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:48 DEBUG opendrift.models.physics_methods:905: min: 12.296592, mean: 12.316293, max: 12.339897 14:40:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.296592, mean: 12.316293, max: 12.339897 14:40:48 DEBUG opendrift:643: No elements hit coastline. 14:40:48 DEBUG opendrift:733: No elements hit seafloor. 14:40:48 DEBUG opendrift:1695: No elements to deactivate 14:40:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.287818 m/s - 0.288831 m/s) 14:40:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:48 DEBUG opendrift:733: No elements hit seafloor. 14:40:48 DEBUG opendrift:2055: ====================================================================== 14:40:48 INFO opendrift:2056: 2025-03-10 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated) 14:40:48 DEBUG opendrift:2062: 0 elements scheduled. 14:40:48 DEBUG opendrift:2064: ====================================================================== 14:40:48 DEBUG opendrift:2075: 60.05640419943248 <- latitude -> 60.059945492283234 14:40:48 DEBUG opendrift:2080: 4.577510984778576 <- longitude -> 4.600501906330896 14:40:48 DEBUG opendrift:2083: z = 0.0 14:40:48 DEBUG opendrift:2086: --------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 16:00:00 (before) 2025-03-10 17:00:00 (after) 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:49 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-10 16:00:00) 14:40:49 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 16:00:00) in space (linearNDFast) 14:40:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:49 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.42249990562543 and -65.39950898467899 degrees. 14:40:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.42249990562543 and -65.39950898467899 degrees. 14:40:49 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:49 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:49 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:49 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:49 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.171767 (min) -0.145984 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.240499 (min) 0.255849 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.514529 (min) -0.508291 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.72005 (min) 0.791524 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.9719 (min) -14.931 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.39889e-05 (min) 3.4185e-05 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.238 (min) 300.398 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:49 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:49 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.499546, mean: 5.512622, max: 5.527030 14:40:49 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:49 DEBUG opendrift.models.physics_methods:905: min: 12.775943, mean: 12.791122, max: 12.807828 14:40:49 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.775943, mean: 12.791122, max: 12.807828 14:40:49 DEBUG opendrift:643: No elements hit coastline. 14:40:49 DEBUG opendrift:733: No elements hit seafloor. 14:40:49 DEBUG opendrift:1695: No elements to deactivate 14:40:49 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:49 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.299038 m/s - 0.299784 m/s) 14:40:49 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:49 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:49 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:49 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:49 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:49 DEBUG opendrift:733: No elements hit seafloor. 14:40:49 DEBUG opendrift:2055: ====================================================================== 14:40:49 INFO opendrift:2056: 2025-03-10 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated) 14:40:49 DEBUG opendrift:2062: 0 elements scheduled. 14:40:49 DEBUG opendrift:2064: ====================================================================== 14:40:49 DEBUG opendrift:2075: 60.05453096325243 <- latitude -> 60.05848780420273 14:40:49 DEBUG opendrift:2080: 4.567338178938099 <- longitude -> 4.592087414936068 14:40:49 DEBUG opendrift:2083: z = 0.0 14:40:49 DEBUG opendrift:2086: --------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:49 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:49 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:49 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:49 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:49 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:49 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:49 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:49 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:49 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:49 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:49 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:49 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 17:00:00 (before) 2025-03-10 18:00:00 (after) 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:50 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 17:00:00) 14:40:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 17:00:00) in space (linearNDFast) 14:40:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:50 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43267271061289 and -65.40792347681838 degrees. 14:40:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.43267271061289 and -65.40792347681838 degrees. 14:40:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:50 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:50 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:50 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:50 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.156634 (min) -0.139482 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.242497 (min) 0.253534 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.382185 (min) -0.375065 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.469904 (min) 0.489332 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: y_wind: -15.5667 (min) -15.4996 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.01793e-05 (min) 4.02725e-05 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.129 (min) 300.348 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:50 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:50 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.915283, mean: 5.939821, max: 5.967046 14:40:50 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:50 DEBUG opendrift.models.physics_methods:905: min: 13.250044, mean: 13.277495, max: 13.307892 14:40:50 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 13.250044, mean: 13.277495, max: 13.307892 14:40:50 DEBUG opendrift:643: No elements hit coastline. 14:40:50 DEBUG opendrift:733: No elements hit seafloor. 14:40:50 DEBUG opendrift:1695: No elements to deactivate 14:40:50 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:50 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.310135 m/s - 0.311489 m/s) 14:40:50 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:50 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:50 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:50 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:50 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:50 DEBUG opendrift:733: No elements hit seafloor. 14:40:50 DEBUG opendrift:2055: ====================================================================== 14:40:50 INFO opendrift:2056: 2025-03-10 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated) 14:40:50 DEBUG opendrift:2062: 0 elements scheduled. 14:40:50 DEBUG opendrift:2064: ====================================================================== 14:40:50 DEBUG opendrift:2075: 60.05234041368983 <- latitude -> 60.05661616203741 14:40:50 DEBUG opendrift:2080: 4.557845921283005 <- longitude -> 4.583677910786553 14:40:50 DEBUG opendrift:2083: z = 0.0 14:40:50 DEBUG opendrift:2086: --------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:50 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:50 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 18:00:00 (before) 2025-03-10 19:00:00 (after) 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:52 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-03-10 18:00:00) 14:40:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 18:00:00) in space (linearNDFast) 14:40:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:52 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.44216497424729 and -65.41633298283628 degrees. 14:40:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.44216497424729 and -65.41633298283628 degrees. 14:40:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:52 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:52 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:52 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:52 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.124061 (min) -0.120555 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20651 (min) 0.208438 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.235714 (min) -0.229394 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.173724 (min) -0.170104 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: y_wind: -15.7836 (min) -15.6845 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.96901e-05 (min) 3.99552e-05 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 300.018 (min) 300.287 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:52 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:52 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 6.052436, mean: 6.090705, max: 6.129155 14:40:52 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:52 DEBUG opendrift.models.physics_methods:905: min: 13.402775, mean: 13.445072, max: 13.487450 14:40:52 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 13.402775, mean: 13.445072, max: 13.487450 14:40:52 DEBUG opendrift:643: No elements hit coastline. 14:40:52 DEBUG opendrift:733: No elements hit seafloor. 14:40:52 DEBUG opendrift:1695: No elements to deactivate 14:40:52 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:52 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.313709 m/s - 0.315691 m/s) 14:40:52 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:52 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:52 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:52 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:52 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:52 DEBUG opendrift:733: No elements hit seafloor. 14:40:52 DEBUG opendrift:2055: ====================================================================== 14:40:52 INFO opendrift:2056: 2025-03-10 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated) 14:40:52 DEBUG opendrift:2062: 0 elements scheduled. 14:40:52 DEBUG opendrift:2064: ====================================================================== 14:40:52 DEBUG opendrift:2075: 60.048881631398885 <- latitude -> 60.053167774784086 14:40:52 DEBUG opendrift:2080: 4.549693449666512 <- longitude -> 4.575665044669521 14:40:52 DEBUG opendrift:2083: z = 0.0 14:40:52 DEBUG opendrift:2086: --------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:52 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:52 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:52 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:52 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:52 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:52 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:52 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:52 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:52 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:52 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 19:00:00 (before) 2025-03-10 20:00:00 (after) 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:53 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-10 19:00:00) 14:40:53 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 19:00:00) in space (linearNDFast) 14:40:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:53 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45031746043229 and -65.4243458539236 degrees. 14:40:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45031746043229 and -65.4243458539236 degrees. 14:40:53 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:53 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:53 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:53 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:53 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101888 (min) -0.093081 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.153047 (min) 0.166128 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.108582 (min) -0.103331 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.57248 (min) -1.50501 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.4244 (min) -14.3281 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.72773e-05 (min) 2.76476e-05 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.906 (min) 300.205 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:53 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:53 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.105989, mean: 5.143127, max: 5.179151 14:40:53 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:53 DEBUG opendrift.models.physics_methods:905: min: 12.310325, mean: 12.355004, max: 12.398206 14:40:53 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.310325, mean: 12.355004, max: 12.398206 14:40:53 DEBUG opendrift:643: No elements hit coastline. 14:40:53 DEBUG opendrift:733: No elements hit seafloor. 14:40:53 DEBUG opendrift:1695: No elements to deactivate 14:40:53 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:53 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288139 m/s - 0.290196 m/s) 14:40:53 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:53 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:53 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:53 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:53 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:53 DEBUG opendrift:733: No elements hit seafloor. 14:40:53 DEBUG opendrift:2055: ====================================================================== 14:40:53 INFO opendrift:2056: 2025-03-10 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated) 14:40:53 DEBUG opendrift:2062: 0 elements scheduled. 14:40:53 DEBUG opendrift:2064: ====================================================================== 14:40:53 DEBUG opendrift:2075: 60.04492333299627 <- latitude -> 60.0488746417725 14:40:53 DEBUG opendrift:2080: 4.541646503683832 <- longitude -> 4.567135406796846 14:40:53 DEBUG opendrift:2083: z = 0.0 14:40:53 DEBUG opendrift:2086: --------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:53 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:53 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:53 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:53 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:53 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:53 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:53 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:53 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:53 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:53 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:53 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:53 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 20:00:00 (before) 2025-03-10 21:00:00 (after) 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:54 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 20:00:00) 14:40:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 20:00:00) in space (linearNDFast) 14:40:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:54 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:54 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45836439952186 and -65.43287549178292 degrees. 14:40:54 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.45836439952186 and -65.43287549178292 degrees. 14:40:54 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:54 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:54 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:54 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:54 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0794614 (min) -0.072269 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.112839 (min) 0.12922 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0647285 (min) -0.0604974 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.580704 (min) -0.469182 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: y_wind: -13.059 (min) -12.8523 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.18716e-06 (min) -3.93861e-06 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.797 (min) 300.102 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:54 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:54 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.071749, mean: 4.135383, max: 4.200613 14:40:54 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:54 DEBUG opendrift.models.physics_methods:905: min: 10.993097, mean: 11.078625, max: 11.165699 14:40:54 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.993097, mean: 11.078625, max: 11.165699 14:40:54 DEBUG opendrift:643: No elements hit coastline. 14:40:54 DEBUG opendrift:733: No elements hit seafloor. 14:40:54 DEBUG opendrift:1695: No elements to deactivate 14:40:54 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:54 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.257308 m/s - 0.261348 m/s) 14:40:54 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:54 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:54 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:54 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:54 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:54 DEBUG opendrift:733: No elements hit seafloor. 14:40:54 DEBUG opendrift:2055: ====================================================================== 14:40:54 INFO opendrift:2056: 2025-03-10 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated) 14:40:54 DEBUG opendrift:2062: 0 elements scheduled. 14:40:54 DEBUG opendrift:2064: ====================================================================== 14:40:54 DEBUG opendrift:2075: 60.04067210070606 <- latitude -> 60.04424031123048 14:40:54 DEBUG opendrift:2080: 4.536047745936707 <- longitude -> 4.561250516335529 14:40:54 DEBUG opendrift:2083: z = 0.0 14:40:54 DEBUG opendrift:2086: --------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:54 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:54 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:54 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:54 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:54 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:54 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:54 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:54 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:54 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:54 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:54 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:54 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 21:00:00 (before) 2025-03-10 22:00:00 (after) 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:55 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 21:00:00) 14:40:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 21:00:00) in space (linearNDFast) 14:40:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:55 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.463963160979 and -65.43876038927448 degrees. 14:40:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.463963160979 and -65.43876038927448 degrees. 14:40:55 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:55 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:55 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:55 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:55 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0731146 (min) -0.0663263 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0690953 (min) 0.0829971 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.140935 (min) -0.136984 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.151336 (min) 0.158402 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.5045 (min) -14.3659 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.59728e-05 (min) -3.58703e-05 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.719 (min) 300.023 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:55 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:55 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 5.077508, mean: 5.124224, max: 5.175958 14:40:55 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:55 DEBUG opendrift.models.physics_methods:905: min: 12.275943, mean: 12.332270, max: 12.394385 14:40:55 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 12.275943, mean: 12.332270, max: 12.394385 14:40:55 DEBUG opendrift:643: No elements hit coastline. 14:40:55 DEBUG opendrift:733: No elements hit seafloor. 14:40:55 DEBUG opendrift:1695: No elements to deactivate 14:40:55 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:55 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.287334 m/s - 0.290107 m/s) 14:40:55 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:55 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:55 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:55 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:55 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:55 DEBUG opendrift:733: No elements hit seafloor. 14:40:55 DEBUG opendrift:2055: ====================================================================== 14:40:55 INFO opendrift:2056: 2025-03-10 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated) 14:40:55 DEBUG opendrift:2062: 0 elements scheduled. 14:40:55 DEBUG opendrift:2064: ====================================================================== 14:40:55 DEBUG opendrift:2075: 60.03398818739957 <- latitude -> 60.03720127613515 14:40:55 DEBUG opendrift:2080: 4.531522459670209 <- longitude -> 4.5570076348053705 14:40:55 DEBUG opendrift:2083: z = 0.0 14:40:55 DEBUG opendrift:2086: --------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:55 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:55 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:55 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:55 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:55 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:55 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:55 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:55 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:55 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:55 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:55 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:55 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 22:00:00 (before) 2025-03-10 23:00:00 (after) 14:40:56 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:56 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:56 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:56 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:56 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:56 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 22:00:00) 14:40:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 22:00:00) in space (linearNDFast) 14:40:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:56 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46848846702329 and -65.44300328161113 degrees. 14:40:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.46848846702329 and -65.44300328161113 degrees. 14:40:57 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:57 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:57 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:57 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:57 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0848538 (min) -0.076924 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0466098 (min) 0.0589404 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.313714 (min) -0.309722 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.677041 (min) -0.623299 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: y_wind: -14.2004 (min) -14.0126 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.55674e-05 (min) -5.55077e-05 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.643 (min) 299.951 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:57 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:57 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.841496, mean: 4.902225, max: 4.970208 14:40:57 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:57 DEBUG opendrift.models.physics_methods:905: min: 11.987244, mean: 12.062160, max: 12.145541 14:40:57 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.987244, mean: 12.062160, max: 12.145541 14:40:57 DEBUG opendrift:643: No elements hit coastline. 14:40:57 DEBUG opendrift:733: No elements hit seafloor. 14:40:57 DEBUG opendrift:1695: No elements to deactivate 14:40:57 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:57 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.280577 m/s - 0.284282 m/s) 14:40:57 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:57 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:57 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:57 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:57 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:57 DEBUG opendrift:733: No elements hit seafloor. 14:40:57 DEBUG opendrift:2055: ====================================================================== 14:40:57 INFO opendrift:2056: 2025-03-10 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated) 14:40:57 DEBUG opendrift:2062: 0 elements scheduled. 14:40:57 DEBUG opendrift:2064: ====================================================================== 14:40:57 DEBUG opendrift:2075: 60.026728274167645 <- latitude -> 60.02964847584771 14:40:57 DEBUG opendrift:2080: 4.525237089959365 <- longitude -> 4.551158025097021 14:40:57 DEBUG opendrift:2083: z = 0.0 14:40:57 DEBUG opendrift:2086: --------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:57 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:57 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:57 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:57 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:57 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:57 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:57 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:57 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:57 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:57 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:57 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-10 23:00:00 (before) 2025-03-11 00:00:00 (after) 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:58 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-10 23:00:00) 14:40:58 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-10 23:00:00) in space (linearNDFast) 14:40:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:58 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47477382145803 and -65.44885287357812 degrees. 14:40:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.47477382145803 and -65.44885287357812 degrees. 14:40:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:58 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:58 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:58 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:58 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101086 (min) -0.0873449 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.06707 (min) 0.0783522 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.511393 (min) -0.507397 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.62843 (min) -1.60953 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.9639 (min) -12.8224 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.98628e-05 (min) -4.97272e-05 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.513 (min) 299.85 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:58 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:58 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.109339, mean: 4.150993, max: 4.198099 14:40:58 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:58 DEBUG opendrift.models.physics_methods:905: min: 11.043724, mean: 11.099536, max: 11.162357 14:40:58 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.043724, mean: 11.099536, max: 11.162357 14:40:58 DEBUG opendrift:643: No elements hit coastline. 14:40:58 DEBUG opendrift:733: No elements hit seafloor. 14:40:58 DEBUG opendrift:1695: No elements to deactivate 14:40:58 DEBUG opendrift:2129: Calling OceanDrift.update() 14:40:58 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.258493 m/s - 0.261270 m/s) 14:40:58 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:40:58 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:40:58 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:40:58 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:40:58 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:40:58 DEBUG opendrift:733: No elements hit seafloor. 14:40:58 DEBUG opendrift:2055: ====================================================================== 14:40:58 INFO opendrift:2056: 2025-03-11 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated) 14:40:58 DEBUG opendrift:2062: 0 elements scheduled. 14:40:58 DEBUG opendrift:2064: ====================================================================== 14:40:58 DEBUG opendrift:2075: 60.020850272119816 <- latitude -> 60.02352974894076 14:40:58 DEBUG opendrift:2080: 4.51663142031166 <- longitude -> 4.543422321928393 14:40:58 DEBUG opendrift:2083: z = 0.0 14:40:58 DEBUG opendrift:2086: --------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:40:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:40:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:40:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:40:58 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:40:58 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:40:58 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:58 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:40:58 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:40:58 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:40:58 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:40:58 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:40:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 00:00:00 (before) 2025-03-11 01:00:00 (after) 14:40:59 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:40:59 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:40:59 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:40:59 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:40:59 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:40:59 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 00:00:00) 14:40:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 00:00:00) in space (linearNDFast) 14:40:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:40:59 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:40:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48337949501813 and -65.45658858904177 degrees. 14:40:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.48337949501813 and -65.45658858904177 degrees. 14:40:59 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:40:59 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:40:59 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:40:59 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:40:59 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:40:59 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:40:59 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101215 (min) -0.0899418 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.10757 (min) 0.114841 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.661141 (min) -0.65691 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.45837 (min) -1.38302 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.441 (min) -12.1995 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.52255e-07 (min) -3.74305e-07 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.317 (min) 299.711 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:40:59 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:40:59 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.713182, mean: 3.778008, max: 3.854609 14:40:59 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:40:59 DEBUG opendrift.models.physics_methods:905: min: 10.497906, mean: 10.589092, max: 10.695960 14:40:59 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.497906, mean: 10.589092, max: 10.695960 14:40:59 DEBUG opendrift:643: No elements hit coastline. 14:40:59 DEBUG opendrift:733: No elements hit seafloor. 14:41:00 DEBUG opendrift:1695: No elements to deactivate 14:41:00 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:00 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245717 m/s - 0.250353 m/s) 14:41:00 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:00 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:00 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:00 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:00 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:00 DEBUG opendrift:733: No elements hit seafloor. 14:41:00 DEBUG opendrift:2055: ====================================================================== 14:41:00 INFO opendrift:2056: 2025-03-11 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated) 14:41:00 DEBUG opendrift:2062: 0 elements scheduled. 14:41:00 DEBUG opendrift:2064: ====================================================================== 14:41:00 DEBUG opendrift:2075: 60.01637103493787 <- latitude -> 60.01912537833725 14:41:00 DEBUG opendrift:2080: 4.508340902471234 <- longitude -> 4.535737347870873 14:41:00 DEBUG opendrift:2083: z = 0.0 14:41:00 DEBUG opendrift:2086: --------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:00 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:00 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:00 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:00 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:00 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:00 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:00 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:00 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:00 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:00 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:00 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:00 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 01:00:00 (before) 2025-03-11 02:00:00 (after) 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:01 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-11 01:00:00) 14:41:01 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 01:00:00) in space (linearNDFast) 14:41:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:01 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:01 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49167001545429 and -65.4642735632172 degrees. 14:41:01 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49167001545429 and -65.4642735632172 degrees. 14:41:01 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:01 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:01 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:01 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:01 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.101924 (min) -0.0945767 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.136977 (min) 0.146227 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.730326 (min) -0.725447 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.07694 (min) -1.05386 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.9991 (min) -12.8245 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.99975e-06 (min) -5.70891e-06 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 299.104 (min) 299.563 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:01 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:01 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.074331, mean: 4.129450, max: 4.184182 14:41:01 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:01 DEBUG opendrift.models.physics_methods:905: min: 10.996583, mean: 11.070685, max: 11.143839 14:41:01 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.996583, mean: 11.070685, max: 11.143839 14:41:01 DEBUG opendrift:643: No elements hit coastline. 14:41:01 DEBUG opendrift:733: No elements hit seafloor. 14:41:01 DEBUG opendrift:1695: No elements to deactivate 14:41:01 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:01 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.257389 m/s - 0.260836 m/s) 14:41:01 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:01 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:01 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:01 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:01 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:01 DEBUG opendrift:733: No elements hit seafloor. 14:41:01 DEBUG opendrift:2055: ====================================================================== 14:41:01 INFO opendrift:2056: 2025-03-11 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated) 14:41:01 DEBUG opendrift:2062: 0 elements scheduled. 14:41:01 DEBUG opendrift:2064: ====================================================================== 14:41:01 DEBUG opendrift:2075: 60.01255516248459 <- latitude -> 60.01540359119339 14:41:01 DEBUG opendrift:2080: 4.500648807286067 <- longitude -> 4.528243395422648 14:41:01 DEBUG opendrift:2083: z = 0.0 14:41:01 DEBUG opendrift:2086: --------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:01 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:01 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:01 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:01 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:01 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:01 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:01 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:01 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:01 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:01 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:01 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 02:00:00 (before) 2025-03-11 03:00:00 (after) 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:02 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-11 02:00:00) 14:41:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 02:00:00) in space (linearNDFast) 14:41:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:02 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:02 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49936211376335 and -65.4717675241429 degrees. 14:41:02 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.49936211376335 and -65.4717675241429 degrees. 14:41:02 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:02 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:02 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:02 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:02 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0910313 (min) -0.0839876 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.191886 (min) 0.200983 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.748264 (min) -0.743383 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.2685 (min) -1.26149 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.3772 (min) -12.1929 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.09433e-07 (min) 6.52081e-06 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.887 (min) 299.397 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:02 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:02 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.696629, mean: 3.752616, max: 3.808126 14:41:02 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:02 DEBUG opendrift.models.physics_methods:905: min: 10.474481, mean: 10.553468, max: 10.631273 14:41:02 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.474481, mean: 10.553468, max: 10.631273 14:41:02 DEBUG opendrift:643: No elements hit coastline. 14:41:02 DEBUG opendrift:733: No elements hit seafloor. 14:41:02 DEBUG opendrift:1695: No elements to deactivate 14:41:02 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:02 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245169 m/s - 0.248839 m/s) 14:41:02 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:02 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:02 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:02 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:02 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:02 DEBUG opendrift:733: No elements hit seafloor. 14:41:02 DEBUG opendrift:2055: ====================================================================== 14:41:02 INFO opendrift:2056: 2025-03-11 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated) 14:41:02 DEBUG opendrift:2062: 0 elements scheduled. 14:41:02 DEBUG opendrift:2064: ====================================================================== 14:41:02 DEBUG opendrift:2075: 60.010837676519955 <- latitude -> 60.01389054076927 14:41:02 DEBUG opendrift:2080: 4.493591489090615 <- longitude -> 4.520833783218672 14:41:02 DEBUG opendrift:2083: z = 0.0 14:41:02 DEBUG opendrift:2086: --------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:02 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:02 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:02 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:02 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:02 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:02 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:02 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:02 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:02 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:02 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:02 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:02 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 03:00:00 (before) 2025-03-11 04:00:00 (after) 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:04 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 03:00:00) 14:41:04 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 03:00:00) in space (linearNDFast) 14:41:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:04 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50641943604457 and -65.47917713590604 degrees. 14:41:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.50641943604457 and -65.47917713590604 degrees. 14:41:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:04 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:04 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:04 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:04 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0788459 (min) -0.0737719 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.230338 (min) 0.239168 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.676062 (min) -0.670522 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.330092 (min) -0.310551 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.5296 (min) -12.3816 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.72322e-05 (min) 2.083e-05 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.715 (min) 299.249 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:04 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:04 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.773956, mean: 3.820544, max: 3.864335 14:41:04 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:04 DEBUG opendrift.models.physics_methods:905: min: 10.583468, mean: 10.648568, max: 10.709444 14:41:04 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.583468, mean: 10.648568, max: 10.709444 14:41:04 DEBUG opendrift:643: No elements hit coastline. 14:41:04 DEBUG opendrift:733: No elements hit seafloor. 14:41:04 DEBUG opendrift:1695: No elements to deactivate 14:41:04 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:04 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247720 m/s - 0.250669 m/s) 14:41:04 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:04 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:04 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:04 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:04 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:04 DEBUG opendrift:733: No elements hit seafloor. 14:41:04 DEBUG opendrift:2055: ====================================================================== 14:41:04 INFO opendrift:2056: 2025-03-11 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated) 14:41:04 DEBUG opendrift:2062: 0 elements scheduled. 14:41:04 DEBUG opendrift:2064: ====================================================================== 14:41:04 DEBUG opendrift:2075: 60.01040216489116 <- latitude -> 60.01337766934297 14:41:04 DEBUG opendrift:2080: 4.48841579271645 <- longitude -> 4.515353220374952 14:41:04 DEBUG opendrift:2083: z = 0.0 14:41:04 DEBUG opendrift:2086: --------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:04 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:04 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:04 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:04 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:04 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:04 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:04 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:04 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 04:00:00 (before) 2025-03-11 05:00:00 (after) 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:05 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-11 04:00:00) 14:41:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 04:00:00) in space (linearNDFast) 14:41:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:05 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51159511938545 and -65.48465770273981 degrees. 14:41:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51159511938545 and -65.48465770273981 degrees. 14:41:05 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:05 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:05 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:05 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:05 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0851399 (min) -0.0758623 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243674 (min) 0.256785 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.563794 (min) -0.557209 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.301171 (min) 0.308868 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.0502 (min) -12.0451 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.00262e-05 (min) 3.20876e-05 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.613 (min) 299.143 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:05 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:05 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.571356, mean: 3.572490, max: 3.574405 14:41:05 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:05 DEBUG opendrift.models.physics_methods:905: min: 10.295469, mean: 10.297104, max: 10.299863 14:41:05 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.295469, mean: 10.297104, max: 10.299863 14:41:05 DEBUG opendrift:643: No elements hit coastline. 14:41:05 DEBUG opendrift:733: No elements hit seafloor. 14:41:05 DEBUG opendrift:1695: No elements to deactivate 14:41:05 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:05 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.240979 m/s - 0.241082 m/s) 14:41:05 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:05 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:05 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:05 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:05 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:05 DEBUG opendrift:733: No elements hit seafloor. 14:41:05 DEBUG opendrift:2055: ====================================================================== 14:41:05 INFO opendrift:2056: 2025-03-11 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated) 14:41:05 DEBUG opendrift:2062: 0 elements scheduled. 14:41:05 DEBUG opendrift:2064: ====================================================================== 14:41:05 DEBUG opendrift:2075: 60.01080470265599 <- latitude -> 60.01369338185704 14:41:05 DEBUG opendrift:2080: 4.483823982561296 <- longitude -> 4.51024741723721 14:41:05 DEBUG opendrift:2083: z = 0.0 14:41:05 DEBUG opendrift:2086: --------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:05 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:05 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:05 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:05 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:05 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:05 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:05 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:05 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:05 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:05 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:05 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:05 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 05:00:00 (before) 2025-03-11 06:00:00 (after) 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:06 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-11 05:00:00) 14:41:06 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 05:00:00) in space (linearNDFast) 14:41:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:06 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51618694857021 and -65.48976350385836 degrees. 14:41:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51618694857021 and -65.48976350385836 degrees. 14:41:06 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:06 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:06 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:06 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:06 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0994609 (min) -0.0789295 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.232488 (min) 0.240168 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.439566 (min) -0.433085 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.883123 (min) 0.894367 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.3374 (min) -11.3238 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.34221e-05 (min) 4.41852e-05 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.544 (min) 299.06 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:06 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:06 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.174111, mean: 3.178039, max: 3.181423 14:41:06 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:06 DEBUG opendrift.models.physics_methods:905: min: 9.706008, mean: 9.712011, max: 9.717181 14:41:06 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.706008, mean: 9.712011, max: 9.717181 14:41:06 DEBUG opendrift:643: No elements hit coastline. 14:41:06 DEBUG opendrift:733: No elements hit seafloor. 14:41:06 DEBUG opendrift:1695: No elements to deactivate 14:41:06 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:06 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.227182 m/s - 0.227443 m/s) 14:41:06 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:06 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:06 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:06 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:06 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:06 DEBUG opendrift:733: No elements hit seafloor. 14:41:06 DEBUG opendrift:2055: ====================================================================== 14:41:06 INFO opendrift:2056: 2025-03-11 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated) 14:41:06 DEBUG opendrift:2062: 0 elements scheduled. 14:41:06 DEBUG opendrift:2064: ====================================================================== 14:41:06 DEBUG opendrift:2075: 60.01112513311974 <- latitude -> 60.01408983393541 14:41:06 DEBUG opendrift:2080: 4.4798687909819055 <- longitude -> 4.504980617512156 14:41:06 DEBUG opendrift:2083: z = 0.0 14:41:06 DEBUG opendrift:2086: --------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:06 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:06 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:06 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:06 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:06 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:06 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:06 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:06 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:06 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:06 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:06 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 06:00:00 (before) 2025-03-11 07:00:00 (after) 14:41:07 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:07 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:07 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:07 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 06:00:00) 14:41:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 06:00:00) in space (linearNDFast) 14:41:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:07 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52014214129024 and -65.49503030459702 degrees. 14:41:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52014214129024 and -65.49503030459702 degrees. 14:41:07 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:07 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:07 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:07 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:07 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:07 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:07 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.120979 (min) -0.0876048 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.20988 (min) 0.223075 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.280716 (min) -0.275631 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.0559961 (min) 0.116564 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: y_wind: -8.66864 (min) -8.65395 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.64204e-05 (min) 4.69868e-05 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:07 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.487 (min) 298.972 (max) 14:41:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:08 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:08 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.842634, mean: 1.845674, max: 1.848659 14:41:08 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:08 DEBUG opendrift.models.physics_methods:905: min: 7.395187, mean: 7.401284, max: 7.407266 14:41:08 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 7.395187, mean: 7.401284, max: 7.407266 14:41:08 DEBUG opendrift:643: No elements hit coastline. 14:41:08 DEBUG opendrift:733: No elements hit seafloor. 14:41:08 DEBUG opendrift:1695: No elements to deactivate 14:41:08 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:08 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173094 m/s - 0.173377 m/s) 14:41:08 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:08 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:08 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:08 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:08 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:08 DEBUG opendrift:733: No elements hit seafloor. 14:41:08 DEBUG opendrift:2055: ====================================================================== 14:41:08 INFO opendrift:2056: 2025-03-11 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated) 14:41:08 DEBUG opendrift:2062: 0 elements scheduled. 14:41:08 DEBUG opendrift:2064: ====================================================================== 14:41:08 DEBUG opendrift:2075: 60.01231195130198 <- latitude -> 60.015537183282945 14:41:08 DEBUG opendrift:2080: 4.474364236274492 <- longitude -> 4.497243040235428 14:41:08 DEBUG opendrift:2083: z = 0.0 14:41:08 DEBUG opendrift:2086: --------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:08 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:08 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:08 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:08 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 07:00:00 (before) 2025-03-11 08:00:00 (after) 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:09 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-03-11 07:00:00) 14:41:09 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 07:00:00) in space (linearNDFast) 14:41:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:09 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:09 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52564668710795 and -65.50276787576828 degrees. 14:41:09 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52564668710795 and -65.50276787576828 degrees. 14:41:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:09 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.118442 (min) -0.0797114 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.173691 (min) 0.203016 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.113509 (min) -0.110264 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.649004 (min) 0.683545 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: -6.97729 (min) -6.89996 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.87251e-05 (min) 3.90101e-05 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.425 (min) 298.86 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:09 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.181554, mean: 1.195783, max: 1.209087 14:41:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:09 DEBUG opendrift.models.physics_methods:905: min: 5.921835, mean: 5.957373, max: 5.990435 14:41:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.921835, mean: 5.957373, max: 5.990435 14:41:09 DEBUG opendrift:643: No elements hit coastline. 14:41:09 DEBUG opendrift:733: No elements hit seafloor. 14:41:09 DEBUG opendrift:1695: No elements to deactivate 14:41:09 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:09 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.138608 m/s - 0.140214 m/s) 14:41:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:09 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:09 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:09 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:09 DEBUG opendrift:733: No elements hit seafloor. 14:41:09 DEBUG opendrift:2055: ====================================================================== 14:41:09 INFO opendrift:2056: 2025-03-11 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated) 14:41:09 DEBUG opendrift:2062: 0 elements scheduled. 14:41:09 DEBUG opendrift:2064: ====================================================================== 14:41:09 DEBUG opendrift:2075: 60.01346094957319 <- latitude -> 60.017435500449125 14:41:09 DEBUG opendrift:2080: 4.470056513532043 <- longitude -> 4.490498825793235 14:41:09 DEBUG opendrift:2083: z = 0.0 14:41:09 DEBUG opendrift:2086: --------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:09 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:09 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:09 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:09 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:09 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:09 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 08:00:00 (before) 2025-03-11 09:00:00 (after) 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:10 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 08:00:00) 14:41:10 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 08:00:00) in space (linearNDFast) 14:41:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:10 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52995440627494 and -65.50951207933608 degrees. 14:41:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52995440627494 and -65.50951207933608 degrees. 14:41:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:10 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0855996 (min) -0.0600378 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.145299 (min) 0.178305 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0274963 (min) -0.0254219 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.77737 (min) 0.78797 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.82094 (min) -4.74159 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.07338e-06 (min) 2.3192e-06 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.386 (min) 298.768 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:10 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.568349, mean: 0.577507, max: 0.586606 14:41:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:10 DEBUG opendrift.models.physics_methods:905: min: 4.107116, mean: 4.140060, max: 4.172563 14:41:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.107116, mean: 4.140060, max: 4.172563 14:41:10 DEBUG opendrift:643: No elements hit coastline. 14:41:10 DEBUG opendrift:733: No elements hit seafloor. 14:41:10 DEBUG opendrift:1695: No elements to deactivate 14:41:10 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:10 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096132 m/s - 0.097664 m/s) 14:41:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:10 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:10 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:10 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:10 DEBUG opendrift:733: No elements hit seafloor. 14:41:10 DEBUG opendrift:2055: ====================================================================== 14:41:10 INFO opendrift:2056: 2025-03-11 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated) 14:41:10 DEBUG opendrift:2062: 0 elements scheduled. 14:41:10 DEBUG opendrift:2064: ====================================================================== 14:41:10 DEBUG opendrift:2075: 60.01510354997198 <- latitude -> 60.0200655356725 14:41:10 DEBUG opendrift:2080: 4.4671981646008865 <- longitude -> 4.485993400118188 14:41:10 DEBUG opendrift:2083: z = 0.0 14:41:10 DEBUG opendrift:2086: --------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:10 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:10 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:10 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:10 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:10 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:10 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 09:00:00 (before) 2025-03-11 10:00:00 (after) 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:11 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 09:00:00) 14:41:11 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 09:00:00) in space (linearNDFast) 14:41:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:11 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53281275367544 and -65.51401751872024 degrees. 14:41:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53281275367544 and -65.51401751872024 degrees. 14:41:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:11 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0409442 (min) -0.0343753 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.131735 (min) 0.15598 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0655573 (min) -0.0643214 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.75968 (min) 1.77534 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: -3.46244 (min) -3.38804 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.59822e-05 (min) -3.59045e-05 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.371 (min) 298.717 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:11 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.359482, mean: 0.364510, max: 0.372146 14:41:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:11 DEBUG opendrift.models.physics_methods:905: min: 3.266393, mean: 3.289139, max: 3.323426 14:41:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.266393, mean: 3.289139, max: 3.323426 14:41:11 DEBUG opendrift:643: No elements hit coastline. 14:41:11 DEBUG opendrift:733: No elements hit seafloor. 14:41:11 DEBUG opendrift:1695: No elements to deactivate 14:41:11 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:11 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076454 m/s - 0.077789 m/s) 14:41:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:11 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:11 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:11 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:11 DEBUG opendrift:733: No elements hit seafloor. 14:41:11 DEBUG opendrift:2055: ====================================================================== 14:41:11 INFO opendrift:2056: 2025-03-11 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated) 14:41:11 DEBUG opendrift:2062: 0 elements scheduled. 14:41:11 DEBUG opendrift:2064: ====================================================================== 14:41:11 DEBUG opendrift:2075: 60.017169390071444 <- latitude -> 60.02286628305967 14:41:11 DEBUG opendrift:2080: 4.4672115093801175 <- longitude -> 4.485643012612592 14:41:11 DEBUG opendrift:2083: z = 0.0 14:41:11 DEBUG opendrift:2086: --------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:11 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:11 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:11 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:11 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:11 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:11 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 10:00:00 (before) 2025-03-11 11:00:00 (after) 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:13 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 10:00:00) 14:41:13 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 10:00:00) in space (linearNDFast) 14:41:13 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:13 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:13 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5327994069618 and -65.51436790452333 degrees. 14:41:13 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5327994069618 and -65.51436790452333 degrees. 14:41:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:13 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.018758 (min) -0.011962 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.134173 (min) 0.156178 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.220868 (min) -0.21993 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.68844 (min) -0.42767 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.35053 (min) 1.40111 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.11611e-05 (min) -6.10363e-05 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.393 (min) 298.739 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:13 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.052783, mean: 0.054598, max: 0.056723 14:41:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:13 DEBUG opendrift.models.physics_methods:905: min: 1.251634, mean: 1.272943, max: 1.297505 14:41:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.251634, mean: 1.272943, max: 1.297505 14:41:13 DEBUG opendrift:643: No elements hit coastline. 14:41:13 DEBUG opendrift:733: No elements hit seafloor. 14:41:13 DEBUG opendrift:1695: No elements to deactivate 14:41:13 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:13 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.029296 m/s - 0.030370 m/s) 14:41:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:13 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:13 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:13 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:13 DEBUG opendrift:733: No elements hit seafloor. 14:41:13 DEBUG opendrift:2055: ====================================================================== 14:41:13 INFO opendrift:2056: 2025-03-11 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated) 14:41:13 DEBUG opendrift:2062: 0 elements scheduled. 14:41:13 DEBUG opendrift:2064: ====================================================================== 14:41:13 DEBUG opendrift:2075: 60.022406889319306 <- latitude -> 60.02878476312618 14:41:13 DEBUG opendrift:2080: 4.46585732041343 <- longitude -> 4.4835427655562725 14:41:13 DEBUG opendrift:2083: z = 0.0 14:41:13 DEBUG opendrift:2086: --------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:13 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:13 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:13 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:13 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:13 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:13 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 11:00:00 (before) 2025-03-11 12:00:00 (after) 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:14 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 11:00:00) 14:41:14 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 11:00:00) in space (linearNDFast) 14:41:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:14 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53415359872326 and -65.51646814837268 degrees. 14:41:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53415359872326 and -65.51646814837268 degrees. 14:41:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:14 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00751177 (min) 0.0194049 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.152243 (min) 0.173492 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.454283 (min) -0.453389 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.819316 (min) 0.845104 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.85953 (min) 1.98379 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.63115e-05 (min) -6.62499e-05 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.41 (min) 298.723 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:14 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.101626, mean: 0.106873, max: 0.114356 14:41:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:14 DEBUG opendrift.models.physics_methods:905: min: 1.736730, mean: 1.780900, max: 1.842296 14:41:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.736730, mean: 1.780900, max: 1.842296 14:41:14 DEBUG opendrift:643: No elements hit coastline. 14:41:14 DEBUG opendrift:733: No elements hit seafloor. 14:41:14 DEBUG opendrift:1695: No elements to deactivate 14:41:14 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:14 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.040650 m/s - 0.043121 m/s) 14:41:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:14 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:14 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:14 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:14 DEBUG opendrift:733: No elements hit seafloor. 14:41:14 DEBUG opendrift:2055: ====================================================================== 14:41:14 INFO opendrift:2056: 2025-03-11 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated) 14:41:14 DEBUG opendrift:2062: 0 elements scheduled. 14:41:14 DEBUG opendrift:2064: ====================================================================== 14:41:14 DEBUG opendrift:2075: 60.028603620050305 <- latitude -> 60.03559495518008 14:41:14 DEBUG opendrift:2080: 4.468200953947662 <- longitude -> 4.4850877673738285 14:41:14 DEBUG opendrift:2083: z = 0.0 14:41:14 DEBUG opendrift:2086: --------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:14 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:14 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:14 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:14 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:14 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:14 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 12:00:00 (before) 2025-03-11 13:00:00 (after) 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:15 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 12:00:00) 14:41:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 12:00:00) in space (linearNDFast) 14:41:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:15 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53180996212319 and -65.51492314177196 degrees. 14:41:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53180996212319 and -65.51492314177196 degrees. 14:41:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:15 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0343484 (min) 0.0546482 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.180531 (min) 0.201711 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.659827 (min) -0.65868 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 3.17348 (min) 3.33714 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 2.54852 (min) 2.59116 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.83286e-05 (min) -4.80585e-05 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.443 (min) 298.741 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:15 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.408666, mean: 0.428954, max: 0.435941 14:41:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:15 DEBUG opendrift.models.physics_methods:905: min: 3.482684, mean: 3.568024, max: 3.597026 14:41:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.482684, mean: 3.568024, max: 3.597026 14:41:15 DEBUG opendrift:643: No elements hit coastline. 14:41:15 DEBUG opendrift:733: No elements hit seafloor. 14:41:15 DEBUG opendrift:1695: No elements to deactivate 14:41:15 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:15 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081517 m/s - 0.084193 m/s) 14:41:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:15 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:15 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:15 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:15 DEBUG opendrift:733: No elements hit seafloor. 14:41:15 DEBUG opendrift:2055: ====================================================================== 14:41:15 INFO opendrift:2056: 2025-03-11 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated) 14:41:15 DEBUG opendrift:2062: 0 elements scheduled. 14:41:15 DEBUG opendrift:2064: ====================================================================== 14:41:15 DEBUG opendrift:2075: 60.036094509502064 <- latitude -> 60.04376627547491 14:41:15 DEBUG opendrift:2080: 4.47603352875099 <- longitude -> 4.491414681089063 14:41:15 DEBUG opendrift:2083: z = 0.0 14:41:15 DEBUG opendrift:2086: --------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:15 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:15 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:15 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:15 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:15 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:15 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 13:00:00 (before) 2025-03-11 14:00:00 (after) 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:17 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 13:00:00) 14:41:17 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 13:00:00) in space (linearNDFast) 14:41:17 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:17 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:17 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52397738901415 and -65.50859623193311 degrees. 14:41:17 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52397738901415 and -65.50859623193311 degrees. 14:41:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:17 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:17 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:17 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:17 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0443282 (min) 0.065183 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.211448 (min) 0.237483 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.778722 (min) -0.777489 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.599882 (min) -0.511633 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.11919 (min) 4.14216 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.58808e-05 (min) -1.56904e-05 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.538 (min) 298.826 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:17 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:17 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.423970, mean: 0.427478, max: 0.430852 14:41:17 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:17 DEBUG opendrift.models.physics_methods:905: min: 3.547293, mean: 3.561936, max: 3.575970 14:41:17 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.547293, mean: 3.561936, max: 3.575970 14:41:17 DEBUG opendrift:643: No elements hit coastline. 14:41:17 DEBUG opendrift:733: No elements hit seafloor. 14:41:17 DEBUG opendrift:1695: No elements to deactivate 14:41:17 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:17 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083029 m/s - 0.083700 m/s) 14:41:17 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:17 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:17 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:17 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:17 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:17 DEBUG opendrift:733: No elements hit seafloor. 14:41:17 DEBUG opendrift:2055: ====================================================================== 14:41:17 INFO opendrift:2056: 2025-03-11 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated) 14:41:17 DEBUG opendrift:2062: 0 elements scheduled. 14:41:17 DEBUG opendrift:2064: ====================================================================== 14:41:17 DEBUG opendrift:2075: 60.04558880939457 <- latitude -> 60.054116663197235 14:41:17 DEBUG opendrift:2080: 4.479583303919733 <- longitude -> 4.49350363507934 14:41:17 DEBUG opendrift:2083: z = 0.0 14:41:17 DEBUG opendrift:2086: --------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:17 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:17 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:17 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:17 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:17 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:17 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:17 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 14:00:00 (before) 2025-03-11 15:00:00 (after) 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:18 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-03-11 14:00:00) 14:41:18 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 14:00:00) in space (linearNDFast) 14:41:18 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:18 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52042760684398 and -65.5065072761357 degrees. 14:41:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52042760684398 and -65.5065072761357 degrees. 14:41:18 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:18 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:18 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:18 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:18 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0529118 (min) 0.0644348 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.263977 (min) 0.29004 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.811101 (min) -0.808626 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.08213 (min) 1.70447 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.56613 (min) 4.89504 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.98224e-06 (min) 4.17334e-06 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.504 (min) 298.761 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:18 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:18 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.582004, mean: 0.607208, max: 0.622717 14:41:18 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:18 DEBUG opendrift.models.physics_methods:905: min: 4.156162, mean: 4.245159, max: 4.299076 14:41:18 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.156162, mean: 4.245159, max: 4.299076 14:41:18 DEBUG opendrift:643: No elements hit coastline. 14:41:18 DEBUG opendrift:733: No elements hit seafloor. 14:41:18 DEBUG opendrift:1695: No elements to deactivate 14:41:18 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:18 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.097280 m/s - 0.100625 m/s) 14:41:18 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:18 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:18 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:18 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:18 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:18 DEBUG opendrift:733: No elements hit seafloor. 14:41:18 DEBUG opendrift:2055: ====================================================================== 14:41:18 INFO opendrift:2056: 2025-03-11 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated) 14:41:18 DEBUG opendrift:2062: 0 elements scheduled. 14:41:18 DEBUG opendrift:2064: ====================================================================== 14:41:18 DEBUG opendrift:2075: 60.05706923952011 <- latitude -> 60.06659062423307 14:41:18 DEBUG opendrift:2080: 4.485950397239805 <- longitude -> 4.498322776557604 14:41:18 DEBUG opendrift:2083: z = 0.0 14:41:18 DEBUG opendrift:2086: --------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:18 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:18 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:18 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:18 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:18 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:18 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:18 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:18 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:18 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:18 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:18 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 15:00:00 (before) 2025-03-11 16:00:00 (after) 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:19 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-03-11 15:00:00) 14:41:19 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 15:00:00) in space (linearNDFast) 14:41:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:19 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:19 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51406050299401 and -65.50168812554213 degrees. 14:41:19 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51406050299401 and -65.50168812554213 degrees. 14:41:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:19 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:19 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:19 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:19 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0108729 (min) 0.0167612 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.329238 (min) 0.353444 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.77805 (min) -0.77575 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.63996 (min) -2.45899 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: y_wind: 4.16699 (min) 4.5831 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.81807e-05 (min) 1.83987e-05 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.488 (min) 298.734 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:19 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:19 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.598596, mean: 0.638013, max: 0.665795 14:41:19 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:19 DEBUG opendrift.models.physics_methods:905: min: 4.214991, mean: 4.351404, max: 4.445288 14:41:19 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.214991, mean: 4.351404, max: 4.445288 14:41:19 DEBUG opendrift:643: No elements hit coastline. 14:41:19 DEBUG opendrift:733: No elements hit seafloor. 14:41:19 DEBUG opendrift:1695: No elements to deactivate 14:41:19 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:19 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098657 m/s - 0.104048 m/s) 14:41:19 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:19 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:19 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:19 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:19 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:19 DEBUG opendrift:733: No elements hit seafloor. 14:41:19 DEBUG opendrift:2055: ====================================================================== 14:41:19 INFO opendrift:2056: 2025-03-11 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated) 14:41:19 DEBUG opendrift:2062: 0 elements scheduled. 14:41:19 DEBUG opendrift:2064: ====================================================================== 14:41:19 DEBUG opendrift:2075: 60.070400453461716 <- latitude -> 60.080833200539935 14:41:19 DEBUG opendrift:2080: 4.483433037794792 <- longitude -> 4.496180235397878 14:41:19 DEBUG opendrift:2083: z = 0.0 14:41:19 DEBUG opendrift:2086: --------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:19 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:19 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:19 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:19 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:19 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:19 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:19 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 16:00:00 (before) 2025-03-11 17:00:00 (after) 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:20 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-11 16:00:00) 14:41:20 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 16:00:00) in space (linearNDFast) 14:41:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:20 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51657785269256 and -65.5038306607639 degrees. 14:41:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51657785269256 and -65.5038306607639 degrees. 14:41:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:20 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:20 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:20 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:20 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0161406 (min) -0.0116888 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.392425 (min) 0.420389 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.696544 (min) -0.693818 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.26675 (min) -1.16141 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: y_wind: 2.07286 (min) 2.20398 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.50283e-05 (min) 2.5245e-05 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 298.174 (min) 298.513 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:20 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:20 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.140827, mean: 0.192477, max: 0.242476 14:41:20 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:20 DEBUG opendrift.models.physics_methods:905: min: 2.044433, mean: 2.387880, max: 2.682650 14:41:20 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.044433, mean: 2.387880, max: 2.682650 14:41:20 DEBUG opendrift:643: No elements hit coastline. 14:41:20 DEBUG opendrift:733: No elements hit seafloor. 14:41:20 DEBUG opendrift:1695: No elements to deactivate 14:41:20 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:20 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.047853 m/s - 0.062791 m/s) 14:41:20 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:20 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:20 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:20 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:20 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:20 DEBUG opendrift:733: No elements hit seafloor. 14:41:20 DEBUG opendrift:2055: ====================================================================== 14:41:20 INFO opendrift:2056: 2025-03-11 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated) 14:41:20 DEBUG opendrift:2062: 0 elements scheduled. 14:41:20 DEBUG opendrift:2064: ====================================================================== 14:41:20 DEBUG opendrift:2075: 60.08443231534045 <- latitude -> 60.09543317251469 14:41:20 DEBUG opendrift:2080: 4.481105245516809 <- longitude -> 4.492378861493554 14:41:20 DEBUG opendrift:2083: z = 0.0 14:41:20 DEBUG opendrift:2086: --------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:20 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:20 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:20 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:20 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 17:00:00 (before) 2025-03-11 18:00:00 (after) 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:21 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-11 17:00:00) 14:41:21 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 17:00:00) in space (linearNDFast) 14:41:21 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:21 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:21 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5189056489254 and -65.50763202339573 degrees. 14:41:21 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5189056489254 and -65.50763202339573 degrees. 14:41:21 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:21 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:21 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:21 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:21 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0281898 (min) -0.0245596 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.423259 (min) 0.455558 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.579976 (min) -0.57628 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: x_wind: 1.84938 (min) 1.90576 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.79124 (min) 1.98825 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.81278e-05 (min) 3.85111e-05 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.855 (min) 298.26 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:21 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:21 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.164838, mean: 0.173951, max: 0.186081 14:41:21 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:21 DEBUG opendrift.models.physics_methods:905: min: 2.211866, mean: 2.272050, max: 2.350066 14:41:21 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.211866, mean: 2.272050, max: 2.350066 14:41:21 DEBUG opendrift:643: No elements hit coastline. 14:41:21 DEBUG opendrift:733: No elements hit seafloor. 14:41:21 DEBUG opendrift:1695: No elements to deactivate 14:41:21 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:21 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.051772 m/s - 0.055006 m/s) 14:41:21 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:21 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:21 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:21 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:21 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:21 DEBUG opendrift:733: No elements hit seafloor. 14:41:21 DEBUG opendrift:2055: ====================================================================== 14:41:21 INFO opendrift:2056: 2025-03-11 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated) 14:41:21 DEBUG opendrift:2062: 0 elements scheduled. 14:41:21 DEBUG opendrift:2064: ====================================================================== 14:41:21 DEBUG opendrift:2075: 60.099269473301874 <- latitude -> 60.111146609450486 14:41:21 DEBUG opendrift:2080: 4.481851831506292 <- longitude -> 4.493037915082009 14:41:21 DEBUG opendrift:2083: z = 0.0 14:41:21 DEBUG opendrift:2086: --------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:21 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:21 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:21 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:21 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:21 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:21 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:21 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:21 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:21 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:21 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:21 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:21 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 18:00:00 (before) 2025-03-11 19:00:00 (after) 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:23 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-03-11 18:00:00) 14:41:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 18:00:00) in space (linearNDFast) 14:41:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:23 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51815905441214 and -65.5069729695003 degrees. 14:41:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51815905441214 and -65.5069729695003 degrees. 14:41:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:23 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:23 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:23 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:23 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0413585 (min) -0.0358813 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.416314 (min) 0.44644 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.415534 (min) -0.410728 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.680067 (min) 0.774808 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.503761 (min) 0.622756 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.95469e-05 (min) 4.97604e-05 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.74 (min) 298.274 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:23 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:23 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.017620, mean: 0.021510, max: 0.024284 14:41:23 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:23 DEBUG opendrift.models.physics_methods:905: min: 0.723160, mean: 0.798755, max: 0.848959 14:41:23 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 0.723160, mean: 0.798755, max: 0.848959 14:41:23 DEBUG opendrift:643: No elements hit coastline. 14:41:23 DEBUG opendrift:733: No elements hit seafloor. 14:41:23 DEBUG opendrift:1695: No elements to deactivate 14:41:23 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:23 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.016926 m/s - 0.019871 m/s) 14:41:23 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:23 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:23 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:23 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:23 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:23 DEBUG opendrift:733: No elements hit seafloor. 14:41:23 DEBUG opendrift:2055: ====================================================================== 14:41:23 INFO opendrift:2056: 2025-03-11 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated) 14:41:23 DEBUG opendrift:2062: 0 elements scheduled. 14:41:23 DEBUG opendrift:2064: ====================================================================== 14:41:23 DEBUG opendrift:2075: 60.11304688595682 <- latitude -> 60.125718437547235 14:41:23 DEBUG opendrift:2080: 4.480345855348703 <- longitude -> 4.491373822363789 14:41:23 DEBUG opendrift:2083: z = 0.0 14:41:23 DEBUG opendrift:2086: --------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:23 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:23 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:23 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:23 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:23 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:23 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:23 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:23 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 19:00:00 (before) 2025-03-11 20:00:00 (after) 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:24 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-03-11 19:00:00) 14:41:24 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 19:00:00) in space (linearNDFast) 14:41:24 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:24 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51966503870588 and -65.50863706697578 degrees. 14:41:24 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.51966503870588 and -65.50863706697578 degrees. 14:41:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:24 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:24 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:24 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0475615 (min) -0.0378969 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.386234 (min) 0.413107 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.232734 (min) -0.227337 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.15169 (min) -0.982165 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.717688 (min) 1.04068 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.85472e-05 (min) 4.88216e-05 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.624 (min) 298.27 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:24 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:24 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.044829, mean: 0.047556, max: 0.050808 14:41:24 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:24 DEBUG opendrift.models.physics_methods:905: min: 1.153480, mean: 1.187969, max: 1.227986 14:41:24 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.153480, mean: 1.187969, max: 1.227986 14:41:24 DEBUG opendrift:643: No elements hit coastline. 14:41:24 DEBUG opendrift:733: No elements hit seafloor. 14:41:24 DEBUG opendrift:1695: No elements to deactivate 14:41:24 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:24 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.026999 m/s - 0.028743 m/s) 14:41:24 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:24 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:24 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:24 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:24 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:24 DEBUG opendrift:733: No elements hit seafloor. 14:41:24 DEBUG opendrift:2055: ====================================================================== 14:41:24 INFO opendrift:2056: 2025-03-11 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated) 14:41:24 DEBUG opendrift:2062: 0 elements scheduled. 14:41:24 DEBUG opendrift:2064: ====================================================================== 14:41:24 DEBUG opendrift:2075: 60.1259905810724 <- latitude -> 60.13958638709114 14:41:24 DEBUG opendrift:2080: 4.47630566522405 <- longitude -> 4.487007333691496 14:41:24 DEBUG opendrift:2083: z = 0.0 14:41:24 DEBUG opendrift:2086: --------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:24 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:24 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:24 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:24 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 20:00:00 (before) 2025-03-11 21:00:00 (after) 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:25 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-03-11 20:00:00) 14:41:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 20:00:00) in space (linearNDFast) 14:41:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:25 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52370521761173 and -65.51300355061375 degrees. 14:41:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.52370521761173 and -65.51300355061375 degrees. 14:41:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:25 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:25 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:25 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:25 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0458344 (min) -0.0348566 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.343095 (min) 0.366259 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0997243 (min) -0.0946244 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: x_wind: -3.85008 (min) -3.67646 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: y_wind: 1.5359 (min) 1.70934 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.27197e-05 (min) 2.28491e-05 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.45 (min) 298.219 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:25 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:25 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.404379, mean: 0.419024, max: 0.425027 14:41:25 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:25 DEBUG opendrift.models.physics_methods:905: min: 3.464365, mean: 3.526525, max: 3.551712 14:41:25 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.464365, mean: 3.526525, max: 3.551712 14:41:25 DEBUG opendrift:643: No elements hit coastline. 14:41:25 DEBUG opendrift:733: No elements hit seafloor. 14:41:25 DEBUG opendrift:1695: No elements to deactivate 14:41:25 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:25 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081088 m/s - 0.083132 m/s) 14:41:25 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:25 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:25 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:25 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:25 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:25 DEBUG opendrift:733: No elements hit seafloor. 14:41:25 DEBUG opendrift:2055: ====================================================================== 14:41:25 INFO opendrift:2056: 2025-03-11 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated) 14:41:25 DEBUG opendrift:2062: 0 elements scheduled. 14:41:25 DEBUG opendrift:2064: ====================================================================== 14:41:25 DEBUG opendrift:2075: 60.13818112288824 <- latitude -> 60.15243313960455 14:41:25 DEBUG opendrift:2080: 4.469034586800713 <- longitude -> 4.479158639499789 14:41:25 DEBUG opendrift:2083: z = 0.0 14:41:25 DEBUG opendrift:2086: --------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:25 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:25 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:25 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:25 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 21:00:00 (before) 2025-03-11 22:00:00 (after) 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:26 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-11 21:00:00) 14:41:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 21:00:00) in space (linearNDFast) 14:41:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:26 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53097629289472 and -65.52085222733008 degrees. 14:41:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.53097629289472 and -65.52085222733008 degrees. 14:41:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:26 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:26 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:26 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:26 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0533989 (min) -0.0444135 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.288964 (min) 0.311236 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0911029 (min) -0.0871176 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: x_wind: -4.91722 (min) -4.47617 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: y_wind: -1.34668 (min) -1.01382 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.70682e-05 (min) -1.68633e-05 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.151 (min) 298.084 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:26 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:26 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.518173, mean: 0.593772, max: 0.639419 14:41:26 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:26 DEBUG opendrift.models.physics_methods:905: min: 3.921634, mean: 4.197421, max: 4.356344 14:41:26 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.921634, mean: 4.197421, max: 4.356344 14:41:26 DEBUG opendrift:643: No elements hit coastline. 14:41:26 DEBUG opendrift:733: No elements hit seafloor. 14:41:26 DEBUG opendrift:1695: No elements to deactivate 14:41:26 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:26 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091791 m/s - 0.101966 m/s) 14:41:26 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:26 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:26 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:26 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:26 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:26 DEBUG opendrift:733: No elements hit seafloor. 14:41:26 DEBUG opendrift:2055: ====================================================================== 14:41:26 INFO opendrift:2056: 2025-03-11 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated) 14:41:26 DEBUG opendrift:2062: 0 elements scheduled. 14:41:26 DEBUG opendrift:2064: ====================================================================== 14:41:26 DEBUG opendrift:2075: 60.14686271370904 <- latitude -> 60.16153310385175 14:41:26 DEBUG opendrift:2080: 4.46030983593413 <- longitude -> 4.469405612131994 14:41:26 DEBUG opendrift:2083: z = 0.0 14:41:26 DEBUG opendrift:2086: --------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:26 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:26 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:26 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:26 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:26 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:26 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:26 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 22:00:00 (before) 2025-03-11 23:00:00 (after) 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:27 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x2) for time before (2025-03-11 22:00:00) 14:41:27 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 22:00:00) in space (linearNDFast) 14:41:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:27 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5397010359747 and -65.53060525647075 degrees. 14:41:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5397010359747 and -65.53060525647075 degrees. 14:41:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:27 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0700385 (min) -0.0550426 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.231387 (min) 0.260593 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.220224 (min) -0.216923 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: -3.87985 (min) -3.63732 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.50133 (min) -4.37109 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -5.29075e-05 (min) -5.26707e-05 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.755 (min) 297.859 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:27 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.823906, mean: 0.834602, max: 0.841910 14:41:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:27 DEBUG opendrift.models.physics_methods:905: min: 4.945023, mean: 4.977008, max: 4.998761 14:41:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.945023, mean: 4.977008, max: 4.998761 14:41:27 DEBUG opendrift:643: No elements hit coastline. 14:41:27 DEBUG opendrift:733: No elements hit seafloor. 14:41:27 DEBUG opendrift:1695: No elements to deactivate 14:41:27 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:27 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.115745 m/s - 0.117003 m/s) 14:41:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:27 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:27 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:27 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:27 DEBUG opendrift:733: No elements hit seafloor. 14:41:27 DEBUG opendrift:2055: ====================================================================== 14:41:27 INFO opendrift:2056: 2025-03-11 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated) 14:41:27 DEBUG opendrift:2062: 0 elements scheduled. 14:41:27 DEBUG opendrift:2064: ====================================================================== 14:41:27 DEBUG opendrift:2075: 60.151525638910535 <- latitude -> 60.16699523678632 14:41:27 DEBUG opendrift:2080: 4.451728543325602 <- longitude -> 4.460121364224072 14:41:27 DEBUG opendrift:2083: z = 0.0 14:41:27 DEBUG opendrift:2086: --------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:27 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:27 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:27 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-11 23:00:00 (before) 2025-03-12 00:00:00 (after) 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:28 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-11 23:00:00) 14:41:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-11 23:00:00) in space (linearNDFast) 14:41:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:28 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.54828232599739 and -65.53988951083646 degrees. 14:41:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.54828232599739 and -65.53988951083646 degrees. 14:41:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:28 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0732648 (min) -0.0531434 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.200362 (min) 0.238465 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.445478 (min) -0.442766 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.90099 (min) -1.85339 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.99285 (min) -2.96831 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -6.8783e-05 (min) -6.87155e-05 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.281 (min) 297.556 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:28 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.301322, mean: 0.305589, max: 0.309245 14:41:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:28 DEBUG opendrift.models.physics_methods:905: min: 2.990507, mean: 3.011603, max: 3.029570 14:41:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.990507, mean: 3.011603, max: 3.029570 14:41:28 DEBUG opendrift:643: No elements hit coastline. 14:41:28 DEBUG opendrift:733: No elements hit seafloor. 14:41:28 DEBUG opendrift:1695: No elements to deactivate 14:41:28 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:28 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069997 m/s - 0.070911 m/s) 14:41:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:28 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:28 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:28 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:28 DEBUG opendrift:733: No elements hit seafloor. 14:41:28 DEBUG opendrift:2055: ====================================================================== 14:41:28 INFO opendrift:2056: 2025-03-12 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated) 14:41:28 DEBUG opendrift:2062: 0 elements scheduled. 14:41:28 DEBUG opendrift:2064: ====================================================================== 14:41:28 DEBUG opendrift:2075: 60.15613109549774 <- latitude -> 60.17276744611716 14:41:28 DEBUG opendrift:2080: 4.44587467576985 <- longitude -> 4.4529289691108636 14:41:28 DEBUG opendrift:2083: z = 0.0 14:41:28 DEBUG opendrift:2086: --------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:28 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:28 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:28 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:28 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 00:00:00 (before) 2025-03-12 01:00:00 (after) 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:29 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-03-12 00:00:00) 14:41:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 00:00:00) in space (linearNDFast) 14:41:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:29 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55413619465688 and -65.54708190155092 degrees. 14:41:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55413619465688 and -65.54708190155092 degrees. 14:41:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:29 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:29 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:29 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:29 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.063053 (min) -0.0344588 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.202547 (min) 0.242134 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.674592 (min) -0.673365 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.920306 (min) -0.81104 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0.61582 (min) 0.683217 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.27153e-07 (min) -1.65125e-07 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.046 (min) 297.443 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:29 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:29 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.025975, mean: 0.028319, max: 0.030219 14:41:29 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:29 DEBUG opendrift.models.physics_methods:905: min: 0.878024, mean: 0.916700, max: 0.947044 14:41:29 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 0.878024, mean: 0.916700, max: 0.947044 14:41:29 DEBUG opendrift:643: No elements hit coastline. 14:41:29 DEBUG opendrift:733: No elements hit seafloor. 14:41:29 DEBUG opendrift:1695: No elements to deactivate 14:41:29 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:29 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.020551 m/s - 0.022167 m/s) 14:41:29 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:29 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:29 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:29 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:29 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:29 DEBUG opendrift:733: No elements hit seafloor. 14:41:29 DEBUG opendrift:2055: ====================================================================== 14:41:29 INFO opendrift:2056: 2025-03-12 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated) 14:41:29 DEBUG opendrift:2062: 0 elements scheduled. 14:41:29 DEBUG opendrift:2064: ====================================================================== 14:41:29 DEBUG opendrift:2075: 60.1631426967501 <- latitude -> 60.1809898861937 14:41:29 DEBUG opendrift:2080: 4.442454987503516 <- longitude -> 4.447838850844548 14:41:29 DEBUG opendrift:2083: z = 0.0 14:41:29 DEBUG opendrift:2086: --------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:29 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:29 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:29 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:29 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:29 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 01:00:00 (before) 2025-03-12 02:00:00 (after) 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:30 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-12 01:00:00) 14:41:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 01:00:00) in space (linearNDFast) 14:41:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:30 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55755588425863 and -65.55217201051076 degrees. 14:41:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55755588425863 and -65.55217201051076 degrees. 14:41:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:30 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:30 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:30 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:30 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0308056 (min) 0.00212295 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.217931 (min) 0.261691 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.841113 (min) -0.840365 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.872642 (min) -0.645456 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.18444 (min) -1.90665 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -3.01842e-05 (min) -2.99409e-05 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.169 (min) 297.677 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:30 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:30 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.099677, mean: 0.126699, max: 0.136119 14:41:30 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:30 DEBUG opendrift.models.physics_methods:905: min: 1.719998, mean: 1.938743, max: 2.009969 14:41:30 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.719998, mean: 1.938743, max: 2.009969 14:41:30 DEBUG opendrift:643: No elements hit coastline. 14:41:30 DEBUG opendrift:733: No elements hit seafloor. 14:41:30 DEBUG opendrift:1695: No elements to deactivate 14:41:30 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:30 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.040259 m/s - 0.047046 m/s) 14:41:30 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:30 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:30 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:30 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:30 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:30 DEBUG opendrift:733: No elements hit seafloor. 14:41:30 DEBUG opendrift:2055: ====================================================================== 14:41:30 INFO opendrift:2056: 2025-03-12 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated) 14:41:30 DEBUG opendrift:2062: 0 elements scheduled. 14:41:30 DEBUG opendrift:2064: ====================================================================== 14:41:30 DEBUG opendrift:2075: 60.168955405159096 <- latitude -> 60.18800420105855 14:41:30 DEBUG opendrift:2080: 4.4415613850070175 <- longitude -> 4.444875561675657 14:41:30 DEBUG opendrift:2083: z = 0.0 14:41:30 DEBUG opendrift:2086: --------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:30 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:30 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:30 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:30 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:30 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 02:00:00 (before) 2025-03-12 03:00:00 (after) 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:31 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-12 02:00:00) 14:41:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 02:00:00) in space (linearNDFast) 14:41:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:31 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:31 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5584494836981 and -65.55513530136439 degrees. 14:41:31 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5584494836981 and -65.55513530136439 degrees. 14:41:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:31 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:31 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:31 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:31 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.000851687 (min) 0.0181117 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243188 (min) 0.286456 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.924892 (min) -0.92412 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.628575 (min) 0.659744 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: y_wind: -2.69357 (min) -2.68294 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.75431e-06 (min) 9.03994e-06 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.487 (min) 298.023 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:31 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:31 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.187458, mean: 0.187697, max: 0.188201 14:41:31 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:31 DEBUG opendrift.models.physics_methods:905: min: 2.358747, mean: 2.360253, max: 2.363417 14:41:31 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 2.358747, mean: 2.360253, max: 2.363417 14:41:31 DEBUG opendrift:643: No elements hit coastline. 14:41:31 DEBUG opendrift:733: No elements hit seafloor. 14:41:31 DEBUG opendrift:1695: No elements to deactivate 14:41:31 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:31 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.055210 m/s - 0.055319 m/s) 14:41:31 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:31 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:31 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:31 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:31 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:31 DEBUG opendrift:733: No elements hit seafloor. 14:41:31 DEBUG opendrift:2055: ====================================================================== 14:41:31 INFO opendrift:2056: 2025-03-12 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated) 14:41:31 DEBUG opendrift:2062: 0 elements scheduled. 14:41:31 DEBUG opendrift:2064: ====================================================================== 14:41:31 DEBUG opendrift:2075: 60.17512735623333 <- latitude -> 60.19550659049653 14:41:31 DEBUG opendrift:2080: 4.4431010589507585 <- longitude -> 4.445918647651449 14:41:31 DEBUG opendrift:2083: z = 0.0 14:41:31 DEBUG opendrift:2086: --------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:31 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:31 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:31 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:31 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:31 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:31 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:31 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 03:00:00 (before) 2025-03-12 04:00:00 (after) 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:32 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-03-12 03:00:00) 14:41:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 03:00:00) in space (linearNDFast) 14:41:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:32 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55690980342587 and -65.55409221820001 degrees. 14:41:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55690980342587 and -65.55409221820001 degrees. 14:41:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:32 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:32 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:32 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:32 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00204075 (min) 0.011655 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.259334 (min) 0.300769 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.899956 (min) -0.899084 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.5647 (min) -0.125816 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.30646 (min) -4.25872 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.26114e-06 (min) -5.16838e-06 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.039 (min) 298.695 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:32 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:32 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.446553, mean: 0.458004, max: 0.463884 14:41:32 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:32 DEBUG opendrift.models.physics_methods:905: min: 3.640541, mean: 3.686907, max: 3.710514 14:41:32 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.640541, mean: 3.686907, max: 3.710514 14:41:32 DEBUG opendrift:643: No elements hit coastline. 14:41:32 DEBUG opendrift:733: No elements hit seafloor. 14:41:32 DEBUG opendrift:1695: No elements to deactivate 14:41:32 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:32 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085212 m/s - 0.086849 m/s) 14:41:32 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:32 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:32 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:32 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:32 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:32 DEBUG opendrift:733: No elements hit seafloor. 14:41:32 DEBUG opendrift:2055: ====================================================================== 14:41:32 INFO opendrift:2056: 2025-03-12 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated) 14:41:32 DEBUG opendrift:2062: 0 elements scheduled. 14:41:32 DEBUG opendrift:2064: ====================================================================== 14:41:32 DEBUG opendrift:2075: 60.18080178754406 <- latitude -> 60.20241884062712 14:41:32 DEBUG opendrift:2080: 4.443155653911397 <- longitude -> 4.445622606222014 14:41:32 DEBUG opendrift:2083: z = 0.0 14:41:32 DEBUG opendrift:2086: --------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:32 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:32 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:32 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:32 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 04:00:00 (before) 2025-03-12 05:00:00 (after) 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:33 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x2) for time before (2025-03-12 04:00:00) 14:41:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 04:00:00) in space (linearNDFast) 14:41:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:33 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55685520675057 and -65.55438826079236 degrees. 14:41:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55685520675057 and -65.55438826079236 degrees. 14:41:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:33 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:33 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:33 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0167875 (min) -0.0117355 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.262454 (min) 0.297483 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.808032 (min) -0.806957 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.32688 (min) -0.936692 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.51094 (min) -4.47622 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.66524e-05 (min) 3.67481e-05 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.476 (min) 299.301 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:33 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.521029, mean: 0.523157, max: 0.541360 14:41:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:33 DEBUG opendrift.models.physics_methods:905: min: 3.932424, mean: 3.940435, max: 4.008415 14:41:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 3.932424, mean: 3.940435, max: 4.008415 14:41:33 DEBUG opendrift:643: No elements hit coastline. 14:41:33 DEBUG opendrift:733: No elements hit seafloor. 14:41:33 DEBUG opendrift:1695: No elements to deactivate 14:41:33 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:33 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.092044 m/s - 0.093822 m/s) 14:41:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:33 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:33 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:33 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:33 DEBUG opendrift:733: No elements hit seafloor. 14:41:33 DEBUG opendrift:2055: ====================================================================== 14:41:33 INFO opendrift:2056: 2025-03-12 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated) 14:41:33 DEBUG opendrift:2062: 0 elements scheduled. 14:41:33 DEBUG opendrift:2064: ====================================================================== 14:41:33 DEBUG opendrift:2075: 60.18638038072281 <- latitude -> 60.20911277747212 14:41:33 DEBUG opendrift:2080: 4.440754320934729 <- longitude -> 4.44322797755251 14:41:33 DEBUG opendrift:2083: z = 0.0 14:41:33 DEBUG opendrift:2086: --------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:33 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:33 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:33 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 05:00:00 (before) 2025-03-12 06:00:00 (after) 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:34 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x2) for time before (2025-03-12 05:00:00) 14:41:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 05:00:00) in space (linearNDFast) 14:41:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:34 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55925654065857 and -65.55678288825047 degrees. 14:41:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.55925654065857 and -65.55678288825047 degrees. 14:41:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:34 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0546489 (min) -0.045324 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.243211 (min) 0.273722 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.67454 (min) -0.672509 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.19702 (min) -2.05782 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.7355 (min) -5.62789 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.92937e-05 (min) 4.99109e-05 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.753 (min) 299.851 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:34 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.897850, mean: 0.906148, max: 0.913914 14:41:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:34 DEBUG opendrift.models.physics_methods:905: min: 5.162160, mean: 5.185954, max: 5.208134 14:41:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.162160, mean: 5.185954, max: 5.208134 14:41:34 DEBUG opendrift:643: No elements hit coastline. 14:41:34 DEBUG opendrift:733: No elements hit seafloor. 14:41:34 DEBUG opendrift:1695: No elements to deactivate 14:41:34 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:34 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120827 m/s - 0.121903 m/s) 14:41:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:34 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:34 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:34 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:34 DEBUG opendrift:733: No elements hit seafloor. 14:41:34 DEBUG opendrift:2055: ====================================================================== 14:41:34 INFO opendrift:2056: 2025-03-12 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated) 14:41:34 DEBUG opendrift:2062: 0 elements scheduled. 14:41:34 DEBUG opendrift:2064: ====================================================================== 14:41:34 DEBUG opendrift:2075: 60.190567807461576 <- latitude -> 60.214311445621206 14:41:34 DEBUG opendrift:2080: 4.434648939106246 <- longitude -> 4.437114556664389 14:41:34 DEBUG opendrift:2083: z = 0.0 14:41:34 DEBUG opendrift:2086: --------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:34 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:34 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:34 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:34 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 06:00:00 (before) 2025-03-12 07:00:00 (after) 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:35 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x2) for time before (2025-03-12 06:00:00) 14:41:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 06:00:00) in space (linearNDFast) 14:41:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:35 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.56536192518865 and -65.56289630818 degrees. 14:41:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.56536192518865 and -65.56289630818 degrees. 14:41:35 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:35 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:35 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:35 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:35 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0984019 (min) -0.0858185 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.212034 (min) 0.239484 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.494732 (min) -0.491043 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.47331 (min) -2.46256 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.81739 (min) -4.64642 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.73426e-05 (min) 5.93255e-05 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.766 (min) 300.075 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:35 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:35 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.681580, mean: 0.696582, max: 0.720078 14:41:35 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:35 DEBUG opendrift.models.physics_methods:905: min: 4.497673, mean: 4.546856, max: 4.622950 14:41:35 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.497673, mean: 4.546856, max: 4.622950 14:41:35 DEBUG opendrift:643: No elements hit coastline. 14:41:35 DEBUG opendrift:733: No elements hit seafloor. 14:41:35 DEBUG opendrift:1695: No elements to deactivate 14:41:35 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:35 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105274 m/s - 0.108206 m/s) 14:41:35 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:35 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:35 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:35 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:35 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:35 DEBUG opendrift:733: No elements hit seafloor. 14:41:35 DEBUG opendrift:2055: ====================================================================== 14:41:35 INFO opendrift:2056: 2025-03-12 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated) 14:41:35 DEBUG opendrift:2062: 0 elements scheduled. 14:41:35 DEBUG opendrift:2064: ====================================================================== 14:41:35 DEBUG opendrift:2075: 60.19431341728135 <- latitude -> 60.219040096783296 14:41:35 DEBUG opendrift:2080: 4.425240252454003 <- longitude -> 4.427752399715077 14:41:35 DEBUG opendrift:2083: z = 0.0 14:41:35 DEBUG opendrift:2086: --------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:35 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:35 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:35 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:35 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:35 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:35 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:35 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:35 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:35 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:35 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:35 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 07:00:00 (before) 2025-03-12 08:00:00 (after) 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:36 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x23x2) for time before (2025-03-12 07:00:00) 14:41:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 07:00:00) in space (linearNDFast) 14:41:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:36 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:36 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5747706086833 and -65.5722584643879 degrees. 14:41:36 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.5747706086833 and -65.5722584643879 degrees. 14:41:36 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:36 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:36 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:36 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:36 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.128524 (min) -0.109517 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.168367 (min) 0.19436 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.277023 (min) -0.271733 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.01458 (min) -1.97518 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: y_wind: -4.77112 (min) -4.67496 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.82112e-05 (min) 5.902e-05 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.581 (min) 300.035 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:36 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:36 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.637435, mean: 0.643048, max: 0.655957 14:41:36 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:36 DEBUG opendrift.models.physics_methods:905: min: 4.349583, mean: 4.368676, max: 4.412323 14:41:36 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.349583, mean: 4.368676, max: 4.412323 14:41:36 DEBUG opendrift:643: No elements hit coastline. 14:41:36 DEBUG opendrift:733: No elements hit seafloor. 14:41:36 DEBUG opendrift:1695: No elements to deactivate 14:41:36 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:36 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101808 m/s - 0.103276 m/s) 14:41:36 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:36 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:36 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:36 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:36 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:36 DEBUG opendrift:733: No elements hit seafloor. 14:41:36 DEBUG opendrift:2055: ====================================================================== 14:41:36 INFO opendrift:2056: 2025-03-12 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated) 14:41:36 DEBUG opendrift:2062: 0 elements scheduled. 14:41:36 DEBUG opendrift:2064: ====================================================================== 14:41:36 DEBUG opendrift:2075: 60.196696343242735 <- latitude -> 60.222295201770294 14:41:36 DEBUG opendrift:2080: 4.414523977727897 <- longitude -> 4.418080036510836 14:41:36 DEBUG opendrift:2083: z = 0.0 14:41:36 DEBUG opendrift:2086: --------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:36 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:36 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:36 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:36 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:36 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:36 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:36 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:36 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:36 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:36 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:36 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:36 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 08:00:00 (before) 2025-03-12 09:00:00 (after) 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:37 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x23x2) for time before (2025-03-12 08:00:00) 14:41:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 08:00:00) in space (linearNDFast) 14:41:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:37 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:37 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.58548688104871 and -65.5819308352107 degrees. 14:41:37 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.58548688104871 and -65.5819308352107 degrees. 14:41:37 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:37 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:37 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:37 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:37 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.121411 (min) -0.0925122 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.110579 (min) 0.137623 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.107975 (min) -0.102504 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.32885 (min) -2.19203 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.47006 (min) -5.4019 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 3.25604e-05 (min) 3.28464e-05 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 297.227 (min) 299.675 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:37 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:37 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.849391, mean: 0.851837, max: 0.854642 14:41:37 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:37 DEBUG opendrift.models.physics_methods:905: min: 5.020921, mean: 5.028146, max: 5.036416 14:41:37 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.020921, mean: 5.028146, max: 5.036416 14:41:37 DEBUG opendrift:643: No elements hit coastline. 14:41:37 DEBUG opendrift:733: No elements hit seafloor. 14:41:37 DEBUG opendrift:1695: No elements to deactivate 14:41:37 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:37 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.117521 m/s - 0.117884 m/s) 14:41:37 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:37 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:37 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:37 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:37 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:37 DEBUG opendrift:733: No elements hit seafloor. 14:41:37 DEBUG opendrift:2055: ====================================================================== 14:41:37 INFO opendrift:2056: 2025-03-12 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated) 14:41:37 DEBUG opendrift:2062: 0 elements scheduled. 14:41:37 DEBUG opendrift:2064: ====================================================================== 14:41:37 DEBUG opendrift:2075: 60.196778968666266 <- latitude -> 60.223244430994036 14:41:37 DEBUG opendrift:2080: 4.404139703136204 <- longitude -> 4.409168453504208 14:41:37 DEBUG opendrift:2083: z = 0.0 14:41:37 DEBUG opendrift:2086: --------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:37 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:37 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:37 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:37 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:37 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:37 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:37 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:37 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:37 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:37 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:37 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 09:00:00 (before) 2025-03-12 10:00:00 (after) 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:38 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x2) for time before (2025-03-12 09:00:00) 14:41:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 09:00:00) in space (linearNDFast) 14:41:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:38 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.59587116809777 and -65.59084242344082 degrees. 14:41:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.59587116809777 and -65.59084242344082 degrees. 14:41:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:38 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:38 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:38 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:38 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0789935 (min) -0.0435095 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0495806 (min) 0.0830375 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0432305 (min) -0.0380106 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.49752 (min) -2.46434 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: y_wind: -5.03324 (min) -4.98978 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.46013e-06 (min) -1.88779e-06 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.702 (min) 299.043 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:38 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:38 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.764367, mean: 0.766774, max: 0.772600 14:41:38 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:38 DEBUG opendrift.models.physics_methods:905: min: 4.763001, mean: 4.770491, max: 4.788581 14:41:38 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 4.763001, mean: 4.770491, max: 4.788581 14:41:38 DEBUG opendrift:643: No elements hit coastline. 14:41:38 DEBUG opendrift:733: No elements hit seafloor. 14:41:38 DEBUG opendrift:1695: No elements to deactivate 14:41:38 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:38 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111484 m/s - 0.112083 m/s) 14:41:38 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:38 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:38 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:38 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:38 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:38 DEBUG opendrift:733: No elements hit seafloor. 14:41:38 DEBUG opendrift:2055: ====================================================================== 14:41:38 INFO opendrift:2056: 2025-03-12 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated) 14:41:38 DEBUG opendrift:2062: 0 elements scheduled. 14:41:38 DEBUG opendrift:2064: ====================================================================== 14:41:38 DEBUG opendrift:2075: 60.19512829220409 <- latitude -> 60.22268867442713 14:41:38 DEBUG opendrift:2080: 4.396321816503979 <- longitude -> 4.403095683541549 14:41:38 DEBUG opendrift:2083: z = 0.0 14:41:38 DEBUG opendrift:2086: --------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:38 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:38 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:38 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:38 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:38 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:38 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:38 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:38 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 10:00:00 (before) 2025-03-12 11:00:00 (after) 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:39 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x2) for time before (2025-03-12 10:00:00) 14:41:39 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 10:00:00) in space (linearNDFast) 14:41:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:39 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60368905110803 and -65.59691519025421 degrees. 14:41:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60368905110803 and -65.59691519025421 degrees. 14:41:39 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:39 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:39 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:39 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:39 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0314749 (min) -0.0017466 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0107602 (min) 0.0239018 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.13455 (min) -0.131279 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.06592 (min) -2.04224 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: y_wind: -6.12711 (min) -5.93977 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.65088e-05 (min) -4.58763e-05 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 296.178 (min) 298.445 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:39 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:39 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.970510, mean: 1.007464, max: 1.028513 14:41:39 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:39 DEBUG opendrift.models.physics_methods:905: min: 5.366975, mean: 5.468144, max: 5.525029 14:41:39 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 5.366975, mean: 5.468144, max: 5.525029 14:41:39 DEBUG opendrift:643: No elements hit coastline. 14:41:39 DEBUG opendrift:733: No elements hit seafloor. 14:41:39 DEBUG opendrift:1695: No elements to deactivate 14:41:39 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:39 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125621 m/s - 0.129321 m/s) 14:41:39 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:39 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:39 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:39 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:39 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:39 DEBUG opendrift:733: No elements hit seafloor. 14:41:39 DEBUG opendrift:2055: ====================================================================== 14:41:39 INFO opendrift:2056: 2025-03-12 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated) 14:41:39 DEBUG opendrift:2062: 0 elements scheduled. 14:41:39 DEBUG opendrift:2064: ====================================================================== 14:41:39 DEBUG opendrift:2075: 60.190946579432335 <- latitude -> 60.21949408997058 14:41:39 DEBUG opendrift:2080: 4.3915938758089705 <- longitude -> 4.400331894967438 14:41:39 DEBUG opendrift:2083: z = 0.0 14:41:39 DEBUG opendrift:2086: --------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:39 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:39 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:39 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:39 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:39 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:39 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:39 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:39 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:39 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:39 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:39 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 11:00:00 (before) 2025-03-12 12:00:00 (after) 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:41 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x2) for time before (2025-03-12 11:00:00) 14:41:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 11:00:00) in space (linearNDFast) 14:41:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:41 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60841697967797 and -65.59967897231019 degrees. 14:41:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.60841697967797 and -65.59967897231019 degrees. 14:41:41 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:41 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:41 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:41 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:41 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00241935 (min) 0.0238869 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0612442 (min) -0.0336308 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.35 (min) -0.349771 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.56145 (min) -1.52892 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: y_wind: -7.10647 (min) -6.93699 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.2108e-05 (min) -7.19549e-05 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 295.599 (min) 297.857 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:41 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:41 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.243776, mean: 1.280978, max: 1.299853 14:41:41 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:41 DEBUG opendrift.models.physics_methods:905: min: 6.075762, mean: 6.165916, max: 6.211217 14:41:41 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 6.075762, mean: 6.165916, max: 6.211217 14:41:41 DEBUG opendrift:643: No elements hit coastline. 14:41:41 DEBUG opendrift:733: No elements hit seafloor. 14:41:41 DEBUG opendrift:1695: No elements to deactivate 14:41:41 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:41 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142211 m/s - 0.145382 m/s) 14:41:41 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:41 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:41 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:41 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:41 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:41 DEBUG opendrift:733: No elements hit seafloor. 14:41:41 DEBUG opendrift:2055: ====================================================================== 14:41:41 INFO opendrift:2056: 2025-03-12 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated) 14:41:41 DEBUG opendrift:2062: 0 elements scheduled. 14:41:41 DEBUG opendrift:2064: ====================================================================== 14:41:41 DEBUG opendrift:2075: 60.18448896597094 <- latitude -> 60.21380657680177 14:41:41 DEBUG opendrift:2080: 4.389765376284699 <- longitude -> 4.399855762539824 14:41:41 DEBUG opendrift:2083: z = 0.0 14:41:41 DEBUG opendrift:2086: --------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:41 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:41 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:41 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:41 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:41 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:41 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:41 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:41 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:41 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:41 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:41 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:41 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 12:00:00 (before) 2025-03-12 13:00:00 (after) 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:42 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x2) for time before (2025-03-12 12:00:00) 14:41:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 12:00:00) in space (linearNDFast) 14:41:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:42 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61024549305344 and -65.60015511341696 degrees. 14:41:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61024549305344 and -65.60015511341696 degrees. 14:41:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:42 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:42 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:42 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:42 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0191289 (min) 0.0317657 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.101012 (min) -0.0832586 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.616366 (min) -0.614962 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.1488 (min) -1.11408 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: y_wind: -8.1013 (min) -8.0754 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -7.04255e-05 (min) -6.97557e-05 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 294.934 (min) 297.225 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:42 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:42 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 1.636681, mean: 1.640462, max: 1.645055 14:41:42 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:42 DEBUG opendrift.models.physics_methods:905: min: 6.969660, mean: 6.977706, max: 6.987468 14:41:42 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 6.969660, mean: 6.977706, max: 6.987468 14:41:42 DEBUG opendrift:643: No elements hit coastline. 14:41:42 DEBUG opendrift:733: No elements hit seafloor. 14:41:42 DEBUG opendrift:1695: No elements to deactivate 14:41:42 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:42 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.163134 m/s - 0.163551 m/s) 14:41:42 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:42 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:42 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:42 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:42 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:42 DEBUG opendrift:733: No elements hit seafloor. 14:41:42 DEBUG opendrift:2055: ====================================================================== 14:41:42 INFO opendrift:2056: 2025-03-12 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated) 14:41:42 DEBUG opendrift:2062: 0 elements scheduled. 14:41:42 DEBUG opendrift:2064: ====================================================================== 14:41:42 DEBUG opendrift:2075: 60.17620064337355 <- latitude -> 60.20579000901091 14:41:42 DEBUG opendrift:2080: 4.389515825299916 <- longitude -> 4.400327995746956 14:41:42 DEBUG opendrift:2083: z = 0.0 14:41:42 DEBUG opendrift:2086: --------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:42 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:42 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:42 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:42 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:42 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:42 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:42 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:42 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:42 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 13:00:00 (before) 2025-03-12 14:00:00 (after) 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:43 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x2) for time before (2025-03-12 13:00:00) 14:41:43 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 13:00:00) in space (linearNDFast) 14:41:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:43 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61049503365919 and -65.59968287203614 degrees. 14:41:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61049503365919 and -65.59968287203614 degrees. 14:41:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:43 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:43 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:43 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:43 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0157157 (min) 0.0346649 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.135031 (min) -0.119186 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.8292 (min) -0.825892 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.611914 (min) -0.547855 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: y_wind: -9.62087 (min) -9.49905 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -4.76196e-05 (min) -4.69695e-05 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 294.13 (min) 296.449 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:43 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:43 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.228916, mean: 2.262280, max: 2.284388 14:41:43 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:43 DEBUG opendrift.models.physics_methods:905: min: 8.133481, mean: 8.194111, max: 8.234069 14:41:43 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 8.133481, mean: 8.194111, max: 8.234069 14:41:43 DEBUG opendrift:643: No elements hit coastline. 14:41:43 DEBUG opendrift:733: No elements hit seafloor. 14:41:43 DEBUG opendrift:1695: No elements to deactivate 14:41:43 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:43 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.190375 m/s - 0.192729 m/s) 14:41:43 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:43 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:43 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:43 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:43 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:43 DEBUG opendrift:733: No elements hit seafloor. 14:41:43 DEBUG opendrift:2055: ====================================================================== 14:41:43 INFO opendrift:2056: 2025-03-12 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated) 14:41:43 DEBUG opendrift:2062: 0 elements scheduled. 14:41:43 DEBUG opendrift:2064: ====================================================================== 14:41:43 DEBUG opendrift:2075: 60.16605563930085 <- latitude -> 60.19569811867742 14:41:43 DEBUG opendrift:2080: 4.389824852646387 <- longitude -> 4.4017825886560695 14:41:43 DEBUG opendrift:2083: z = 0.0 14:41:43 DEBUG opendrift:2086: --------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:43 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:43 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:43 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:43 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:43 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:43 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:43 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:43 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:43 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 14:00:00 (before) 2025-03-12 15:00:00 (after) 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:44 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x2) for time before (2025-03-12 14:00:00) 14:41:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 14:00:00) in space (linearNDFast) 14:41:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:44 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6101860109564 and -65.59822828385316 degrees. 14:41:44 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6101860109564 and -65.59822828385316 degrees. 14:41:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:44 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:44 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:44 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:44 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00300811 (min) 0.0327355 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.157764 (min) -0.14006 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.946156 (min) -0.94133 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.950155 (min) -0.862773 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: y_wind: -10.8838 (min) -10.7254 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -1.73347e-05 (min) -1.6491e-05 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 293.238 (min) 295.466 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:44 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:44 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.848129, mean: 2.902071, max: 2.936230 14:41:44 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:44 DEBUG opendrift.models.physics_methods:905: min: 9.194103, mean: 9.280731, max: 9.335222 14:41:44 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.194103, mean: 9.280731, max: 9.335222 14:41:44 DEBUG opendrift:643: No elements hit coastline. 14:41:44 DEBUG opendrift:733: No elements hit seafloor. 14:41:44 DEBUG opendrift:1695: No elements to deactivate 14:41:44 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:44 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.215200 m/s - 0.218503 m/s) 14:41:44 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:44 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:44 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:44 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:44 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:44 DEBUG opendrift:733: No elements hit seafloor. 14:41:44 DEBUG opendrift:2055: ====================================================================== 14:41:44 INFO opendrift:2056: 2025-03-12 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated) 14:41:44 DEBUG opendrift:2062: 0 elements scheduled. 14:41:44 DEBUG opendrift:2064: ====================================================================== 14:41:44 DEBUG opendrift:2075: 60.154442907198316 <- latitude -> 60.18391305409495 14:41:44 DEBUG opendrift:2080: 4.388787194452517 <- longitude -> 4.402786427298424 14:41:44 DEBUG opendrift:2083: z = 0.0 14:41:44 DEBUG opendrift:2086: --------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:44 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:44 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:44 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:44 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:44 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:44 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:44 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:44 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 15:00:00 (before) 2025-03-12 16:00:00 (after) 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:45 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x25x2) for time before (2025-03-12 15:00:00) 14:41:45 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 15:00:00) in space (linearNDFast) 14:41:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:45 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61122368331338 and -65.59722444736606 degrees. 14:41:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61122368331338 and -65.59722444736606 degrees. 14:41:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:45 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:45 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:45 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:45 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0011233 (min) 0.0206138 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.168695 (min) -0.143781 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.952757 (min) -0.946005 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.848161 (min) -0.809741 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.7601 (min) -11.6713 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 8.18128e-06 (min) 8.60776e-06 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 292.292 (min) 294.196 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:45 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:45 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.368676, mean: 3.389499, max: 3.418290 14:41:45 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:45 DEBUG opendrift.models.physics_methods:905: min: 9.999061, mean: 10.029910, max: 10.072425 14:41:45 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.999061, mean: 10.029910, max: 10.072425 14:41:45 DEBUG opendrift:643: No elements hit coastline. 14:41:45 DEBUG opendrift:733: No elements hit seafloor. 14:41:45 DEBUG opendrift:1695: No elements to deactivate 14:41:45 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:45 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.234041 m/s - 0.235758 m/s) 14:41:45 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:45 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:45 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:45 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:45 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:45 DEBUG opendrift:733: No elements hit seafloor. 14:41:45 DEBUG opendrift:2055: ====================================================================== 14:41:45 INFO opendrift:2056: 2025-03-12 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated) 14:41:45 DEBUG opendrift:2062: 0 elements scheduled. 14:41:45 DEBUG opendrift:2064: ====================================================================== 14:41:45 DEBUG opendrift:2075: 60.14161602743006 <- latitude -> 60.17172492267888 14:41:45 DEBUG opendrift:2080: 4.387614221306152 <- longitude -> 4.402990806772375 14:41:45 DEBUG opendrift:2083: z = 0.0 14:41:45 DEBUG opendrift:2086: --------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:45 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:45 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:45 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:45 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:45 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:45 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:45 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:45 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 16:00:00 (before) 2025-03-12 17:00:00 (after) 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:46 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x24x2) for time before (2025-03-12 16:00:00) 14:41:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 16:00:00) in space (linearNDFast) 14:41:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:46 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61239666098729 and -65.59702007626846 degrees. 14:41:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61239666098729 and -65.59702007626846 degrees. 14:41:46 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:46 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:46 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:46 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:46 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.00230935 (min) 0.00780302 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.160005 (min) -0.122587 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.886696 (min) -0.879622 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0.388501 (min) 0.493276 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: y_wind: -10.9928 (min) -10.8534 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 2.65739e-05 (min) 2.72763e-05 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.497 (min) 292.804 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:46 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:46 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 2.903751, mean: 2.930178, max: 2.976425 14:41:46 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:46 DEBUG opendrift.models.physics_methods:905: min: 9.283446, mean: 9.325574, max: 9.398901 14:41:46 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.283446, mean: 9.325574, max: 9.398901 14:41:46 DEBUG opendrift:643: No elements hit coastline. 14:41:46 DEBUG opendrift:733: No elements hit seafloor. 14:41:46 DEBUG opendrift:1695: No elements to deactivate 14:41:46 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:46 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.217291 m/s - 0.219994 m/s) 14:41:46 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:46 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:46 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:46 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:46 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:46 DEBUG opendrift:733: No elements hit seafloor. 14:41:46 DEBUG opendrift:2055: ====================================================================== 14:41:46 INFO opendrift:2056: 2025-03-12 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated) 14:41:46 DEBUG opendrift:2062: 0 elements scheduled. 14:41:46 DEBUG opendrift:2064: ====================================================================== 14:41:46 DEBUG opendrift:2075: 60.1295278951293 <- latitude -> 60.160750155592524 14:41:46 DEBUG opendrift:2080: 4.388434789732548 <- longitude -> 4.403656579638614 14:41:46 DEBUG opendrift:2083: z = 0.0 14:41:46 DEBUG opendrift:2086: --------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:46 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:46 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:46 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:46 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:46 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:46 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:46 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:46 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:46 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:46 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:46 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 17:00:00 (before) 2025-03-12 18:00:00 (after) 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:47 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 26x25x2) for time before (2025-03-12 17:00:00) 14:41:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 17:00:00) in space (linearNDFast) 14:41:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:47 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61157609687474 and -65.5963543081512 degrees. 14:41:47 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61157609687474 and -65.5963543081512 degrees. 14:41:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:47 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:47 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:47 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:47 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0368798 (min) -0.0139554 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.143739 (min) -0.109701 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.761663 (min) -0.755385 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.784688 (min) -0.689881 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: y_wind: -11.2165 (min) -11.1133 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 4.03037e-05 (min) 4.08012e-05 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.045 (min) 291.684 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:47 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:47 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.053377, mean: 3.077973, max: 3.106655 14:41:47 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:47 DEBUG opendrift.models.physics_methods:905: min: 9.519624, mean: 9.557879, max: 9.602319 14:41:47 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 9.519624, mean: 9.557879, max: 9.602319 14:41:47 DEBUG opendrift:643: No elements hit coastline. 14:41:47 DEBUG opendrift:733: No elements hit seafloor. 14:41:47 DEBUG opendrift:1695: No elements to deactivate 14:41:47 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:47 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222819 m/s - 0.224755 m/s) 14:41:47 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:47 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:47 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:47 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:47 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:47 DEBUG opendrift:733: No elements hit seafloor. 14:41:47 DEBUG opendrift:2055: ====================================================================== 14:41:47 INFO opendrift:2056: 2025-03-12 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated) 14:41:47 DEBUG opendrift:2062: 0 elements scheduled. 14:41:47 DEBUG opendrift:2064: ====================================================================== 14:41:47 DEBUG opendrift:2075: 60.1182994745394 <- latitude -> 60.149859258518816 14:41:47 DEBUG opendrift:2080: 4.386477276775258 <- longitude -> 4.400374819365382 14:41:47 DEBUG opendrift:2083: z = 0.0 14:41:47 DEBUG opendrift:2086: --------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:47 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:47 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:47 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:47 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:47 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:47 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:47 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:47 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 18:00:00 (before) 2025-03-12 19:00:00 (after) 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:48 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x2) for time before (2025-03-12 18:00:00) 14:41:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 18:00:00) in space (linearNDFast) 14:41:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:48 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6135336033826 and -65.59963607183664 degrees. 14:41:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6135336033826 and -65.59963607183664 degrees. 14:41:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:48 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:48 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:48 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:48 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0553837 (min) -0.0317018 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.16504 (min) -0.125281 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.590551 (min) -0.587919 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: x_wind: -0.696884 (min) -0.628789 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.8715 (min) -12.7952 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.2954e-05 (min) 5.38609e-05 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 290.324 (min) 291.433 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:48 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:48 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.039344, mean: 4.066110, max: 4.085361 14:41:48 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:48 DEBUG opendrift.models.physics_methods:905: min: 10.949266, mean: 10.985479, max: 11.011456 14:41:48 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.949266, mean: 10.985479, max: 11.011456 14:41:48 DEBUG opendrift:643: No elements hit coastline. 14:41:48 DEBUG opendrift:733: No elements hit seafloor. 14:41:48 DEBUG opendrift:1695: No elements to deactivate 14:41:48 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:48 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256282 m/s - 0.257738 m/s) 14:41:48 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:48 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:48 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:48 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:48 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:48 DEBUG opendrift:733: No elements hit seafloor. 14:41:48 DEBUG opendrift:2055: ====================================================================== 14:41:48 INFO opendrift:2056: 2025-03-12 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated) 14:41:48 DEBUG opendrift:2062: 0 elements scheduled. 14:41:48 DEBUG opendrift:2064: ====================================================================== 14:41:48 DEBUG opendrift:2075: 60.10514362560048 <- latitude -> 60.13749317667786 14:41:48 DEBUG opendrift:2080: 4.383437712507952 <- longitude -> 4.395888128161786 14:41:48 DEBUG opendrift:2083: z = 0.0 14:41:48 DEBUG opendrift:2086: --------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:48 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:48 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:48 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:48 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:48 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:48 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:48 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:48 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 19:00:00 (before) 2025-03-12 20:00:00 (after) 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:49 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x2) for time before (2025-03-12 19:00:00) 14:41:49 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 19:00:00) in space (linearNDFast) 14:41:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:49 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61657318551826 and -65.60412277159234 degrees. 14:41:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.61657318551826 and -65.60412277159234 degrees. 14:41:49 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:49 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:49 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:49 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:49 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.0722881 (min) -0.0492351 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.208304 (min) -0.177153 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.378615 (min) -0.377836 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: x_wind: -1.63055 (min) -1.40256 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.4919 (min) -12.4433 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 6.07007e-05 (min) 6.16399e-05 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.644 (min) 291.948 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:49 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:49 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.857327, mean: 3.883764, max: 3.904176 14:41:49 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:49 DEBUG opendrift.models.physics_methods:905: min: 10.699730, mean: 10.736329, max: 10.764511 14:41:49 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.699730, mean: 10.736329, max: 10.764511 14:41:49 DEBUG opendrift:643: No elements hit coastline. 14:41:49 DEBUG opendrift:733: No elements hit seafloor. 14:41:49 DEBUG opendrift:1695: No elements to deactivate 14:41:49 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:49 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.250441 m/s - 0.251957 m/s) 14:41:49 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:49 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:49 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:49 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:49 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:49 DEBUG opendrift:733: No elements hit seafloor. 14:41:49 DEBUG opendrift:2055: ====================================================================== 14:41:49 INFO opendrift:2056: 2025-03-12 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated) 14:41:49 DEBUG opendrift:2062: 0 elements scheduled. 14:41:49 DEBUG opendrift:2064: ====================================================================== 14:41:49 DEBUG opendrift:2075: 60.0909119079398 <- latitude -> 60.12348638430669 14:41:49 DEBUG opendrift:2080: 4.378116242118216 <- longitude -> 4.389395661182302 14:41:49 DEBUG opendrift:2083: z = 0.0 14:41:49 DEBUG opendrift:2086: --------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:49 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:49 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:49 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:49 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:49 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:49 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:49 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:49 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:49 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:49 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:49 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:49 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 20:00:00 (before) 2025-03-12 21:00:00 (after) 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:50 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x2) for time before (2025-03-12 20:00:00) 14:41:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 20:00:00) in space (linearNDFast) 14:41:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:50 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6218946500734 and -65.61061523365812 degrees. 14:41:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.6218946500734 and -65.61061523365812 degrees. 14:41:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:50 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:50 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:50 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:50 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.085398 (min) -0.0610107 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.263484 (min) -0.232202 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.171022 (min) -0.167751 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.58705 (min) -2.52234 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.341 (min) -12.1634 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 5.04893e-05 (min) 5.09368e-05 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.332 (min) 292.941 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:50 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:50 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.796021, mean: 3.853658, max: 3.911204 14:41:50 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:50 DEBUG opendrift.models.physics_methods:905: min: 10.614362, mean: 10.694606, max: 10.774195 14:41:50 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.614362, mean: 10.694606, max: 10.774195 14:41:50 DEBUG opendrift:643: No elements hit coastline. 14:41:50 DEBUG opendrift:733: No elements hit seafloor. 14:41:50 DEBUG opendrift:1695: No elements to deactivate 14:41:50 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:50 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.248443 m/s - 0.252184 m/s) 14:41:50 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:50 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:50 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:50 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:50 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:50 DEBUG opendrift:733: No elements hit seafloor. 14:41:50 DEBUG opendrift:2055: ====================================================================== 14:41:50 INFO opendrift:2056: 2025-03-12 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated) 14:41:50 DEBUG opendrift:2062: 0 elements scheduled. 14:41:50 DEBUG opendrift:2064: ====================================================================== 14:41:50 DEBUG opendrift:2075: 60.07472735402641 <- latitude -> 60.10800821965434 14:41:50 DEBUG opendrift:2080: 4.370817183074629 <- longitude -> 4.380610347379046 14:41:50 DEBUG opendrift:2083: z = 0.0 14:41:50 DEBUG opendrift:2086: --------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:50 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:50 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:50 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:50 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:50 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:50 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:50 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:50 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 21:00:00 (before) 2025-03-12 22:00:00 (after) 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:51 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x25x2) for time before (2025-03-12 21:00:00) 14:41:51 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 21:00:00) in space (linearNDFast) 14:41:51 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:51 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.62919370781646 and -65.61940056293385 degrees. 14:41:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.62919370781646 and -65.61940056293385 degrees. 14:41:51 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:51 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:51 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:51 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:51 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.106938 (min) -0.0696892 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.33592 (min) -0.306414 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0417913 (min) -0.0387839 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.70636 (min) -2.64071 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.8038 (min) -12.7141 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 1.75512e-05 (min) 1.77872e-05 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 289.992 (min) 294.429 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:51 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:51 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 4.156724, mean: 4.184865, max: 4.204430 14:41:51 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:51 DEBUG opendrift.models.physics_methods:905: min: 11.107215, mean: 11.144744, max: 11.170771 14:41:51 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 11.107215, mean: 11.144744, max: 11.170771 14:41:51 DEBUG opendrift:643: No elements hit coastline. 14:41:51 DEBUG opendrift:733: No elements hit seafloor. 14:41:51 DEBUG opendrift:1695: No elements to deactivate 14:41:51 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:51 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259979 m/s - 0.261466 m/s) 14:41:51 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:51 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:51 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:51 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:51 DEBUG opendrift:874: to be seeded: 0, already seeded 1000 14:41:51 DEBUG opendrift:733: No elements hit seafloor. 14:41:51 DEBUG opendrift:2055: ====================================================================== 14:41:51 INFO opendrift:2056: 2025-03-12 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated) 14:41:51 DEBUG opendrift:2062: 0 elements scheduled. 14:41:51 DEBUG opendrift:2064: ====================================================================== 14:41:51 DEBUG opendrift:2075: 60.05598836288247 <- latitude -> 60.089832941990664 14:41:51 DEBUG opendrift:2080: 4.3628911176078065 <- longitude -> 4.3701997289201815 14:41:51 DEBUG opendrift:2083: z = 0.0 14:41:51 DEBUG opendrift:2086: --------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:51 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:51 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:51 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:51 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:51 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:51 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:51 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:596: 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'] 14:41:51 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:601: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be 14:41:51 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:51 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:51 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements 14:41:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2025-03-12 22:00:00 (before) 2025-03-12 23:00:00 (after) 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_wind for invalid values 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_wind for invalid values 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values 14:41:52 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 27x24x2) for time before (2025-03-12 22:00:00) 14:41:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-03-12 22:00:00) in space (linearNDFast) 14:41:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator. 14:41:52 DEBUG opendrift.readers.basereader.structured:390: No time interpolation needed - right on time. 14:41:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.63711979834406 and -65.62981119355625 degrees. 14:41:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -65.63711979834406 and -65.62981119355625 degrees. 14:41:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:52 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:52 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 14:41:52 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 14:41:52 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: -0.133818 (min) -0.080181 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.372494 (min) -0.341337 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: -0.0575883 (min) -0.0546977 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: x_wind: -2.31336 (min) -2.29116 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: y_wind: -12.2091 (min) -12.173 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: -2.53688e-05 (min) -2.49514e-05 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 291.834 (min) 296.341 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:52 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 3.774402, mean: 3.788378, max: 3.798551 14:41:52 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind 14:41:52 DEBUG opendrift.models.physics_methods:905: min: 10.584094, mean: 10.603669, max: 10.617898 14:41:52 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 10.584094, mean: 10.603669, max: 10.617898 14:41:52 DEBUG opendrift:643: No elements hit coastline. 14:41:52 DEBUG opendrift:733: No elements hit seafloor. 14:41:52 DEBUG opendrift:1695: No elements to deactivate 14:41:52 DEBUG opendrift:2129: Calling OceanDrift.update() 14:41:52 DEBUG opendrift.models.physics_methods:759: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247735 m/s - 0.248526 m/s) 14:41:52 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available 14:41:52 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface 14:41:52 DEBUG opendrift:1646: Horizontal diffusivity is 0, no random walk. 14:41:52 DEBUG opendrift:2144: 1000 active elements (0 deactivated) 14:41:52 DEBUG opendrift:2173: Cleaning up 14:41:52 DEBUG opendrift.models.basemodel.environment:595: ---------------------------------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask'] 14:41:52 DEBUG opendrift.models.basemodel.environment:597: ---------------------------------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask 14:41:52 DEBUG opendrift.models.basemodel.environment:602: ---------------------------------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1000 elements 14:41:52 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements 14:41:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:41:52 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values 14:41:52 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed. 14:41:52 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements. 14:41:52 DEBUG opendrift.models.basemodel.environment:765: --------------------------------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups 14:41:52 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY ------------- 14:41:52 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max) 14:41:52 DEBUG opendrift.models.basemodel.environment:895: --------------------------------- 14:41:52 DEBUG opendrift:643: No elements hit coastline. 14:41:52 DEBUG opendrift:2256: Updating minval and maxval 14:41:53 DEBUG opendrift:2336: Writing to file 14:41:53 DEBUG opendrift:1695: No elements to deactivate 14:41:53 DEBUG opendrift:100: Changed mode from Mode.Run to Mode.Result 14:41:53 DEBUG opendrift:2398: Setting up map: corners=None, fast=False, lscale=None 14:41:53 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 1) with Cartopy shapereader... 14:42:04 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 5) with Cartopy shapereader... 14:42:04 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 6) with Cartopy shapereader... 14:42:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:05 DEBUG opendrift:3043: Saving animation.. 14:42:05 INFO opendrift:4600: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif... 14:42:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.954743003845215, 5.019613647460939, 59.797310638427724, 60.42324371337889).. 14:42:46 DEBUG opendrift:4638: MPLBACKEND = agg 14:42:46 DEBUG opendrift:4639: DISPLAY = None 14:42:46 DEBUG opendrift:4640: Time to save animation: 0:00:40.681494 14:42:46 INFO opendrift:3036: Time to make animation: 0:00:53.060320 .. GENERATED FROM PYTHON SOURCE LINES 47-48 .. image:: /gallery/animations/example_manual_aggregate_0.gif .. rst-class:: sphx-glr-timing **Total running time of the script:** (22 minutes 38.743 seconds) .. _sphx_glr_download_gallery_example_manual_aggregate.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: example_manual_aggregate.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: example_manual_aggregate.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: example_manual_aggregate.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_