LCS Norkyst

from datetime import datetime, timedelta

from opendrift.readers import reader_netCDF_CF_generic
from opendrift.models.oceandrift import OceanDrift

o = OceanDrift(loglevel=20)  # Set loglevel to 0 for debug information

# Norkyst ocean model
reader_norkyst = reader_netCDF_CF_generic.Reader(o.test_data_folder() + '16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc')

#o.add_reader([reader_norkyst, reader_arome])
o.add_reader([reader_norkyst])
13:13:57 INFO    opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.2 / v1.11.2-11-g21e4c60)
13:13:57 INFO    opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:13:57 INFO    opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}

Calculating attracting/backwards FTLE/LCS at 20 hours

lcs = o.calculate_ftle(
    time=reader_norkyst.start_time + timedelta(hours=20),
    time_step=timedelta(minutes=30),
    duration=timedelta(hours=5), delta=1000,
    RLCS=False)
13:13:57 INFO    opendrift.models.basemodel:4619: No reader provided, using first available:
13:13:57 INFO    opendrift.models.basemodel:4621: /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:13:57 INFO    opendrift.models.basemodel:4655: Calculating LCS for 2015-11-16 20:00:00
13:13:57 DEBUG   opendrift.config:161: Adding 15 config items from __init__
13:13:57 DEBUG   opendrift.config:171:   Overwriting config item readers:max_number_of_fails
13:13:57 DEBUG   opendrift.config:161: Adding 5 config items from __init__
13:13:57 INFO    opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.2 / v1.11.2-11-g21e4c60)
13:13:57 DEBUG   opendrift.config:161: Adding 17 config items from oceandrift
13:13:57 DEBUG   opendrift.config:171:   Overwriting config item seed:z
13:13:57 DEBUG   opendrift.readers.basereader.variables:602: Setting buffer size 7 for reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc, assuming a maximum average speed of 1 m/s and time span of 1:00:00
13:13:57 DEBUG   opendrift.models.basemodel.environment:335: Added reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:13:57 INFO    opendrift.models.basemodel.environment:220: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.0 m/s. Adding a customised landmask may be faster...
13:13:57 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:14:04 DEBUG   opendrift.models.basemodel.environment:335: Added reader global_landmask
13:14:04 INFO    opendrift.models.basemodel.environment:247: Fallback values will be used for the following variables which have no readers:
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_height: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    x_wind: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    y_wind: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    upward_sea_water_velocity: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    ocean_vertical_diffusivity: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_significant_height: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_to_direction: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_significant_height: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_to_direction: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_mean_period: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_significant_height: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    surface_downward_x_stress: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    surface_downward_y_stress: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    turbulent_kinetic_energy: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    turbulent_generic_length_scale: 0.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    ocean_mixed_layer_thickness: 50.000000
13:14:04 INFO    opendrift.models.basemodel.environment:250:    sea_floor_depth_below_sea_level: 10000.000000
13:14:04 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready
13:14:04 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run
13:14:04 DEBUG   opendrift.models.basemodel:1751:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.2
  Platform: Linux, 5.15.0-1053-aws
  68.56776428222656 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.13.0
  Matplotlib version 3.8.3
  NetCDF4 version 1.6.1
  Xarray version 2024.3.0
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

13:14:04 DEBUG   opendrift.models.basemodel:1765: No output file is specified, neglecting export_buffer_length
13:14:04 INFO    opendrift.models.basemodel:1818: Backwards simulation, starting from last seeded element
13:14:04 DEBUG   opendrift.models.basemodel:1883: Finalizing environment and preparing readers for simulation coverage ([2.2013544948622012, 59.159435890816354, 7.35122037810838, 62.04106078276763]) and time (2015-11-17 01:00:00 to 2015-11-16 20:00:00)
13:14:04 DEBUG   opendrift.models.basemodel.environment:182:    Preparing /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc for extent [2.2013544948622012, 59.159435890816354, 7.35122037810838, 62.04106078276763]
13:14:04 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc before starting new simulation
13:14:04 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:04 DEBUG   opendrift.models.basemodel.environment:182:    Preparing global_landmask for extent [2.2013544948622012, 59.159435890816354, 7.35122037810838, 62.04106078276763]
13:14:04 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for global_landmask
13:14:04 INFO    opendrift.models.basemodel:1901: Backwards simulation, starting at time of last seeded element
13:14:05 INFO    opendrift.models.basemodel:908: Using existing reader for land_binary_mask
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 38400 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:05 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:05 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:05 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:05 INFO    opendrift.models.basemodel:922: Moving 12635 out of 38400 points from land to water
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 129444 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:05 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:05 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:05 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:05 DEBUG   opendrift.models.basemodel:863: to be seeded: 38400, already seeded 0
13:14:05 DEBUG   opendrift.models.basemodel:881: Released 38400 new elements.
13:14:05 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:05 INFO    opendrift.models.basemodel:2011: 2015-11-17 01:00:00 - step 1 of 10 - 38400 active elements (0 deactivated)
13:14:05 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:05 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:05 DEBUG   opendrift.models.basemodel:2030:               59.321598 <- latitude  -> 61.8789
13:14:05 DEBUG   opendrift.models.basemodel:2035:               2.5316298 <- longitude -> 7.0316296
13:14:05 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:05 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 38400 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:05 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-17 01:00:00 (before)
                2015-11-17 02:00:00 (after)
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-17 01:00:00)
13:14:05 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-17 01:00:00) in space  (linearNDFast)
13:14:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12405 elements, expanding data 1
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3708 elements, expanding data 2
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1048 elements, expanding data 3
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 4
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 5
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 6
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11777 elements, expanding data 1
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6006 elements, expanding data 2
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1835 elements, expanding data 3
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 783 elements, expanding data 4
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 5
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 6
13:14:05 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.49583141638729 and -63.117471856891406 degrees.
13:14:05 DEBUG   opendrift.readers.basereader.variables:823: Masking 1100 elements outside coverage
13:14:05 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1100 elements.
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 38400 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:05 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:05 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:05 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1100 elements
13:14:05 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1100 elements
13:14:05 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:05 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:05 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.602597 (min) 0.954241 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.550107 (min) 1.32265 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:05 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:05 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:05 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:05 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:05 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:05 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:05 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:05 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:05 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:05 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:05 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:05 DEBUG   opendrift.models.basemodel:2096: 38400 active elements (0 deactivated)
13:14:05 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:05 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:05 INFO    opendrift.models.basemodel:2011: 2015-11-17 00:30:00 - step 2 of 10 - 38400 active elements (0 deactivated)
13:14:05 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:05 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:05 DEBUG   opendrift.models.basemodel:2030:               59.31888802830117 <- latitude  -> 61.87080768954727
13:14:05 DEBUG   opendrift.models.basemodel:2035:               2.531629800796509 <- longitude -> 7.03162956237793
13:14:05 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:05 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 38400 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:05 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-17 00:00:00 (before)
                2015-11-17 01:00:00 (after)
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:05 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-17 00:00:00)
13:14:05 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-17 00:00:00) in space  (linearNDFast)
13:14:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12385 elements, expanding data 1
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3824 elements, expanding data 2
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 3
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 734 elements, expanding data 4
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 5
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 6
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11812 elements, expanding data 1
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 2
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2366 elements, expanding data 3
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 811 elements, expanding data 4
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 5
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 6
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 7
13:14:05 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-17 01:00:00) in space  (linearNDFast)
13:14:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:14:05 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-17 00:00:00, weight 0.50) and
                      after (2015-11-17 01:00:00, weight 0.50) in time
13:14:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.50242588910687 and -63.129045540255554 degrees.
13:14:05 DEBUG   opendrift.readers.basereader.variables:823: Masking 1202 elements outside coverage
13:14:05 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1202 elements.
13:14:05 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:05 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:05 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:05 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 38400 elements
13:14:05 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:06 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:06 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:06 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:06 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1202 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1202 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:06 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:06 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.584535 (min) 0.857934 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.528072 (min) 1.34275 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:06 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:06 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:06 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.basemodel:1656: Added status stranded
13:14:06 DEBUG   opendrift.models.basemodel:1667: 3558 elements scheduled for deactivation (stranded)
13:14:06 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:06 DEBUG   opendrift.models.basemodel:1687: Removed 3558 elements.
13:14:06 DEBUG   opendrift.models.basemodel:1690: Removed 3558 values from environment.
13:14:06 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:06 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:06 DEBUG   opendrift.models.basemodel:1699: Removed 3558 values from environment_profiles.
13:14:06 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:06 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:06 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:06 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:06 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:06 DEBUG   opendrift.models.basemodel:2096: 34842 active elements (3558 deactivated)
13:14:06 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:06 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:06 INFO    opendrift.models.basemodel:2011: 2015-11-17 00:00:00 - step 3 of 10 - 34842 active elements (3558 deactivated)
13:14:06 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:06 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:06 DEBUG   opendrift.models.basemodel:2030:               59.31888802830117 <- latitude  -> 61.86303454179827
13:14:06 DEBUG   opendrift.models.basemodel:2035:               2.5247095785023164 <- longitude -> 7.03162956237793
13:14:06 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:06 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:06 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:06 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 34842 elements
13:14:06 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:06 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-17 00:00:00 (before)
                2015-11-17 01:00:00 (after)
13:14:06 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-17 00:00:00) in space  (linearNDFast)
13:14:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:06 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.50960522778946 and -63.1252309081581 degrees.
13:14:06 DEBUG   opendrift.readers.basereader.variables:823: Masking 1296 elements outside coverage
13:14:06 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1296 elements.
13:14:06 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:06 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:06 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 34842 elements
13:14:06 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:06 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:06 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:06 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:06 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1296 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1296 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:06 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:06 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.611058 (min) 0.844889 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.540273 (min) 1.38093 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:06 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:06 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:06 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.basemodel:1667: 2152 elements scheduled for deactivation (stranded)
13:14:06 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:06 DEBUG   opendrift.models.basemodel:1687: Removed 2152 elements.
13:14:06 DEBUG   opendrift.models.basemodel:1690: Removed 2152 values from environment.
13:14:06 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:06 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:06 DEBUG   opendrift.models.basemodel:1699: Removed 2152 values from environment_profiles.
13:14:06 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:06 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:06 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:06 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:06 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:06 DEBUG   opendrift.models.basemodel:2096: 32690 active elements (5710 deactivated)
13:14:06 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:06 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:06 INFO    opendrift.models.basemodel:2011: 2015-11-16 23:30:00 - step 4 of 10 - 32690 active elements (5710 deactivated)
13:14:06 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:06 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:06 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.85557893180999
13:14:06 DEBUG   opendrift.models.basemodel:2035:               2.5169085166481056 <- longitude -> 7.03162956237793
13:14:06 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:06 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:06 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:06 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 32690 elements
13:14:06 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:06 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 23:00:00 (before)
                2015-11-17 00:00:00 (after)
13:14:06 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:06 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:06 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-16 23:00:00)
13:14:06 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 23:00:00) in space  (linearNDFast)
13:14:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7162 elements, expanding data 1
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1908 elements, expanding data 2
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 587 elements, expanding data 3
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 4
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 313 elements, expanding data 5
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 6
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6906 elements, expanding data 1
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3335 elements, expanding data 2
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 3
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 4
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 5
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 6
13:14:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 7
13:14:06 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-17 00:00:00) in space  (linearNDFast)
13:14:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:06 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 23:00:00, weight 0.50) and
                      after (2015-11-17 00:00:00, weight 0.50) in time
13:14:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.50205144139723 and -63.12671498172039 degrees.
13:14:06 DEBUG   opendrift.readers.basereader.variables:823: Masking 1435 elements outside coverage
13:14:06 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1435 elements.
13:14:06 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:06 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:06 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 32690 elements
13:14:06 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:06 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:06 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:06 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:06 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1435 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1435 elements
13:14:06 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:06 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:06 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.578824 (min) 0.765314 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.52105 (min) 1.37273 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:06 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:06 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:06 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:06 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:06 DEBUG   opendrift.models.basemodel:1667: 2435 elements scheduled for deactivation (stranded)
13:14:06 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:07 DEBUG   opendrift.models.basemodel:1687: Removed 2435 elements.
13:14:07 DEBUG   opendrift.models.basemodel:1690: Removed 2435 values from environment.
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:07 DEBUG   opendrift.models.basemodel:1699: Removed 2435 values from environment_profiles.
13:14:07 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:07 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:07 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:07 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:07 DEBUG   opendrift.models.basemodel:2096: 30255 active elements (8145 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:07 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:07 INFO    opendrift.models.basemodel:2011: 2015-11-16 23:00:00 - step 5 of 10 - 30255 active elements (8145 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:07 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:07 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.84825639869646
13:14:07 DEBUG   opendrift.models.basemodel:2035:               2.5169085166481056 <- longitude -> 7.03162956237793
13:14:07 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:07 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 30255 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 23:00:00 (before)
                2015-11-17 00:00:00 (after)
13:14:07 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 23:00:00) in space  (linearNDFast)
13:14:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:07 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.50930391725905 and -63.13254458243373 degrees.
13:14:07 DEBUG   opendrift.readers.basereader.variables:823: Masking 1593 elements outside coverage
13:14:07 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1593 elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 30255 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:07 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:07 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:07 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1593 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1593 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:07 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.601971 (min) 0.766679 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.552493 (min) 1.38966 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:07 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.basemodel:1667: 1329 elements scheduled for deactivation (stranded)
13:14:07 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:07 DEBUG   opendrift.models.basemodel:1687: Removed 1329 elements.
13:14:07 DEBUG   opendrift.models.basemodel:1690: Removed 1329 values from environment.
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:07 DEBUG   opendrift.models.basemodel:1699: Removed 1329 values from environment_profiles.
13:14:07 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:07 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:07 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:07 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:07 DEBUG   opendrift.models.basemodel:2096: 28926 active elements (9474 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:07 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:07 INFO    opendrift.models.basemodel:2011: 2015-11-16 22:30:00 - step 6 of 10 - 28926 active elements (9474 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:07 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:07 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.841034476650435
13:14:07 DEBUG   opendrift.models.basemodel:2035:               2.5167582719181185 <- longitude -> 7.03162956237793
13:14:07 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:07 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 28926 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 22:00:00 (before)
                2015-11-16 23:00:00 (after)
13:14:07 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:07 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:07 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-16 22:00:00)
13:14:07 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 22:00:00) in space  (linearNDFast)
13:14:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3746 elements, expanding data 1
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 815 elements, expanding data 2
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 3
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 4
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 5
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 6
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3625 elements, expanding data 1
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 3
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 4
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 5
13:14:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 6
13:14:07 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 23:00:00) in space  (linearNDFast)
13:14:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:07 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 22:00:00, weight 0.50) and
                      after (2015-11-16 23:00:00, weight 0.50) in time
13:14:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.509104012365 and -63.13498762861861 degrees.
13:14:07 DEBUG   opendrift.readers.basereader.variables:823: Masking 1791 elements outside coverage
13:14:07 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1791 elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 28926 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:07 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:07 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:07 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1791 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1791 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:07 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.610783 (min) 0.735907 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.486867 (min) 1.36593 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:07 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.basemodel:1667: 922 elements scheduled for deactivation (stranded)
13:14:07 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:07 DEBUG   opendrift.models.basemodel:1687: Removed 922 elements.
13:14:07 DEBUG   opendrift.models.basemodel:1690: Removed 922 values from environment.
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:07 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:07 DEBUG   opendrift.models.basemodel:1699: Removed 922 values from environment_profiles.
13:14:07 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:07 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:07 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:07 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:07 DEBUG   opendrift.models.basemodel:2096: 28004 active elements (10396 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:07 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:07 INFO    opendrift.models.basemodel:2011: 2015-11-16 22:00:00 - step 7 of 10 - 28004 active elements (10396 deactivated)
13:14:07 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:07 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:07 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.835341262841
13:14:07 DEBUG   opendrift.models.basemodel:2035:               2.5167582719181185 <- longitude -> 7.03162956237793
13:14:07 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:07 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 28004 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:07 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 22:00:00 (before)
                2015-11-16 23:00:00 (after)
13:14:07 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 22:00:00) in space  (linearNDFast)
13:14:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:07 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.5165866287038 and -63.12957699924856 degrees.
13:14:07 DEBUG   opendrift.readers.basereader.variables:823: Masking 1918 elements outside coverage
13:14:07 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 1918 elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:07 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:07 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 28004 elements
13:14:07 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:07 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:07 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:07 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:07 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 1918 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 1918 elements
13:14:07 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:07 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:07 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.611086 (min) 0.791347 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.460772 (min) 1.35431 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:07 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:07 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:07 DEBUG   opendrift.models.basemodel:1667: 602 elements scheduled for deactivation (stranded)
13:14:07 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:08 DEBUG   opendrift.models.basemodel:1687: Removed 602 elements.
13:14:08 DEBUG   opendrift.models.basemodel:1690: Removed 602 values from environment.
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:08 DEBUG   opendrift.models.basemodel:1699: Removed 602 values from environment_profiles.
13:14:08 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:08 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:08 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:08 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:08 DEBUG   opendrift.models.basemodel:2096: 27402 active elements (10998 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:08 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:08 INFO    opendrift.models.basemodel:2011: 2015-11-16 21:30:00 - step 8 of 10 - 27402 active elements (10998 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:08 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:08 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.83214198187864
13:14:08 DEBUG   opendrift.models.basemodel:2035:               2.510774975724004 <- longitude -> 7.03162956237793
13:14:08 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:08 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 27402 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 21:00:00 (before)
                2015-11-16 22:00:00 (after)
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-16 21:00:00)
13:14:08 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 21:00:00) in space  (linearNDFast)
13:14:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2565 elements, expanding data 1
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 4
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 5
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 6
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 662 elements, expanding data 2
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 4
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 5
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 6
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 7
13:14:08 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 22:00:00) in space  (linearNDFast)
13:14:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 1
13:14:08 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 21:00:00, weight 0.50) and
                      after (2015-11-16 22:00:00, weight 0.50) in time
13:14:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.51450520285383 and -63.12488828697283 degrees.
13:14:08 DEBUG   opendrift.readers.basereader.variables:823: Masking 2079 elements outside coverage
13:14:08 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 2079 elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 27402 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:08 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 2079 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 2079 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:08 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.642142 (min) 0.689762 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.455475 (min) 1.32856 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:08 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.basemodel:1667: 418 elements scheduled for deactivation (stranded)
13:14:08 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:08 DEBUG   opendrift.models.basemodel:1687: Removed 418 elements.
13:14:08 DEBUG   opendrift.models.basemodel:1690: Removed 418 values from environment.
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:08 DEBUG   opendrift.models.basemodel:1699: Removed 418 values from environment_profiles.
13:14:08 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:08 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:08 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:08 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:08 DEBUG   opendrift.models.basemodel:2096: 26984 active elements (11416 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:08 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:08 INFO    opendrift.models.basemodel:2011: 2015-11-16 21:00:00 - step 9 of 10 - 26984 active elements (11416 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:08 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:08 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.82991354193009
13:14:08 DEBUG   opendrift.models.basemodel:2035:               2.510774975724004 <- longitude -> 7.03162956237793
13:14:08 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:08 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 26984 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 21:00:00 (before)
                2015-11-16 22:00:00 (after)
13:14:08 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 21:00:00) in space  (linearNDFast)
13:14:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:08 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.51141744075946 and -63.128883509033514 degrees.
13:14:08 DEBUG   opendrift.readers.basereader.variables:823: Masking 2212 elements outside coverage
13:14:08 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 2212 elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 26984 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:08 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 2212 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 2212 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:08 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.675389 (min) 0.663882 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.444903 (min) 1.31548 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:08 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.basemodel:1667: 453 elements scheduled for deactivation (stranded)
13:14:08 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:08 DEBUG   opendrift.models.basemodel:1687: Removed 453 elements.
13:14:08 DEBUG   opendrift.models.basemodel:1690: Removed 453 values from environment.
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:08 DEBUG   opendrift.models.basemodel:1699: Removed 453 values from environment_profiles.
13:14:08 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:08 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:08 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:08 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:08 DEBUG   opendrift.models.basemodel:2096: 26531 active elements (11869 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 38400
13:14:08 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:08 INFO    opendrift.models.basemodel:2011: 2015-11-16 20:30:00 - step 10 of 10 - 26531 active elements (11869 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:08 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:08 DEBUG   opendrift.models.basemodel:2030:               59.31885382196212 <- latitude  -> 61.82877150410842
13:14:08 DEBUG   opendrift.models.basemodel:2035:               2.510774975724004 <- longitude -> 7.03162956237793
13:14:08 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:08 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 26531 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:08 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 20:00:00 (before)
                2015-11-16 21:00:00 (after)
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 301x201x1) for time before (2015-11-16 20:00:00)
13:14:08 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 20:00:00) in space  (linearNDFast)
13:14:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1972 elements, expanding data 1
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1905 elements, expanding data 1
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 541 elements, expanding data 2
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:14:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 5
13:14:08 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 21:00:00) in space  (linearNDFast)
13:14:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:08 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 20:00:00, weight 0.50) and
                      after (2015-11-16 21:00:00, weight 0.50) in time
13:14:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -67.50743348126485 and -63.12476031240174 degrees.
13:14:08 DEBUG   opendrift.readers.basereader.variables:823: Masking 2346 elements outside coverage
13:14:08 DEBUG   opendrift.models.basemodel.environment:775: Data missing for 2346 elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 26531 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:08 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for x_sea_water_velocity for 2346 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:799:     Using fallback value 0 for y_sea_water_velocity for 2346 elements
13:14:08 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:08 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:08 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.677757 (min) 0.588981 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.484314 (min) 1.30293 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:08 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:08 DEBUG   opendrift.models.basemodel:1667: 539 elements scheduled for deactivation (stranded)
13:14:08 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:08 DEBUG   opendrift.models.basemodel:1687: Removed 539 elements.
13:14:08 DEBUG   opendrift.models.basemodel:1690: Removed 539 values from environment.
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:08 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:08 DEBUG   opendrift.models.basemodel:1699: Removed 539 values from environment_profiles.
13:14:08 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:08 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:08 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:08 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:08 DEBUG   opendrift.models.basemodel:2096: 25992 active elements (12408 deactivated)
13:14:08 DEBUG   opendrift.models.basemodel:2125: Cleaning up
13:14:08 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:08 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:08 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 25992 elements
13:14:08 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:08 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:08 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:08 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:08 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:08 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:08 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 1 (max)
13:14:08 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:08 DEBUG   opendrift.models.basemodel:1667: 288 elements scheduled for deactivation (stranded)
13:14:08 DEBUG   opendrift.models.basemodel:1669:       (z: 0.000000 to 0.000000)
13:14:09 DEBUG   opendrift.models.basemodel:1687: Removed 288 elements.
13:14:09 DEBUG   opendrift.models.basemodel:1690: Removed 288 values from environment.
13:14:09 DEBUG   opendrift.models.basemodel:1695: remove items from profile for z
13:14:09 DEBUG   opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity
13:14:09 DEBUG   opendrift.models.basemodel:1699: Removed 288 values from environment_profiles.
13:14:09 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result

Simulation from beginning and up to 30 hours (time of LCS)

o = o.clone()
o.seed_elements(lon=4.4, lat=60.2, number=1000, radius=1000,
                time=reader_norkyst.start_time)
o.run(end_time=reader_norkyst.start_time+timedelta(hours=20),
      time_step=timedelta(minutes=30))

o.plot(lcs=lcs, vmin=1e-7, vmax=1e-4, colorbar=True, show_elements=True)
OpenDrift - OceanDrift 2015-11-16 00:00 to 2015-11-16 20:00 UTC (41 steps)
13:14:10 DEBUG   opendrift.models.oceandrift:117: No machine learning correction available.
13:14:10 DEBUG   opendrift.config:161: Adding 50 config items from environment
13:14:10 DEBUG   opendrift.config:161: Adding 5 config items from environment
13:14:10 DEBUG   opendrift.config:161: Adding 15 config items from __init__
13:14:10 DEBUG   opendrift.config:171:   Overwriting config item readers:max_number_of_fails
13:14:10 DEBUG   opendrift.config:161: Adding 5 config items from __init__
13:14:10 INFO    opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.2 / v1.11.2-11-g21e4c60)
13:14:10 DEBUG   opendrift.config:161: Adding 17 config items from oceandrift
13:14:10 DEBUG   opendrift.config:171:   Overwriting config item seed:z
13:14:10 DEBUG   opendrift.readers.basereader.variables:602: Setting buffer size 7 for reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc, assuming a maximum average speed of 1 m/s and time span of 1:00:00
13:14:10 DEBUG   opendrift.models.basemodel.environment:335: Added reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 INFO    opendrift.models.basemodel.environment:220: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.0 m/s. Adding a customised landmask may be faster...
13:14:10 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:14:10 DEBUG   opendrift.models.basemodel.environment:335: Added reader global_landmask
13:14:10 INFO    opendrift.models.basemodel.environment:247: Fallback values will be used for the following variables which have no readers:
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_height: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    x_wind: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    y_wind: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    upward_sea_water_velocity: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    ocean_vertical_diffusivity: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_significant_height: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_to_direction: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_swell_wave_significant_height: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_to_direction: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_mean_period: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_surface_wind_wave_significant_height: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    surface_downward_x_stress: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    surface_downward_y_stress: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    turbulent_kinetic_energy: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    turbulent_generic_length_scale: 0.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    ocean_mixed_layer_thickness: 50.000000
13:14:10 INFO    opendrift.models.basemodel.environment:250:    sea_floor_depth_below_sea_level: 10000.000000
13:14:10 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready
13:14:10 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run
13:14:10 DEBUG   opendrift.models.basemodel:1751:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.2
  Platform: Linux, 5.15.0-1053-aws
  68.56776428222656 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.13.0
  Matplotlib version 3.8.3
  NetCDF4 version 1.6.1
  Xarray version 2024.3.0
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

13:14:10 DEBUG   opendrift.models.basemodel:1765: No output file is specified, neglecting export_buffer_length
13:14:10 DEBUG   opendrift.models.basemodel:1883: Finalizing environment and preparing readers for simulation coverage ([3.039868187510094, 59.524473757357214, 5.754947829640785, 60.87711086788693]) and time (2015-11-16 00:00:00 to 2015-11-16 20:00:00)
13:14:10 DEBUG   opendrift.models.basemodel.environment:182:    Preparing /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc for extent [3.039868187510094, 59.524473757357214, 5.754947829640785, 60.87711086788693]
13:14:10 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc before starting new simulation
13:14:10 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:182:    Preparing global_landmask for extent [3.039868187510094, 59.524473757357214, 5.754947829640785, 60.87711086788693]
13:14:10 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for global_landmask
13:14:10 INFO    opendrift.models.basemodel:908: Using existing reader for land_binary_mask
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 INFO    opendrift.models.basemodel:920: All points are in ocean
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 1000, already seeded 0
13:14:10 DEBUG   opendrift.models.basemodel:881: Released 1000 new elements.
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 00:00:00 - step 1 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.173122 <- latitude  -> 60.228462
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.3450694 <- longitude -> 4.4497466
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 00:00:00 (before)
                2015-11-16 01:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:288: Fetched env-block (size 21x22x1) for time before (2015-11-16 00:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 00:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.69070013311476 and -65.5861555484419 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.107064 (min) 0.0702132 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.00394883 (min) 0.206883 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 00:30:00 - step 2 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.17569410372511 <- latitude  -> 60.22978265976762
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.34284747307894 <- longitude -> 4.4508620822485705
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 00:00:00 (before)
                2015-11-16 01:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x22x1) for time after (2015-11-16 01:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 00:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 01:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 00:00:00, weight 0.50) and
                      after (2015-11-16 01:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6929171525125 and -65.58507162423359 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.144318 (min) 0.010866 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.0126182 (min) 0.210263 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 01:00:00 - step 3 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.178560506036376 <- latitude  -> 60.23133877035875
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.339487150217138 <- longitude -> 4.451214570574691
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 01:00:00 (before)
                2015-11-16 02:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 01:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.69627102421026 and -65.58471414736013 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.193004 (min) -0.0352879 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.00886428 (min) 0.21451 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 01:30:00 - step 4 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.18176530496879 <- latitude  -> 60.23283776174961
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.334902612207955 <- longitude -> 4.449603965770703
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 01:00:00 (before)
                2015-11-16 02:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x23x1) for time after (2015-11-16 02:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 01:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 02:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 01:00:00, weight 0.50) and
                      after (2015-11-16 02:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7008475999066 and -65.58631712623563 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.211643 (min) -0.0529832 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.0529664 (min) 0.255338 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 02:00:00 - step 5 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.18589046181637 <- latitude  -> 60.23409076265183
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.328719639199782 <- longitude -> 4.446406611540644
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 02:00:00 (before)
                2015-11-16 03:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 02:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70701190070488 and -65.58950324005235 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.241868 (min) -0.0702022 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.0870882 (min) 0.287049 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 02:30:00 - step 6 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.19052231652099 <- latitude  -> 60.23638794326338
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.32086627468684 <- longitude -> 4.441796984778416
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 02:00:00 (before)
                2015-11-16 03:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x23x1) for time after (2015-11-16 03:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 02:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 03:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 02:00:00, weight 0.50) and
                      after (2015-11-16 03:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7148535890255 and -65.59409860639713 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.252694 (min) -0.0897628 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.103364 (min) 0.307076 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 03:00:00 - step 7 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.19516317487082 <- latitude  -> 60.24011921518776
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.312660998473705 <- longitude -> 4.436709336158074
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 03:00:00 (before)
                2015-11-16 04:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 03:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72304621754041 and -65.59917038265392 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.271526 (min) -0.106462 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.107804 (min) 0.31122 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 03:30:00 - step 8 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.19965669592543 <- latitude  -> 60.244226543936605
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.303843759507855 <- longitude -> 4.431455171116192
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 03:00:00 (before)
                2015-11-16 04:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 20x23x1) for time after (2015-11-16 04:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 03:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 04:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 03:00:00, weight 0.50) and
                      after (2015-11-16 04:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73184999442336 and -65.60440782676422 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.270349 (min) -0.124436 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.156622 (min) 0.350271 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 04:00:00 - step 9 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.20453674922126 <- latitude  -> 60.24900689356234
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.295140783367577 <- longitude -> 4.4265014102187665
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 04:00:00 (before)
                2015-11-16 05:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 04:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74053791530014 and -65.60934380532746 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.278257 (min) -0.141228 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.185071 (min) 0.403655 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 04:30:00 - step 10 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.210079524314665 <- latitude  -> 60.253935010511256
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.286233788420522 <- longitude -> 4.421665577711519
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 04:00:00 (before)
                2015-11-16 05:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x23x1) for time after (2015-11-16 05:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 04:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 05:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 04:00:00, weight 0.50) and
                      after (2015-11-16 05:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74942832544826 and -65.61416012413929 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.268595 (min) -0.124619 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.25058 (min) 0.451934 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 05:00:00 - step 11 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.21656951561043 <- latitude  -> 60.25991317321085
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.277555533431762 <- longitude -> 4.417618096815142
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 05:00:00 (before)
                2015-11-16 06:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 05:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75808813035837 and -65.6181872587873 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.274072 (min) -0.101338 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.244166 (min) 0.49961 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 05:30:00 - step 12 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.22403117529254 <- latitude  -> 60.266294340604645
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.268963841848807 <- longitude -> 4.414325945563667
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 05:00:00 (before)
                2015-11-16 06:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x23x1) for time after (2015-11-16 06:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 05:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 06:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 05:00:00, weight 0.50) and
                      after (2015-11-16 06:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7666591810453 and -65.62145819812969 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.246903 (min) -0.0827695 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.318971 (min) 0.560816 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 06:00:00 - step 13 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.232181512620144 <- latitude  -> 60.273095527736295
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.261389022748301 <- longitude -> 4.41163628039946
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 06:00:00 (before)
                2015-11-16 07:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 06:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.77421123919156 and -65.62412517328829 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.242703 (min) -0.0483288 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.351904 (min) 0.599343 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 06:30:00 - step 14 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.24123484004891 <- latitude  -> 60.27954893120551
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.255115949503643 <- longitude -> 4.410065332594717
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 06:00:00 (before)
                2015-11-16 07:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x24x1) for time after (2015-11-16 07:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 06:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 07:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 06:00:00, weight 0.50) and
                      after (2015-11-16 07:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78046020857474 and -65.62567334714282 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.206944 (min) -0.00562695 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.424942 (min) 0.624994 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 07:00:00 - step 15 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.25056372128921 <- latitude  -> 60.28677910315034
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.250382691464018 <- longitude -> 4.4098823713776225
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 07:00:00 (before)
                2015-11-16 08:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 07:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7851694408398 and -65.62583468022595 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.190838 (min) 0.0311369 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.44474 (min) 0.648279 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 07:30:00 - step 16 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.26037124941465 <- latitude  -> 60.2949344076132
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.248021039337327 <- longitude -> 4.410895095688107
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 07:00:00 (before)
                2015-11-16 08:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x24x1) for time after (2015-11-16 08:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 07:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 08:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 07:00:00, weight 0.50) and
                      after (2015-11-16 08:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78750771868329 and -65.62480166137753 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.137552 (min) 0.0645038 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.477143 (min) 0.640752 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 08:00:00 - step 17 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.270162921774755 <- latitude  -> 60.30287329566407
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.246398646748695 <- longitude -> 4.412993704588521
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 08:00:00 (before)
                2015-11-16 09:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 08:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78910870191328 and -65.62268395046658 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.108686 (min) 0.0881606 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.469105 (min) 0.648081 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 08:30:00 - step 18 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.28025093923014 <- latitude  -> 60.310635382198605
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.246617550355126 <- longitude -> 4.415862831222482
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 08:00:00 (before)
                2015-11-16 09:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x25x1) for time after (2015-11-16 09:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 08:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 09:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 08:00:00, weight 0.50) and
                      after (2015-11-16 09:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7888697241884 and -65.61979673967629 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.0424361 (min) 0.111015 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.485306 (min) 0.613906 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 09:00:00 - step 19 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.289744915371244 <- latitude  -> 60.31859009230486
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.247329353595212 <- longitude -> 4.419476793258151
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 09:00:00 (before)
                2015-11-16 10:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 09:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7881396485503 and -65.61616579007753 degrees.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:10 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:10 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:10 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:10 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.0392276 (min) 0.125647 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.468484 (min) 0.607678 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:10 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:10 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:10 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:10 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:10 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:10 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:10 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:10 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:10 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:10 INFO    opendrift.models.basemodel:2011: 2015-11-16 09:30:00 - step 20 of 40 - 1000 active elements (0 deactivated)
13:14:10 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:10 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:10 DEBUG   opendrift.models.basemodel:2030:               60.29947885804671 <- latitude  -> 60.32661604976426
13:14:10 DEBUG   opendrift.models.basemodel:2035:               4.249238039271058 <- longitude -> 4.423568240176386
13:14:10 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:10 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:10 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:10 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:10 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:10 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 09:00:00 (before)
                2015-11-16 10:00:00 (after)
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:10 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x24x1) for time after (2015-11-16 10:00:00)
13:14:10 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 09:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 10:00:00) in space  (linearNDFast)
13:14:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:10 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 09:00:00, weight 0.50) and
                      after (2015-11-16 10:00:00, weight 0.50) in time
13:14:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78621442131265 and -65.6120587634259 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.0197 (min) 0.142857 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.455961 (min) 0.536358 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 10:00:00 - step 21 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.30777963233944 <- latitude  -> 60.334781355598466
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.251799545893553 <- longitude -> 4.4282213043811165
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 10:00:00 (before)
                2015-11-16 11:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 10:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78363879824303 and -65.60739219493865 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.0353552 (min) 0.169366 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.422367 (min) 0.50588 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 10:30:00 - step 22 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.31519579238693 <- latitude  -> 60.34259204741693
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.255193401372256 <- longitude -> 4.433557926254914
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 10:00:00 (before)
                2015-11-16 11:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x25x1) for time after (2015-11-16 11:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 10:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 11:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 10:00:00, weight 0.50) and
                      after (2015-11-16 11:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78023338749568 and -65.60204411037977 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.115769 (min) 0.246668 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.320031 (min) 0.383939 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 11:00:00 - step 23 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.3204691479436 <- latitude  -> 60.34843078185904
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.261272266428568 <- longitude -> 4.441448848371987
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 11:00:00 (before)
                2015-11-16 12:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 11:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.77414987560414 and -65.5941482545922 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.172904 (min) 0.325887 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.212787 (min) 0.291677 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 11:30:00 - step 24 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.32404084785597 <- latitude  -> 60.35202276124035
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.270282577309961 <- longitude -> 4.451638180259313
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 11:00:00 (before)
                2015-11-16 12:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x25x1) for time after (2015-11-16 12:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 11:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 12:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 11:00:00, weight 0.50) and
                      after (2015-11-16 12:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76514187819053 and -65.58396043577058 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.197491 (min) 0.340337 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.0879399 (min) 0.167124 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 12:00:00 - step 25 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.32591393845688 <- latitude  -> 60.353469041183764
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.279492017762436 <- longitude -> 4.462611557558848
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 12:00:00 (before)
                2015-11-16 13:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 12:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75593864939046 and -65.57299365477851 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.20538 (min) 0.381225 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.0480901 (min) 0.0751204 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 12:30:00 - step 26 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.32600594979888 <- latitude  -> 60.35269616524901
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.289512740846482 <- longitude -> 4.474291140130499
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 12:00:00 (before)
                2015-11-16 13:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x26x1) for time after (2015-11-16 13:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 12:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 13:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 12:00:00, weight 0.50) and
                      after (2015-11-16 13:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74592873790652 and -65.56132584484767 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.192935 (min) 0.337662 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.146654 (min) -0.0126484 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 13:00:00 - step 27 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.32453030791051 <- latitude  -> 60.35032646742641
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.298815910931548 <- longitude -> 4.483848951122231
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 13:00:00 (before)
                2015-11-16 14:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 13:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73663888740188 and -65.5517806009278 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.15919 (min) 0.284721 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.249389 (min) -0.0871729 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 13:30:00 - step 28 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.321443677220444 <- latitude  -> 60.34639211225708
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.307247938885951 <- longitude -> 4.491175557230717
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 13:00:00 (before)
                2015-11-16 14:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x25x1) for time after (2015-11-16 14:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 13:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 14:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 13:00:00, weight 0.50) and
                      after (2015-11-16 14:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7282228346042 and -65.54446723939553 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.106226 (min) 0.219677 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.301644 (min) -0.176393 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 14:00:00 - step 29 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.31763346864326 <- latitude  -> 60.341802764317805
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.313735994203935 <- longitude -> 4.496007427367452
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 14:00:00 (before)
                2015-11-16 15:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 14:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72175067273824 and -65.53964762942209 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: 0.0413177 (min) 0.154898 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.363646 (min) -0.242581 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 14:30:00 - step 30 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.312810067425346 <- latitude  -> 60.33730608040014
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.317289102228396 <- longitude -> 4.498167142485911
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 14:00:00 (before)
                2015-11-16 15:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 21x25x1) for time after (2015-11-16 15:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 14:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 15:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 14:00:00, weight 0.50) and
                      after (2015-11-16 15:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71821213080668 and -65.53749878925109 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.0421117 (min) 0.0560853 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.386863 (min) -0.242587 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 15:00:00 - step 31 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.30775204684198 <- latitude  -> 60.33291606410884
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.317594484670246 <- longitude -> 4.497427732006024
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 15:00:00 (before)
                2015-11-16 16:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 15:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71791853495142 and -65.5382459564848 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.138122 (min) -0.0331415 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.399152 (min) -0.242192 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 15:30:00 - step 32 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.30251721449481 <- latitude  -> 60.32865862890597
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.314471570808984 <- longitude -> 4.493951497620673
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 15:00:00 (before)
                2015-11-16 16:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x24x1) for time after (2015-11-16 16:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 15:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 16:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 15:00:00, weight 0.50) and
                      after (2015-11-16 16:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72104951604221 and -65.54172696592217 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.22315 (min) -0.140103 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.355906 (min) -0.189111 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 16:00:00 - step 33 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.2982223791963 <- latitude  -> 60.325040993273305
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.308368931045469 <- longitude -> 4.488005627078497
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 16:00:00 (before)
                2015-11-16 17:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 16:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72715503013941 and -65.54767305324606 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.312989 (min) -0.238926 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.325101 (min) -0.137802 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 16:30:00 - step 34 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.29495857251338 <- latitude  -> 60.32222060434225
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.2997310681749115 <- longitude -> 4.47943067424648
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 16:00:00 (before)
                2015-11-16 17:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x24x1) for time after (2015-11-16 17:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 16:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 17:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 16:00:00, weight 0.50) and
                      after (2015-11-16 17:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73579069308043 and -65.55624355978239 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.372591 (min) -0.292557 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.207564 (min) -0.0470694 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 17:00:00 - step 35 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.29319156013748 <- latitude  -> 60.3205593026415
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.289278191324191 <- longitude -> 4.469802196059144
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 17:00:00 (before)
                2015-11-16 18:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 17:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74623648292058 and -65.56586327326515 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.438325 (min) -0.328664 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.0978763 (min) 0.0511958 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 17:30:00 - step 36 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.29257081376545 <- latitude  -> 60.3198766502779
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.27756703091882 <- longitude -> 4.459097855657531
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 17:00:00 (before)
                2015-11-16 18:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 22x24x1) for time after (2015-11-16 18:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 17:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 18:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 17:00:00, weight 0.50) and
                      after (2015-11-16 18:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75793648070335 and -65.57655419076757 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.452257 (min) -0.29683 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: -0.0141236 (min) 0.143613 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 18:00:00 - step 37 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.293312444831 <- latitude  -> 60.32102225860355
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.265066323062334 <- longitude -> 4.449429659915748
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 18:00:00 (before)
                2015-11-16 19:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 18:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.77042233583377 and -65.58620683108364 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.474649 (min) -0.279531 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.0867221 (min) 0.251759 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 18:30:00 - step 38 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.29536687518029 <- latitude  -> 60.3239652396427
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.252085490592861 <- longitude -> 4.440323763558706
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 18:00:00 (before)
                2015-11-16 19:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 23x24x1) for time after (2015-11-16 19:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 18:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 19:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 18:00:00, weight 0.50) and
                      after (2015-11-16 19:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78338485523133 and -65.5952939893446 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.453186 (min) -0.245495 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.173702 (min) 0.32572 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 19:00:00 - step 39 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.299024662065136 <- latitude  -> 60.32847537591
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.24050652793827 <- longitude -> 4.432325327122885
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 19:00:00 (before)
                2015-11-16 20:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 19:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:385: No time interpolation needed - right on time.
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.79494339230484 and -65.60327226570817 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.460352 (min) -0.219479 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.270981 (min) 0.445687 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:863: to be seeded: 0, already seeded 1000
13:14:11 DEBUG   opendrift.models.basemodel:2010: ======================================================================
13:14:11 INFO    opendrift.models.basemodel:2011: 2015-11-16 19:30:00 - step 40 of 40 - 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2017: 0 elements scheduled.
13:14:11 DEBUG   opendrift.models.basemodel:2019: ======================================================================
13:14:11 DEBUG   opendrift.models.basemodel:2030:               60.30429545401064 <- latitude  -> 60.334909657675695
13:14:11 DEBUG   opendrift.models.basemodel:2035:               4.229653857815266 <- longitude -> 4.425172933517797
13:14:11 DEBUG   opendrift.models.basemodel:2038:               z = 0.0
13:14:11 DEBUG   opendrift.models.basemodel:2041: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from /root/project/tests/test_data/16Nov2015_NorKyst_z_surface/norkyst800_subset_16Nov2015.nc
13:14:11 DEBUG   opendrift.readers.basereader.structured:219: Reader time:
                2015-11-16 19:00:00 (before)
                2015-11-16 20:00:00 (after)
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.structured:310: Fetched env-block (size 23x25x1) for time after (2015-11-16 20:00:00)
13:14:11 DEBUG   opendrift.readers.basereader.structured:331: Interpolating before (2015-11-16 19:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:337: Interpolating after (2015-11-16 20:00:00) in space  (linearNDFast)
13:14:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:14:11 DEBUG   opendrift.readers.basereader.structured:352: Interpolating before (2015-11-16 19:00:00, weight 0.50) and
                      after (2015-11-16 20:00:00, weight 0.50) in time
13:14:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.80577297809323 and -65.61040122781009 degrees.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:14:11 DEBUG   opendrift.models.basemodel.environment:813:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_sea_water_velocity: -0.386033 (min) -0.174838 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_sea_water_velocity: 0.386605 (min) 0.477163 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     x_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     y_wind: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     upward_sea_water_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_vertical_diffusivity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_x_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     surface_downward_y_stress: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_kinetic_energy: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     turbulent_generic_length_scale: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
13:14:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
13:14:11 DEBUG   opendrift.models.physics_methods:1058:    min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:2081: Calling OceanDrift.update()
13:14:11 DEBUG   opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift
13:14:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
13:14:11 DEBUG   opendrift.models.oceandrift:413: No vertical advection for elements at surface
13:14:11 DEBUG   opendrift.models.basemodel:1634: Horizontal diffusivity is 0, no random walk.
13:14:11 DEBUG   opendrift.models.basemodel:2096: 1000 active elements (0 deactivated)
13:14:11 DEBUG   opendrift.models.basemodel:2125: Cleaning up
13:14:11 DEBUG   opendrift.models.basemodel.environment:615: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask']
13:14:11 DEBUG   opendrift.models.basemodel.environment:617: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:621: Calling reader global_landmask
13:14:11 DEBUG   opendrift.models.basemodel.environment:622: ----------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:638: Data needed for 1000 elements
13:14:11 DEBUG   opendrift.readers.basereader.variables:746: Fetching variables from global_landmask
13:14:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:14:11 DEBUG   opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values
13:14:11 DEBUG   opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed.
13:14:11 DEBUG   opendrift.models.basemodel.environment:772: Obtained data for all elements.
13:14:11 DEBUG   opendrift.models.basemodel.environment:785: ---------------------------------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:786: Finished processing all variable groups
13:14:11 DEBUG   opendrift.models.basemodel.environment:913: ------------ SUMMARY -------------
13:14:11 DEBUG   opendrift.models.basemodel.environment:915:     land_binary_mask: 0 (min) 0 (max)
13:14:11 DEBUG   opendrift.models.basemodel.environment:917: ---------------------------------
13:14:11 DEBUG   opendrift.models.basemodel:1683: No elements to deactivate
13:14:11 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result
13:14:11 DEBUG   opendrift.models.basemodel:2332: Setting up map: corners=None, fast=False, lscale=None
13:14:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.8208213806152345, 4.898167037963868, 59.97312240600585, 60.5534698486328)..

(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2015-11-16 00:00 to 2015-11-16 20:00 UTC (41 steps)'}>, <Figure size 1012.87x1100 with 1 Axes>)

Total running time of the script: (1 minutes 4.785 seconds)

Gallery generated by Sphinx-Gallery