Skip to content

Instantly share code, notes, and snippets.

@rsignell-usgs
Created November 27, 2023 16:07
Show Gist options
  • Save rsignell-usgs/b955f777b90eb77cbe7a477ff3751713 to your computer and use it in GitHub Desktop.
Save rsignell-usgs/b955f777b90eb77cbe7a477ff3751713 to your computer and use it in GitHub Desktop.
cnaps_native.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"id": "cf5ce57f-608c-4021-bcf8-895984cfc649",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import numpy as np\n",
"from opendrift.readers import reader_ROMS_native\n",
"from opendrift.models.oceandrift import OceanDrift"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "a96360e0-df10-4498-9cb1-d7175a328256",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"fname = '/shared/users/rsignell/data/jzambon/nc64/his_20231027.nc'"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "82fb2b46-bf2f-485e-87b7-f396964d4881",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"00:45:50 DEBUG opendrift.config:156: Adding 15 config items from __init__\n",
"00:45:50 DEBUG opendrift.config:166: Overwriting config item readers:max_number_of_fails\n",
"00:45:50 DEBUG opendrift.config:156: Adding 5 config items from __init__\n",
"00:45:50 INFO opendrift.models.basemodel:528: OpenDriftSimulation initialised (version 1.10.7)\n",
"00:45:50 DEBUG opendrift.config:156: Adding 15 config items from oceandrift\n",
"00:45:50 DEBUG opendrift.config:166: Overwriting config item seed:z\n"
]
}
],
"source": [
"o = OceanDrift(loglevel=0) # Set loglevel to 0 for debug information"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "1c39b043-f077-4ed4-b7be-763e66c33312",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"00:45:50 INFO opendrift.readers.reader_ROMS_native:90: Opening dataset: /shared/users/rsignell/data/jzambon/nc64/his_20231027.nc\n",
"00:45:50 INFO opendrift.readers.reader_ROMS_native:107: Opening file with Dataset\n",
"00:45:50 INFO opendrift.readers.reader_ROMS_native:181: Read GLS parameters from file.\n",
"00:45:50 DEBUG opendrift.readers.reader_ROMS_native:232: The following ROMS vectors are considered east-north, and will not be rotated ['eastward_sea_water_velocity', 'northward_sea_water_velocity']\n",
"00:45:50 WARNING opendrift.readers.basereader.structured:44: No proj string or projection could be derived, using 'fakeproj'. This assumes that the variables are structured and gridded approximately equidistantly on the surface (i.e. in meters). This must be guaranteed by the user. You can get rid of this warning by supplying a valid projection to the reader.\n",
"00:45:50 INFO opendrift.readers.basereader.structured:59: Making interpolator for lon,lat to x,y conversion...\n",
"00:45:56 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 8 for reader roms native, assuming a maximum average speed of 5 m/s and time span of 3:00:00\n",
"00:45:56 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated\n",
"00:45:56 DEBUG opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed\n",
"00:45:56 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 4 for reader roms native, assuming a maximum average speed of 1 m/s and time span of 3:00:00\n",
"00:45:56 DEBUG opendrift.models.basemodel.environment:332: Added reader roms native\n"
]
}
],
"source": [
"#%%\n",
"# Creating and adding reader for Nordic 4km current dataset\n",
"# nordic_native = reader_ROMS_native.Reader(o.test_data_folder() +\n",
"# '2Feb2016_Nordic_sigma_3d/Nordic-4km_SLEVELS_avg_00_subset2Feb2016.nc')\n",
"\n",
"nordic_native = reader_ROMS_native.Reader(fname)\n",
"\n",
"o.add_reader(nordic_native)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "bd1f4d34-4815-4905-9630-09c4ac46fc6b",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"00:45:56 INFO opendrift.models.basemodel.environment:219: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.0 m/s. Adding a customised landmask may be faster...\n",
"00:45:56 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated\n",
"00:46:01 DEBUG opendrift.models.basemodel.environment:332: Added reader global_landmask\n",
"00:46:01 INFO opendrift.models.basemodel.environment:246: Fallback values will be used for the following variables which have no readers: \n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tx_wind: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \ty_wind: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tocean_vertical_diffusivity: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wave_significant_height: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wave_stokes_drift_x_velocity: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wave_stokes_drift_y_velocity: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_swell_wave_to_direction: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_swell_wave_significant_height: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wind_wave_to_direction: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wind_wave_mean_period: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsea_surface_wind_wave_significant_height: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsurface_downward_x_stress: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tsurface_downward_y_stress: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tturbulent_kinetic_energy: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tturbulent_generic_length_scale: 0.000000\n",
"00:46:01 INFO opendrift.models.basemodel.environment:249: \tocean_mixed_layer_thickness: 50.000000\n",
"00:46:01 DEBUG opendrift.models.basemodel:91: Changed mode from Mode.Config to Mode.Ready\n"
]
}
],
"source": [
"#%%\n",
"# Seed elements at defined positions, depth and time\n",
"o.seed_elements(lon=-69.0, lat=42.5, radius=0, number=10,\n",
" z=np.linspace(0, -150, 10), time=nordic_native.start_time)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "069a32e8-e5a5-4bbd-b833-57dd8c90376f",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"00:46:01 DEBUG opendrift.models.basemodel:91: Changed mode from Mode.Ready to Mode.Run\n",
"00:46:01 DEBUG opendrift.models.basemodel:1731: \n",
"------------------------------------------------------\n",
"Software and hardware:\n",
" OpenDrift version 1.10.7\n",
" Platform: Linux, 5.10.197-186.748.amzn2.x86_64\n",
" 15.160614013671875 GB memory\n",
" 4 processors (x86_64)\n",
" NumPy version 1.26.0\n",
" SciPy version 1.11.3\n",
" Matplotlib version 3.8.1\n",
" NetCDF4 version 1.6.1\n",
" Xarray version 2023.10.1\n",
" Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0]\n",
"------------------------------------------------------\n",
"\n",
"00:46:01 DEBUG opendrift.models.basemodel:1745: No output file is specified, neglecting export_buffer_length\n",
"00:46:01 INFO opendrift.models.basemodel:1816: Duration, steps or end time not specified, running until end of first reader: 2023-10-30 00:00:00\n",
"00:46:01 INFO opendrift.models.basemodel:1816: Duration, steps or end time not specified, running until end of first reader: 2023-10-30 00:00:00\n",
"00:46:01 DEBUG opendrift.models.basemodel:1863: Finalizing environment and preparing readers for simulation coverage ([-72.16724120407117, 40.16486486486487, -65.83275879592883, 44.83513513513513]) and time (2023-10-27 00:00:00 to 2023-10-30 00:00:00)\n",
"00:46:01 DEBUG opendrift.models.basemodel.environment:181: \tPreparing roms native for extent [-72.16724120407117, 40.16486486486487, -65.83275879592883, 44.83513513513513]\n",
"00:46:01 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for roms native\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:181: \tPreparing global_landmask for extent [-72.16724120407117, 40.16486486486487, -65.83275879592883, 44.83513513513513]\n",
"00:46:02 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for global_landmask\n",
"00:46:02 INFO opendrift.models.basemodel:891: Using existing reader for land_binary_mask\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:02 INFO opendrift.models.basemodel:903: All points are in ocean\n",
"00:46:02 DEBUG opendrift.models.basemodel:846: to be seeded: 10, already seeded 0\n",
"00:46:02 DEBUG opendrift.models.basemodel:864: Released 10 new elements.\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level']\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 00:00:00 (before)\n",
"\t\t2023-10-27 03:00:00 (after)\n",
"00:46:02 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.003124\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 8x8x1) for time before (2023-10-27 00:00:00)\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 00:00:00) in space (linearNDFast)\n",
"00:46:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.531 (min) 206.531 (max)\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:02 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:02 INFO opendrift.models.basemodel:1989: 2023-10-27 00:00:00 - step 1 of 72 - 10 active elements (0 deactivated)\n",
"00:46:02 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:02 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:02 DEBUG opendrift.models.basemodel:2006: \t\tlatitude = 42.5\n",
"00:46:02 DEBUG opendrift.models.basemodel:2011: \t\tlongitude = -69.0\n",
"00:46:02 DEBUG opendrift.models.basemodel:2018: \t\t-150.0 <- z -> 0.0\n",
"00:46:02 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:02 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 00:00:00 (before)\n",
"\t\t2023-10-27 03:00:00 (after)\n",
"00:46:02 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:02 DEBUG opendrift.readers.reader_ROMS_native:406: Calculating sigma2z-coefficients for whole domain\n",
"00:46:03 INFO opendrift.readers.reader_ROMS_native:416: Time: 0:00:00.908021\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:527: Reading angle between xi and east...\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:01.026046\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 8x8x12) for time before (2023-10-27 00:00:00)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 00:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0582664 (min) -0.015874 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0310396 (min) 0.0367268 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000112728 (min) 6.22556e-06 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.531 (min) 206.531 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 01:00:00 - step 2 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.49899403468248 <- latitude -> 42.50119024496638\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.00255180372015 <- longitude -> -69.00069522103378\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-150.37112 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 00:00:00 (before)\n",
"\t\t2023-10-27 03:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057987\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 8x8x12) for time after (2023-10-27 03:00:00)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 00:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 03:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 00:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 03:00:00, weight 0.33) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0587311 (min) -0.01483 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00656715 (min) 0.0257053 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000128829 (min) -1.44061e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.348 (min) 206.854 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 02:00:00 - step 3 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.498791561939875 <- latitude -> 42.50202330575211\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.00512394851246 <- longitude -> -69.00134472130455\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-150.77353 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 00:00:00 (before)\n",
"\t\t2023-10-27 03:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 00:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 03:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 00:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 03:00:00, weight 0.67) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0591064 (min) -0.0113613 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: 0.00273032 (min) 0.0183161 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000145101 (min) -2.96991e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.227 (min) 207.025 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 03:00:00 - step 4 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.49935439864521 <- latitude -> 42.50250070339322\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.00771255259701 <- longitude -> -69.0019489897254\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-151.21115 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 03:00:00 (before)\n",
"\t\t2023-10-27 06:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 03:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0593381 (min) -0.00680025 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: 0.00258327 (min) 0.0427427 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000161397 (min) -4.486e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.168 (min) 207.053 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 04:00:00 - step 5 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.500330632902646 <- latitude -> 42.50262354707295\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.01031136306219 <- longitude -> -69.00240180477893\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-151.68643 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 03:00:00 (before)\n",
"\t\t2023-10-27 06:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.065637\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 8x8x12) for time after (2023-10-27 06:00:00)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 03:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 06:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 03:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 06:00:00, weight 0.33) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0362816 (min) -0.00966187 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00231922 (min) 0.0536772 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000106212 (min) -3.26296e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.168 (min) 206.936 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 05:00:00 - step 6 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.50044068575211 <- latitude -> 42.50254838191824\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.01190041812876 <- longitude -> -69.00283099076267\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-151.99713 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 03:00:00 (before)\n",
"\t\t2023-10-27 06:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 03:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 06:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 03:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 06:00:00, weight 0.67) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0299977 (min) -0.00724979 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0083732 (min) 0.0645019 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.57765e-05 (min) -2.05537e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.229 (min) 206.709 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 06:00:00 - step 7 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.50056338874938 <- latitude -> 42.504600274840904\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.01248094052508 <- longitude -> -69.0032949456113\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-152.14288 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 06:00:00 (before)\n",
"\t\t2023-10-27 09:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 06:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0395854 (min) 0.0169008 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0143052 (min) 0.075349 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.23597e-05 (min) 5.93036e-06 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 206.268 (min) 206.595 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 07:00:00 - step 8 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.500698374702004 <- latitude -> 42.507042194704525\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.01204999740969 <- longitude -> -69.00353000064392\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-152.12154 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 06:00:00 (before)\n",
"\t\t2023-10-27 09:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:03 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057211\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 8x8x12) for time after (2023-10-27 09:00:00)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 06:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 09:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 06:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 09:00:00, weight 0.33) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0501626 (min) 0.0421978 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00696868 (min) 0.0637018 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.2883e-05 (min) 5.20693e-05 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.769 (min) 206.582 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:03 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:03 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:03 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:03 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:03 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:03 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:03 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:03 INFO opendrift.models.basemodel:1989: 2023-10-27 08:00:00 - step 9 of 72 - 10 active elements (0 deactivated)\n",
"00:46:03 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:03 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:03 DEBUG opendrift.models.basemodel:2008: \t\t42.500856098407745 <- latitude -> 42.50910663871607\n",
"00:46:03 DEBUG opendrift.models.basemodel:2013: \t\t-69.01066613213371 <- longitude -> -69.0037014733388\n",
"00:46:03 DEBUG opendrift.models.basemodel:2018: \t\t-151.94133 <- z -> 0.0\n",
"00:46:03 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 06:00:00 (before)\n",
"\t\t2023-10-27 09:00:00 (after)\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 06:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 09:00:00) in space (linearNDFast)\n",
"00:46:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 06:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 09:00:00, weight 0.67) in time\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0605474 (min) 0.0676331 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: 0.000371367 (min) 0.0519717 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -8.55236e-06 (min) 0.000100217 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.282 (min) 206.683 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:03 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 09:00:00 - step 10 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.50090706028675 <- latitude -> 42.510790905951254\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.01136569737308 <- longitude -> -69.00380996986686\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-151.604 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 09:00:00 (before)\n",
"\t\t2023-10-27 12:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 09:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0706962 (min) 0.093419 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: 0.00571354 (min) 0.0402192 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -8.86183e-06 (min) 0.000148209 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.808 (min) 206.819 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 10:00:00 - step 11 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.501092215526626 <- latitude -> 42.51209426352246\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.0144620089838 <- longitude -> -69.00201625897364\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-151.11183 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 09:00:00 (before)\n",
"\t\t2023-10-27 12:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.058605\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 8x8x12) for time after (2023-10-27 12:00:00)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 09:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 12:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 09:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 12:00:00, weight 0.33) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0686549 (min) 0.0978021 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: 0.00659114 (min) 0.0179458 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.65659e-06 (min) 0.000137513 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.346 (min) 206.933 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 11:00:00 - step 12 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.50141341902517 <- latitude -> 42.51267577233135\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.01746894262882 <- longitude -> -68.99773203761552\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-150.65659 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 09:00:00 (before)\n",
"\t\t2023-10-27 12:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 09:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 12:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 09:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 12:00:00, weight 0.67) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0666809 (min) 0.102203 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0170006 (min) 0.0266075 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 3.33795e-06 (min) 0.000126818 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.01 (min) 206.984 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 12:00:00 - step 13 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.5018676120569 <- latitude -> 42.5125217167076\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.02038946040443 <- longitude -> -68.99325505524486\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-150.24164 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 12:00:00 (before)\n",
"\t\t2023-10-27 15:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 12:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0647863 (min) 0.106718 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0407711 (min) 0.0356855 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 9.20458e-06 (min) 0.000116279 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.803 (min) 206.974 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 13:00:00 - step 14 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.50219331836228 <- latitude -> 42.511620689009945\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.02322704994178 <- longitude -> -68.98858035215108\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-149.86853 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 12:00:00 (before)\n",
"\t\t2023-10-27 15:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.058478\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 8x8x11) for time after (2023-10-27 15:00:00)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 12:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 15:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 12:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 15:00:00, weight 0.33) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0542682 (min) 0.0990727 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0534649 (min) 0.0357384 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 6.08989e-06 (min) 5.4916e-05 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.727 (min) 206.904 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 14:00:00 - step 15 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.502268736679376 <- latitude -> 42.51039347584667\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.02560400136704 <- longitude -> -68.9842406294192\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-149.69044 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 12:00:00 (before)\n",
"\t\t2023-10-27 15:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 12:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 15:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 12:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 15:00:00, weight 0.67) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0440705 (min) 0.0913746 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0661473 (min) 0.035755 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.1617e-06 (min) 3.32538e-06 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.761 (min) 206.811 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 15:00:00 - step 16 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.502226757334135 <- latitude -> 42.508844988422446\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.02753432647302 <- longitude -> -68.9802382089433\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-149.70352 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 15:00:00 (before)\n",
"\t\t2023-10-27 18:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 15:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0341612 (min) 0.0837099 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0787284 (min) 0.0358373 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.66349e-05 (min) 9.27964e-07 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.878 (min) 206.707 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 16:00:00 - step 17 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.50206797075209 <- latitude -> 42.507905756167105\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.02903064207757 <- longitude -> -68.9765716287781\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-149.90367 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 15:00:00 (before)\n",
"\t\t2023-10-27 18:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:04 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.065180\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x11) for time after (2023-10-27 18:00:00)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 15:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 18:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 15:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 18:00:00, weight 0.33) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0249598 (min) 0.0772264 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0661561 (min) 0.028806 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -8.95838e-05 (min) -5.54558e-07 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.069 (min) 206.664 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 17:00:00 - step 18 of 72 - 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:04 DEBUG opendrift.models.basemodel:2008: \t\t42.50046954085766 <- latitude -> 42.50883930157618\n",
"00:46:04 DEBUG opendrift.models.basemodel:2013: \t\t-69.03012393714492 <- longitude -> -68.97318913257989\n",
"00:46:04 DEBUG opendrift.models.basemodel:2018: \t\t-150.18863 <- z -> 0.0\n",
"00:46:04 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 15:00:00 (before)\n",
"\t\t2023-10-27 18:00:00 (after)\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 15:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 18:00:00) in space (linearNDFast)\n",
"00:46:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 15:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 18:00:00, weight 0.67) in time\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0291963 (min) 0.0704699 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0571405 (min) 0.0218334 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000112698 (min) -2.32308e-06 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.27 (min) 206.637 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:04 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:04 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:04 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:04 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:04 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:04 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:04 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:04 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:04 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:04 INFO opendrift.models.basemodel:1989: 2023-10-27 18:00:00 - step 19 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.49872408120779 <- latitude -> 42.50954687981244\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03081290229426 <- longitude -> -68.97010266152051\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-150.55865 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 18:00:00 (before)\n",
"\t\t2023-10-27 21:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 18:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0457436 (min) 0.0634687 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0570142 (min) 0.0149065 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000136046 (min) -1.55636e-06 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.481 (min) 206.612 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-27 19:00:00 - step 20 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.49736824877077 <- latitude -> 42.510029970801526\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03109561922717 <- longitude -> -68.96732291507502\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.01428 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 18:00:00 (before)\n",
"\t\t2023-10-27 21:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.059389\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x12) for time after (2023-10-27 21:00:00)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 18:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 21:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 18:00:00, weight 0.67) and\n",
"\t\t after (2023-10-27 21:00:00, weight 0.33) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0444462 (min) 0.0571521 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.040354 (min) 0.0103434 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -9.92672e-05 (min) 9.10923e-06 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.703 (min) 206.763 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-27 20:00:00 - step 21 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.4967759666075 <- latitude -> 42.51036517920156\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03149365999433 <- longitude -> -68.9648198690373\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.36653 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 18:00:00 (before)\n",
"\t\t2023-10-27 21:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 18:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-27 21:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 18:00:00, weight 0.33) and\n",
"\t\t after (2023-10-27 21:00:00, weight 0.67) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0433447 (min) 0.0505601 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0237598 (min) 0.023503 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.95413e-05 (min) 1.93918e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.835 (min) 206.976 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-27 21:00:00 - step 22 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.496937318957656 <- latitude -> 42.5105528691109\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03200542232828 <- longitude -> -68.96260555443196\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.61688 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 21:00:00 (before)\n",
"\t\t2023-10-28 00:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 21:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0423945 (min) 0.0437754 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00715855 (min) 0.042137 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.12541e-05 (min) 3.48713e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.879 (min) 207.043 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-27 22:00:00 - step 23 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.49784553738526 <- latitude -> 42.51059336200422\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03263814484053 <- longitude -> -68.96068838844688\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.7654 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 21:00:00 (before)\n",
"\t\t2023-10-28 00:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.055096\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x12) for time after (2023-10-28 00:00:00)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 21:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 00:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 21:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 00:00:00, weight 0.33) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0255421 (min) 0.0454253 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00184454 (min) 0.043582 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.89922e-06 (min) 3.21519e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.836 (min) 206.967 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-27 23:00:00 - step 24 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.498891140026885 <- latitude -> 42.51053357854005\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03375697874772 <- longitude -> -68.95869896065925\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.78664 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-27 21:00:00 (before)\n",
"\t\t2023-10-28 00:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-27 21:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 00:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-27 21:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 00:00:00, weight 0.67) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0365387 (min) 0.0470884 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00488391 (min) 0.0450532 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 1.35077e-05 (min) 4.3486e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.737 (min) 206.825 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-28 00:00:00 - step 25 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.49946821752858 <- latitude -> 42.5103752890767\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03535749772244 <- longitude -> -68.95663668832142\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.67947 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 00:00:00 (before)\n",
"\t\t2023-10-28 03:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 00:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0473818 (min) 0.0488151 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00786325 (min) 0.0465364 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 1.08133e-05 (min) 7.76886e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.583 (min) 206.614 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-28 01:00:00 - step 26 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.50007286643647 <- latitude -> 42.51012043701423\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03743297092329 <- longitude -> -68.95449877395374\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.44205 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 00:00:00 (before)\n",
"\t\t2023-10-28 03:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:05 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057422\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x12) for time after (2023-10-28 03:00:00)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 00:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 03:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 00:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 03:00:00, weight 0.33) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0495513 (min) 0.0673171 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00566904 (min) 0.0321664 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.63104e-06 (min) 7.71059e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.373 (min) 206.666 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-28 02:00:00 - step 27 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.50035769887714 <- latitude -> 42.50998159460435\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.03960347206515 <- longitude -> -68.9515505285949\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-151.16878 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 00:00:00 (before)\n",
"\t\t2023-10-28 03:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 00:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 03:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 00:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 03:00:00, weight 0.67) in time\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0516843 (min) 0.0858208 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00576193 (min) 0.0174845 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.1188e-05 (min) 8.53571e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.186 (min) 206.756 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:05 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:05 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:05 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:05 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:05 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:05 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:05 INFO opendrift.models.basemodel:1989: 2023-10-28 03:00:00 - step 28 of 72 - 10 active elements (0 deactivated)\n",
"00:46:05 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:05 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:05 DEBUG opendrift.models.basemodel:2008: \t\t42.50032454895164 <- latitude -> 42.50995597354177\n",
"00:46:05 DEBUG opendrift.models.basemodel:2013: \t\t-69.04186740451726 <- longitude -> -68.94779188969832\n",
"00:46:05 DEBUG opendrift.models.basemodel:2018: \t\t-150.8615 <- z -> 0.0\n",
"00:46:05 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 03:00:00 (before)\n",
"\t\t2023-10-28 06:00:00 (after)\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 03:00:00) in space (linearNDFast)\n",
"00:46:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0537824 (min) 0.104345 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0106854 (min) 0.00265182 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.13088e-05 (min) 9.43448e-05 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:05 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.022 (min) 206.869 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 04:00:00 - step 29 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.49997816457882 <- latitude -> 42.51004047756726\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.04422324318664 <- longitude -> -68.94322200022368\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.52185 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 03:00:00 (before)\n",
"\t\t2023-10-28 06:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057066\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x12) for time after (2023-10-28 06:00:00)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 03:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 06:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 03:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 06:00:00, weight 0.33) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0507082 (min) 0.107832 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0260181 (min) 0.00956915 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.89986e-05 (min) 7.22623e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.879 (min) 206.972 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 05:00:00 - step 30 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.49913486842849 <- latitude -> 42.51035057453781\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.04644443191404 <- longitude -> -68.93849943824225\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.2617 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 03:00:00 (before)\n",
"\t\t2023-10-28 06:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 03:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 06:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 03:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 06:00:00, weight 0.67) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0477617 (min) 0.111575 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0440283 (min) 0.0164245 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.68201e-05 (min) 4.94645e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.821 (min) 207.034 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 06:00:00 - step 31 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.49779349220364 <- latitude -> 42.510882842291295\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.04853657209397 <- longitude -> -68.93361305266164\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.08363 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 06:00:00 (before)\n",
"\t\t2023-10-28 09:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 06:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0449311 (min) 0.115686 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0626074 (min) 0.0231827 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.44034e-05 (min) 2.63027e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.846 (min) 207.055 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 07:00:00 - step 32 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.495954625281385 <- latitude -> 42.511634132355184\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05050474519624 <- longitude -> -68.92854676710353\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-149.98894 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 06:00:00 (before)\n",
"\t\t2023-10-28 09:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.056696\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x8x11) for time after (2023-10-28 09:00:00)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 06:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 09:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 06:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 09:00:00, weight 0.33) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0370903 (min) 0.0993501 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0645181 (min) 0.0262368 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.11935e-05 (min) -7.97885e-07 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.952 (min) 207.053 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 08:00:00 - step 33 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.49396918849881 <- latitude -> 42.51248440721191\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05212947878788 <- longitude -> -68.92419603415335\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-149.9918 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 06:00:00 (before)\n",
"\t\t2023-10-28 09:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 06:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 09:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 06:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 09:00:00, weight 0.67) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0293745 (min) 0.0831537 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0666492 (min) 0.0293114 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.75994e-05 (min) 5.70605e-06 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.116 (min) 207.048 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 09:00:00 - step 34 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.49183246120055 <- latitude -> 42.51343432811009\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05341624284618 <- longitude -> -68.92055469560519\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.09117 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 09:00:00 (before)\n",
"\t\t2023-10-28 12:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 09:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0217532 (min) 0.0670879 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0708584 (min) 0.032403 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.40242e-05 (min) 2.19e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.257 (min) 207.012 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 10:00:00 - step 35 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.489536027286555 <- latitude -> 42.51448444467731\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.0543691697863 <- longitude -> -68.9176169940278\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.28566 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 09:00:00 (before)\n",
"\t\t2023-10-28 12:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057796\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-28 12:00:00)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 09:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 12:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 09:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 12:00:00, weight 0.33) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0161798 (min) 0.0547954 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0614719 (min) 0.0282123 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.95905e-05 (min) 3.18116e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.302 (min) 207.015 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 11:00:00 - step 36 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.48754380431907 <- latitude -> 42.5153987509916\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05507795826114 <- longitude -> -68.9152176430085\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.50018 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 09:00:00 (before)\n",
"\t\t2023-10-28 12:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 09:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 12:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 09:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 12:00:00, weight 0.67) in time\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0186499 (min) 0.0422161 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0524495 (min) 0.0240599 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.53413e-05 (min) 4.24582e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.347 (min) 207.148 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 12:00:00 - step 37 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.48584399216806 <- latitude -> 42.51617848673313\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05554248224755 <- longitude -> -68.91336915919985\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.73541 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 12:00:00 (before)\n",
"\t\t2023-10-28 15:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 12:00:00) in space (linearNDFast)\n",
"00:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0263438 (min) 0.0293876 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0437242 (min) 0.0198913 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -7.11746e-05 (min) 5.38541e-05 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.394 (min) 207.272 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:06 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:06 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:06 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:06 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:06 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:06 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:06 INFO opendrift.models.basemodel:1989: 2023-10-28 13:00:00 - step 38 of 72 - 10 active elements (0 deactivated)\n",
"00:46:06 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:06 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:06 DEBUG opendrift.models.basemodel:2008: \t\t42.48442695791514 <- latitude -> 42.516823125716826\n",
"00:46:06 DEBUG opendrift.models.basemodel:2013: \t\t-69.05576410168803 <- longitude -> -68.91208241314771\n",
"00:46:06 DEBUG opendrift.models.basemodel:2018: \t\t-150.99164 <- z -> 0.0\n",
"00:46:06 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:06 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 12:00:00 (before)\n",
"\t\t2023-10-28 15:00:00 (after)\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:06 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.061635\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-28 15:00:00)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 12:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 15:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 12:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 15:00:00, weight 0.33) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0225812 (min) 0.0427513 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0309037 (min) 0.0117187 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.41705e-05 (min) 4.98756e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.446 (min) 207.39 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 14:00:00 - step 39 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.48342540671568 <- latitude -> 42.51720290699212\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.05609515983527 <- longitude -> -68.9102105655043\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.18665 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 12:00:00 (before)\n",
"\t\t2023-10-28 15:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 12:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 15:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 12:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 15:00:00, weight 0.67) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0186895 (min) 0.0559288 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0179616 (min) 0.0187455 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.74732e-05 (min) 4.58332e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.437 (min) 207.471 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 15:00:00 - step 40 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.482843275104216 <- latitude -> 42.517318281931615\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.05653337121674 <- longitude -> -68.90776177021034\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.32155 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 15:00:00 (before)\n",
"\t\t2023-10-28 18:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 15:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0147369 (min) 0.0689537 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00894329 (min) 0.027956 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.07546e-05 (min) 4.15635e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.369 (min) 207.514 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 16:00:00 - step 41 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.48268357578077 <- latitude -> 42.517170053935594\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.05707578945467 <- longitude -> -68.90474269803708\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.39627 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 15:00:00 (before)\n",
"\t\t2023-10-28 18:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057293\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-28 18:00:00)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 15:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 18:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 15:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 18:00:00, weight 0.33) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0185668 (min) 0.0866117 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00940086 (min) 0.0296005 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 1.43114e-06 (min) 1.7188e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.241 (min) 207.52 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 17:00:00 - step 42 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.482383478496935 <- latitude -> 42.51700811847624\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.05788916350895 <- longitude -> -68.90095050186756\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.39111 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 15:00:00 (before)\n",
"\t\t2023-10-28 18:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 15:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 18:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 15:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 18:00:00, weight 0.67) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0247114 (min) 0.104216 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0135029 (min) 0.0309649 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.34497e-05 (min) 2.37967e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.089 (min) 207.49 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 18:00:00 - step 43 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.481945781347655 <- latitude -> 42.51683368439761\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.05897171919854 <- longitude -> -68.89638755630872\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.30545 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 18:00:00 (before)\n",
"\t\t2023-10-28 21:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 18:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0308022 (min) 0.12175 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0176243 (min) 0.0320204 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.60774e-05 (min) 4.63686e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.911 (min) 207.424 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 19:00:00 - step 44 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.48137448409989 <- latitude -> 42.51664797293804\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.06032109357224 <- longitude -> -68.89105697657412\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-151.13852 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 18:00:00 (before)\n",
"\t\t2023-10-28 21:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.056508\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-28 21:00:00)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 18:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 21:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 18:00:00, weight 0.67) and\n",
"\t\t after (2023-10-28 21:00:00, weight 0.33) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0376275 (min) 0.125768 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0269029 (min) 0.0253627 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.01202e-05 (min) 5.90307e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.707 (min) 207.321 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 20:00:00 - step 45 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.48050247332761 <- latitude -> 42.51669642821748\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.06196947169538 <- longitude -> -68.88555054731063\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-150.92601 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 18:00:00 (before)\n",
"\t\t2023-10-28 21:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 18:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-28 21:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 18:00:00, weight 0.33) and\n",
"\t\t after (2023-10-28 21:00:00, weight 0.67) in time\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0444567 (min) 0.130188 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.035486 (min) 0.0188788 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.39016e-05 (min) 7.1282e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.512 (min) 207.222 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 21:00:00 - step 46 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.47935229173526 <- latitude -> 42.5169786107231\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.06391703076763 <- longitude -> -68.8798506873887\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-150.66939 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 21:00:00 (before)\n",
"\t\t2023-10-29 00:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 21:00:00) in space (linearNDFast)\n",
"00:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0512759 (min) 0.134874 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0437135 (min) 0.0158911 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.74603e-05 (min) 8.32025e-05 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.325 (min) 207.128 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:07 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:07 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:07 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:07 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:07 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:07 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:07 INFO opendrift.models.basemodel:1989: 2023-10-28 22:00:00 - step 47 of 72 - 10 active elements (0 deactivated)\n",
"00:46:07 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:07 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:07 DEBUG opendrift.models.basemodel:2008: \t\t42.47793545917396 <- latitude -> 42.51749358893947\n",
"00:46:07 DEBUG opendrift.models.basemodel:2013: \t\t-69.06616334428448 <- longitude -> -68.87394582038905\n",
"00:46:07 DEBUG opendrift.models.basemodel:2018: \t\t-150.36986 <- z -> 0.0\n",
"00:46:07 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:07 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 21:00:00 (before)\n",
"\t\t2023-10-29 00:00:00 (after)\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:07 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.058045\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 10x9x12) for time after (2023-10-29 00:00:00)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 21:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 00:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 21:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 00:00:00, weight 0.33) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0475685 (min) 0.117984 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0779901 (min) 0.0196112 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.92723e-05 (min) 6.64818e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.145 (min) 207.038 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-28 23:00:00 - step 48 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.4754078152524 <- latitude -> 42.51812913325767\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.06824726488061 <- longitude -> -68.86878057897572\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-150.13052 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-28 21:00:00 (before)\n",
"\t\t2023-10-29 00:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-28 21:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 00:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-28 21:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 00:00:00, weight 0.67) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0439142 (min) 0.101606 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.111851 (min) 0.023223 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.4798e-05 (min) 4.95986e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.078 (min) 207.038 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 00:00:00 - step 49 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.47178283169932 <- latitude -> 42.51888173013842\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07017111816025 <- longitude -> -68.86433261710214\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-149.95197 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 00:00:00 (before)\n",
"\t\t2023-10-29 03:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 00:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0402957 (min) 0.0859196 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.145289 (min) 0.0267328 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.28136e-05 (min) 3.26951e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.119 (min) 207.042 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 01:00:00 - step 50 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.46707418455778 <- latitude -> 42.519748074497926\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07193646943043 <- longitude -> -68.8605716437562\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-149.83426 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 00:00:00 (before)\n",
"\t\t2023-10-29 03:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.064634\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 10x9x11) for time after (2023-10-29 03:00:00)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 00:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 03:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 00:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 03:00:00, weight 0.33) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0284946 (min) 0.0545252 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.152077 (min) 0.0265663 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.5132e-05 (min) 4.90248e-06 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.264 (min) 207.135 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 02:00:00 - step 51 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.462145599939824 <- latitude -> 42.52060903090635\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07318483227087 <- longitude -> -68.85818508764277\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-149.8166 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 00:00:00 (before)\n",
"\t\t2023-10-29 03:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 00:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 03:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 00:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 03:00:00, weight 0.67) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0168 (min) 0.0233256 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.159148 (min) 0.0264061 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.27165e-05 (min) 6.72009e-06 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.488 (min) 207.329 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 03:00:00 - step 52 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.456987875029895 <- latitude -> 42.52146479989009\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07392086037198 <- longitude -> -68.85716421703441\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-149.89838 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 03:00:00 (before)\n",
"\t\t2023-10-29 06:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 03:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0290789 (min) 0.0226796 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.166568 (min) 0.0262552 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.01719e-05 (min) 1.70329e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.795 (min) 207.625 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 04:00:00 - step 53 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.45158966259403 <- latitude -> 42.522315680194794\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07414723347617 <- longitude -> -68.85750235686127\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-150.079 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 03:00:00 (before)\n",
"\t\t2023-10-29 06:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.056380\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 10x9x12) for time after (2023-10-29 06:00:00)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 03:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 06:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 03:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 06:00:00, weight 0.33) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0594296 (min) 0.0291128 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.144905 (min) 0.0227849 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.82542e-05 (min) 4.58955e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.191 (min) 208.025 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 05:00:00 - step 54 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.4468934923046 <- latitude -> 42.523054096262015\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07409207607624 <- longitude -> -68.85923955238134\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-150.25272 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 03:00:00 (before)\n",
"\t\t2023-10-29 06:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 03:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 06:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 03:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 06:00:00, weight 0.67) in time\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0905754 (min) 0.0356224 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.124585 (min) 0.0193352 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.66485e-05 (min) 7.53505e-05 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.617 (min) 208.423 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 06:00:00 - step 55 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.44285583377735 <- latitude -> 42.52367946498073\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07375408674201 <- longitude -> -68.86240764026651\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-150.42065 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 06:00:00 (before)\n",
"\t\t2023-10-29 09:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 06:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.122547 (min) 0.0422102 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.105283 (min) 0.0164931 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -4.53138e-05 (min) 0.000105538 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.082 (min) 208.822 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:08 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:08 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:08 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:08 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:08 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:08 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:08 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:08 INFO opendrift.models.basemodel:1989: 2023-10-29 07:00:00 - step 56 of 72 - 10 active elements (0 deactivated)\n",
"00:46:08 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:08 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:08 DEBUG opendrift.models.basemodel:2008: \t\t42.43944366830654 <- latitude -> 42.524190775421225\n",
"00:46:08 DEBUG opendrift.models.basemodel:2013: \t\t-69.07313235455477 <- longitude -> -68.86703357167943\n",
"00:46:08 DEBUG opendrift.models.basemodel:2018: \t\t-150.58379 <- z -> 0.0\n",
"00:46:08 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:08 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 06:00:00 (before)\n",
"\t\t2023-10-29 09:00:00 (after)\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:08 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.056591\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 10x9x12) for time after (2023-10-29 09:00:00)\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 06:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 09:00:00) in space (linearNDFast)\n",
"00:46:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 06:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 09:00:00, weight 0.33) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.130936 (min) 0.0391507 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0573107 (min) 0.0117164 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.72263e-05 (min) 9.83237e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.528 (min) 209.226 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 08:00:00 - step 57 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.43758619102844 <- latitude -> 42.52457048201156\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07272434522369 <- longitude -> -68.87231514687794\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.6818 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 06:00:00 (before)\n",
"\t\t2023-10-29 09:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 06:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 09:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 06:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 09:00:00, weight 0.67) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.139205 (min) 0.0360098 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00890905 (min) 0.0344601 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -9.4787e-06 (min) 9.06777e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.412 (min) 209.534 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 09:00:00 - step 58 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.43729730702062 <- latitude -> 42.524817876918895\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07252934991307 <- longitude -> -68.87826860508854\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.71591 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 09:00:00 (before)\n",
"\t\t2023-10-29 12:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 09:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.151363 (min) 0.0322754 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00539303 (min) 0.0754295 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 8.11203e-06 (min) 8.24327e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.334 (min) 209.749 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 10:00:00 - step 59 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.438599379591025 <- latitude -> 42.52493272558727\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07254647632209 <- longitude -> -68.88489125338364\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.6867 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 09:00:00 (before)\n",
"\t\t2023-10-29 12:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.059279\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 10x9x12) for time after (2023-10-29 12:00:00)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 09:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 12:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 09:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 12:00:00, weight 0.33) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.124504 (min) 0.0216251 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0121262 (min) 0.102635 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: 1.27893e-05 (min) 4.13384e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.293 (min) 209.877 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 11:00:00 - step 60 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.4409720863607 <- latitude -> 42.52483496749107\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07297983867463 <- longitude -> -68.89033892775714\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.64067 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 09:00:00 (before)\n",
"\t\t2023-10-29 12:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 09:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 12:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 09:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 12:00:00, weight 0.67) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0970054 (min) 0.014278 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0192457 (min) 0.129486 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.36519e-05 (min) 1.77472e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.318 (min) 209.866 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 12:00:00 - step 61 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.44439786068566 <- latitude -> 42.524525688611504\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07382795438822 <- longitude -> -68.89458363191476\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.57678 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 12:00:00 (before)\n",
"\t\t2023-10-29 15:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 12:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0686026 (min) 0.00785158 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0277069 (min) 0.155787 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -6.26332e-05 (min) 2.30633e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 205.074 (min) 209.715 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 13:00:00 - step 62 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.44887335812253 <- latitude -> 42.52400642437314\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07508888311588 <- longitude -> -68.89758571818486\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.49376 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 12:00:00 (before)\n",
"\t\t2023-10-29 15:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.062862\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-29 15:00:00)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 12:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 15:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 12:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 15:00:00, weight 0.33) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0337268 (min) 0.00978368 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0293902 (min) 0.137902 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -8.41545e-05 (min) 1.92723e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204.529 (min) 209.422 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 14:00:00 - step 63 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.45306719147487 <- latitude -> 42.52348115875334\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07656654133058 <- longitude -> -68.89830457620334\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.42438 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 12:00:00 (before)\n",
"\t\t2023-10-29 15:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 12:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 15:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 12:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 15:00:00, weight 0.67) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0386307 (min) 0.0527373 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0311141 (min) 0.120062 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.00010525 (min) 1.49962e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 204 (min) 209.061 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 15:00:00 - step 64 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.45695821915337 <- latitude -> 42.52295069796211\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.07825903794682 <- longitude -> -68.89675938529052\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.37039 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 15:00:00 (before)\n",
"\t\t2023-10-29 18:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 15:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0434763 (min) 0.102781 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0318141 (min) 0.110534 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -0.000125037 (min) 1.01413e-05 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.493 (min) 208.635 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:09 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:09 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:09 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:09 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:09 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:09 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:09 INFO opendrift.models.basemodel:1989: 2023-10-29 16:00:00 - step 65 of 72 - 10 active elements (0 deactivated)\n",
"00:46:09 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:09 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:09 DEBUG opendrift.models.basemodel:2008: \t\t42.46054040493663 <- latitude -> 42.52241597614428\n",
"00:46:09 DEBUG opendrift.models.basemodel:2013: \t\t-69.08016381477447 <- longitude -> -68.8929716426288\n",
"00:46:09 DEBUG opendrift.models.basemodel:2018: \t\t-150.33388 <- z -> 0.0\n",
"00:46:09 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 15:00:00 (before)\n",
"\t\t2023-10-29 18:00:00 (after)\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:09 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.068498\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 9x9x12) for time after (2023-10-29 18:00:00)\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 15:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 18:00:00) in space (linearNDFast)\n",
"00:46:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 15:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 18:00:00, weight 0.33) in time\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0447051 (min) 0.119195 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.020487 (min) 0.0656476 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -9.06574e-05 (min) 8.22882e-06 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:09 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.011 (min) 208.141 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 17:00:00 - step 66 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.46266784440905 <- latitude -> 42.52218966344217\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.08212242022972 <- longitude -> -68.88827219711062\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.30426 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 15:00:00 (before)\n",
"\t\t2023-10-29 18:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 15:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 18:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 15:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 18:00:00, weight 0.67) in time\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0459251 (min) 0.135825 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.00950656 (min) 0.0216745 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -5.62901e-05 (min) 5.72438e-06 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 202.685 (min) 207.731 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 18:00:00 - step 67 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.46337014276722 <- latitude -> 42.522270323562715\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.08413447876012 <- longitude -> -68.88265332431477\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.28365 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 18:00:00 (before)\n",
"\t\t2023-10-29 21:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 18:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0472334 (min) 0.15292 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0356788 (min) 0.0119194 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -3.62337e-05 (min) 4.0203e-06 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 202.503 (min) 207.402 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 19:00:00 - step 68 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.46267263708633 <- latitude -> 42.52265659059158\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.0861993485365 <- longitude -> -68.87609192651861\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.27333 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 18:00:00 (before)\n",
"\t\t2023-10-29 21:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.056409\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 11x9x12) for time after (2023-10-29 21:00:00)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 18:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 21:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 18:00:00, weight 0.67) and\n",
"\t\t after (2023-10-29 21:00:00, weight 0.33) in time\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.04123 (min) 0.124882 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0666988 (min) 0.02058 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.08334e-06 (min) 1.92202e-05 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 202.457 (min) 207.378 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 20:00:00 - step 69 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.46099732104711 <- latitude -> 42.523323535283595\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.08800573568635 <- longitude -> -68.87062599349406\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.27104 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 18:00:00 (before)\n",
"\t\t2023-10-29 21:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 18:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-29 21:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 18:00:00, weight 0.33) and\n",
"\t\t after (2023-10-29 21:00:00, weight 0.67) in time\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0354142 (min) 0.099923 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.0981026 (min) 0.0291834 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.05295e-06 (min) 6.02673e-05 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 202.548 (min) 207.381 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 21:00:00 - step 70 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.45833271462712 <- latitude -> 42.52426930199008\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.08955734220197 <- longitude -> -68.8662526546182\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.27483 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 21:00:00 (before)\n",
"\t\t2023-10-30 00:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 21:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0296607 (min) 0.0749986 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.129974 (min) 0.0388435 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.07756e-06 (min) 0.000101204 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 202.783 (min) 207.299 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 22:00:00 - step 71 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.454665905040684 <- latitude -> 42.52549453623972\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.09085689374214 <- longitude -> -68.86297037581704\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.2823 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 21:00:00 (before)\n",
"\t\t2023-10-30 00:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for u\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:418: Re-using sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for v\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:400: sigma to z for w\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:457: Applying sigma2z-coefficients\n",
"00:46:10 DEBUG opendrift.readers.reader_ROMS_native:557: Time for ROMS native reader: 0:00:00.057509\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 11x9x12) for time after (2023-10-30 00:00:00)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 21:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-30 00:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 21:00:00, weight 0.67) and\n",
"\t\t after (2023-10-30 00:00:00, weight 0.33) in time\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0211927 (min) 0.0294386 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.120843 (min) 0.0333703 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -1.23199e-05 (min) 9.64549e-05 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.167 (min) 207.4 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:846: to be seeded: 0, already seeded 10\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1988: ======================================================================\n",
"00:46:10 INFO opendrift.models.basemodel:1989: 2023-10-29 23:00:00 - step 72 of 72 - 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:1995: 0 elements scheduled.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1997: ======================================================================\n",
"00:46:10 DEBUG opendrift.models.basemodel:2008: \t\t42.45115211132588 <- latitude -> 42.5265120845195\n",
"00:46:10 DEBUG opendrift.models.basemodel:2013: \t\t-69.09178544266642 <- longitude -> -68.86168207964855\n",
"00:46:10 DEBUG opendrift.models.basemodel:2018: \t\t-150.32666 <- z -> 0.0\n",
"00:46:10 DEBUG opendrift.models.basemodel:2019: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader roms native\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:430: Calculating lonlat2xy sequentially\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from roms native\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:\n",
"\t\t2023-10-29 21:00:00 (before)\n",
"\t\t2023-10-30 00:00:00 (after)\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-10-29 21:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-10-30 00:00:00) in space (linearNDFast)\n",
"00:46:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.\n",
"00:46:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-10-29 21:00:00, weight 0.33) and\n",
"\t\t after (2023-10-30 00:00:00, weight 0.67) in time\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between 0.0 and 0.0 degrees.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:803: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:810: Using fallback value 0 for ocean_vertical_diffusivity for all profiles\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_sea_water_velocity: -0.0321871 (min) 0.0185748 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_sea_water_velocity: -0.112201 (min) 0.0281781 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: x_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: y_wind: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: upward_sea_water_velocity: -2.26102e-05 (min) 9.22237e-05 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_vertical_diffusivity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_x_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: surface_downward_y_stress: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_kinetic_energy: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: turbulent_generic_length_scale: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: ocean_mixed_layer_thickness: 50 (min) 50 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: sea_floor_depth_below_sea_level: 203.581 (min) 207.686 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind\n",
"00:46:10 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637\n",
"00:46:10 DEBUG opendrift.models.basemodel:700: No elements hit seafloor.\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:2059: Calling OceanDrift.update()\n",
"00:46:10 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift\n",
"00:46:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available\n",
"00:46:10 DEBUG opendrift.models.basemodel:1617: Horizontal diffusivity is 0, no random walk.\n",
"00:46:10 DEBUG opendrift.models.basemodel:2074: 10 active elements (0 deactivated)\n",
"00:46:10 DEBUG opendrift.models.basemodel:2103: Cleaning up\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:612: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:613: Variable group ['land_binary_mask']\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:618: Calling reader global_landmask\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:619: ----------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:635: Data needed for 10 elements\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask\n",
"00:46:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values\n",
"00:46:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:769: Obtained data for all elements.\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:782: ---------------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:783: Finished processing all variable groups\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:911: ------------ SUMMARY -------------\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:913: land_binary_mask: 0 (min) 0 (max)\n",
"00:46:10 DEBUG opendrift.models.basemodel.environment:915: ---------------------------------\n",
"00:46:10 DEBUG opendrift.models.basemodel:1663: No elements to deactivate\n",
"00:46:10 DEBUG opendrift.models.basemodel:91: Changed mode from Mode.Run to Mode.Result\n"
]
}
],
"source": [
"#%%\n",
"# Running model\n",
"o.run(time_step=3600)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "24c15f5a-7711-4ac3-8a1a-589b31d08864",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"00:46:10 DEBUG opendrift.models.basemodel:2311: Setting up map: corners=None, fast=True, lscale=None\n",
"00:46:10 WARNING opendrift.models.basemodel:2357: Plotting fast. This will make your plots less accurate.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"===========================\n",
"--------------------\n",
"Reader performance:\n",
"--------------------\n",
"roms native\n",
" 0:00:03.5 total\n",
" 0:00:00.0 preparing\n",
" 0:00:03.2 reading\n",
" 0:00:00.4 interpolation\n",
" 0:00:00.1 interpolation_time\n",
" 0:00:00.0 masking\n",
" 0:00:00.3 rotating vectors\n",
"--------------------\n",
"global_landmask\n",
" 0:00:00.2 total\n",
" 0:00:00.0 preparing\n",
" 0:00:00.1 reading\n",
" 0:00:00.0 masking\n",
"--------------------\n",
"Performance:\n",
" 20.7 total time\n",
" 11.9 configuration\n",
" 0.0 preparing main loop\n",
" 0.0 moving elements to ocean\n",
" 8.7 main loop\n",
" 0.1 updating elements\n",
" 0.0 cleaning up\n",
"--------------------\n",
"===========================\n",
"Model:\tOceanDrift (OpenDrift version 1.10.7)\n",
"\t10 active Lagrangian3DArray particles (0 deactivated, 0 scheduled)\n",
"-------------------\n",
"Environment variables:\n",
" -----\n",
" sea_floor_depth_below_sea_level\n",
" upward_sea_water_velocity\n",
" x_sea_water_velocity\n",
" y_sea_water_velocity\n",
" 1) roms native\n",
" -----\n",
" land_binary_mask\n",
" 1) global_landmask\n",
" -----\n",
"Readers not added for the following variables:\n",
" ocean_mixed_layer_thickness\n",
" ocean_vertical_diffusivity\n",
" sea_surface_swell_wave_peak_period_from_variance_spectral_density\n",
" sea_surface_swell_wave_significant_height\n",
" sea_surface_swell_wave_to_direction\n",
" sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment\n",
" sea_surface_wave_period_at_variance_spectral_density_maximum\n",
" sea_surface_wave_significant_height\n",
" sea_surface_wave_stokes_drift_x_velocity\n",
" sea_surface_wave_stokes_drift_y_velocity\n",
" sea_surface_wind_wave_mean_period\n",
" sea_surface_wind_wave_significant_height\n",
" sea_surface_wind_wave_to_direction\n",
" surface_downward_x_stress\n",
" surface_downward_y_stress\n",
" turbulent_generic_length_scale\n",
" turbulent_kinetic_energy\n",
" x_wind\n",
" y_wind\n",
"\n",
"Discarded readers:\n",
"\n",
"Time:\n",
"\tStart: 2023-10-27 00:00:00 UTC\n",
"\tPresent: 2023-10-30 00:00:00 UTC\n",
"\tCalculation steps: 72 * 1:00:00 - total time: 3 days, 0:00:00\n",
"\tOutput steps: 73 * 1:00:00\n",
"===========================\n",
"\n"
]
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA54AAAKgCAYAAADziKKOAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/SrBM8AAAACXBIWXMAAA9hAAAPYQGoP6dpAACYb0lEQVR4nOzdeXhN1+LG8fckOUkkIZEgIUJMMTRRaqZFxVC0brWKoorqhJZWW1QVbU0dkVan63I7KKW4ipppa06ltKqIWRDzlESSk2T//sgvp04zSDRbOL6f5zkPWXvttdbe64i8WfvsbTEMwxAAAAAAACZxKeoBAAAAAACcG8ETAAAAAGAqgicAAAAAwFQETwAAAACAqQieAAAAAABTETwBAAAAAKYieAIAAAAATEXwBAAAAACYiuAJAAAAADAVwRMAnMTmzZv1yCOPqGzZsnJ3d1dQUJC6dOmiTZs2FfXQsrFYLPaXq6urSpYsqTvvvFNPP/20Nm/eXKC21q1bJ4vFonXr1jmUR0VFqWrVqnJ3d5fFYtGFCxc0fvx4LVy4sPAO5G8Mw9CsWbPUqlUrlSxZUh4eHqpcubIGDhyoo0ePmtavWcaMGeMwV15eXipfvrzatWunqKgoXb58uUDttWzZUi1btnQoO3TokDp27Ch/f39ZLBYNGTJEGzdu1JgxY3ThwoXCOxgAQJEieAKAE4iKilKzZs0UFxent99+W6tWrdK7776rY8eO6e6779aHH35Y1EPMJisUr1+/XrNnz1bv3r21efNmNWnSRIMHD853O3fddZc2bdqku+66y162fft2Pf/887r33nu1Zs0abdq0ScWLFzc1eGZkZOjRRx9Vz549FRQUpJkzZ2r58uUaMmSIFi1apNq1a2vDhg2m9G22ZcuWadOmTVq2bJneffddVahQQa+88oruuOMO7dixI9/tTJs2TdOmTXMoe+GFF7Rlyxb95z//0aZNm/TCCy9o48aNGjt2LMETAJyJAQC4pa1fv95wcXEx7r//fsNmszlss9lsxv3332+4uLgY69evL6IRZifJGDhwYLbytLQ0o1+/foYkY9q0aXm2kZqamu14s3z11VeGJGPLli0O5d7e3sbjjz9+3ePOy/jx4w1JxsSJE7Nti4+PNypWrGgEBgYa58+fN6V/M4wePdqQZJw+fTrbtu3btxu+vr5GhQoVjOTk5DzbSUxMzHVb1apVjfbt2zuUvfPOO4Yk4+DBg9c1bgDAzYcVTwC4xU2YMEEWi0Uff/yx3NzcHLa5ublp2rRpslgsmjhxor086xLKX3/9VQ899JBKlCghX19f9erVS6dPn87Wx5w5c9SkSRN5e3vLx8dH7dq106+//upQp0+fPvLx8dG+ffvUoUMH+fj4KCQkREOHDlVKSkq+jsXV1VUffvihSpUqpXfeecdennU57ZdffqmhQ4cqODhYHh4e2rdvX7ZLbVu2bKlevXpJkho1aiSLxaI+ffrIYrEoMTFR//3vf+2Xjv79ss/rlZqaqnfeeUc1a9bUK6+8km17YGCgJkyYoJMnT2r69OkO25YtW6bIyEj5+vrKy8tLNWvW1IQJExzq/PLLL+rUqZP8/f3l6empunXr6ttvv3Woc/r0aQ0YMEC1atWSj4+PypQpo1atWunnn392qHfo0CFZLBa9++67ev/991WpUiX5+PioSZMmBbrM+c4779TIkSN15MgRzZkzx17esmVLhYeH66efflLTpk3l5eWlfv362bdlnfOsedu3b59++OEH+5z06dNHL7/8siSpUqVK9vK/X0oNALi1EDwB4BaWnp6utWvXqn79+ipfvnyOdUJCQlSvXj2tWbNG6enpDts6d+6sqlWrat68eRozZowWLlyodu3ayWaz2euMHz9ejz76qGrVqqVvv/1WX375pS5fvqx77rlHu3btcmjPZrOpU6dOioyM1P/+9z/169dPH3zwgSZNmpTvYypWrJhat26tgwcPKi4uzmHbiBEjdOTIEX3yySf6/vvvVaZMmWz7T5s2Ta+99pokacaMGdq0aZNGjRqlTZs2qVixYurQoYM2bdqkTZs2Zbvs83pt27ZN58+fV6dOnWSxWHKs88ADD8jFxUUrV660l02fPl0dOnRQRkaG/Zief/55h+Neu3atmjVrpgsXLuiTTz7R//73P9WpU0fdunXTzJkz7fXOnTsnSRo9erSWLFmiGTNmqHLlymrZsmWOoe2jjz7SypUrNXnyZH399ddKTExUhw4ddPHixXwfd6dOnSRJP/30k0P5iRMn1KtXL/Xo0UNLly7VgAEDsu2bdYl0UFCQmjVrZp+TsWPH6rnnnpMkzZ8/315+9aXUAIBbj9u1qwAAblZnzpxRUlKSKlWqlGe9SpUqaevWrTp79qxDWHvooYf09ttvS5Latm2rwMBA9ezZU99++6169uypo0ePavTo0Ro0aJCmTp1q369NmzaqVq2axo4d67DalZqaqrFjx+qRRx6RJEVGRuqXX37RrFmz9Prrr+f7uCpWrChJOn78uEOgrlKliubOnZvnvrVq1VKVKlUkSeHh4apfv759XxcXF5UuXVqNGzfO91jy48iRI5KU5zz4+PiodOnS9roJCQl68cUX1axZM61Zs8YeWCMjIx32GzBggO644w6tWbPGvqLdrl07nTlzRq+++qp69+4tFxcXVa9e3SFIp6enq127djp06JCmTp2abXW3ePHiWrx4sVxdXSVJ5cqVU8OGDfXDDz+oe/fu+Truq+fpaufOndPcuXPVqlWrXPctUaKEGjduLA8PD/n5+TnMSYUKFSRJdevWVWhoaL7GAgC4ubHiCQC3AcMwJCnbalzPnj0dvu7atavc3Ny0du1aSdLy5cuVlpam3r17Ky0tzf7y9PRUixYtsq2kWSwWPfDAAw5ltWvX1uHDh69rvH/38MMPF6idfyI9Pd3hmDMyMv5xm4Zh2Odg48aNunTpkgYMGJDrKum+ffu0e/du+zxdPZ4OHTroxIkT2rNnj73+J598orvuukuenp5yc3OT1WrV6tWr9eeff2Zru2PHjvbQKWXOk6QCzVVu81SyZMk8QycA4PZD8ASAW1ipUqXk5eWlgwcP5lnv0KFD8vLykr+/v0N5UFCQw9dubm4KCAjQ2bNnJUknT56UJDVo0EBWq9XhNWfOHJ05c8Zhfy8vL3l6ejqUeXh4KDk5uUDHlRV+ypUr51BetmzZArXzT0RGRjocb9bnFHOStUKX1zwkJibqzJkzCgkJkST7Z2lzu0Ra+uv8v/TSS9nOf9blq1lz8P777+vZZ59Vo0aN9N1332nz5s2Kjo7WfffdpytXrmRrOyAgwOFrDw8PScqxbm5uhnkCANwauNQWAG5hrq6uuvfee7Vs2TLFxcXlGGLi4uK0bds2tW/f3mGFS5Li4+MVHBxs/zotLU1nz561h5JSpUpJkubNm2e/rNJsV65c0apVq1SlSpVsx5PbyqAZPv30U4fnVGadi5zUq1dPJUuW1KJFi+w3e/q7RYsWKSMjQ23atJEklS5dWpKyfY71all9jhgxQg899FCOdapXry5J+uqrr9SyZUt9/PHHDtsL+qzNgli0aJEkZbuM90bOEwDg1kDwBIBb3IgRI/TDDz9owIABWrBggUO4TE9P17PPPivDMDRixIhs+3799deqV6+e/etvv/1WaWlp9iDRrl07ubm5af/+/TfkMtf09HQNGjRIZ8+ezXZn18Lg4eGR7xW9rECXH+7u7nr55Zf16quv6p133sl2Z9tTp05pxIgRCgwMVP/+/SVJTZs2la+vrz755BN17949x7BWvXp1VatWTTt27ND48ePzHIPFYrGvWmb57bfftGnTJvsqa2HKGlNoaKi6du1aqG1fz+orAODmRvAEgFtcs2bNNHnyZA0ZMkR33323Bg0apAoVKujIkSP66KOPtGXLFk2ePFlNmzbNtu/8+fPl5uamNm3a6I8//tCoUaN055132oNEaGio3njjDY0cOVIHDhzQfffdp5IlS+rkyZPaunWrvL29NXbs2Osa98mTJ7V582YZhqHLly9r586d+uKLL7Rjxw698MILevLJJ//ReclJRESE1q1bp++//15ly5ZV8eLFCxQw8zJs2DDt2LHD/me3bt3k6+ur3377Te+8844uX76sxYsXy9fXV1LmzYbee+899e/fX61bt9aTTz6pwMBA7du3Tzt27NCHH34oKXPltX379mrXrp369Omj4OBgnTt3Tn/++adiYmLsN1u6//779eabb2r06NFq0aKF9uzZozfeeEOVKlVSWlraPzq2bdu2ydfXVzabTcePH9fq1av15ZdfqkyZMvr+++/l7u7+z07e30REREiSpkyZoscff1xWq1XVq1dX8eLFC7UfAMCNQ/AEACfw3HPPqUGDBnrvvfc0dOhQnT17Vv7+/rr77ru1fv16NWnSJMf95s+frzFjxujjjz+23xho8uTJDkFixIgRqlWrlqZMmaJvvvlGKSkpCgoKUoMGDfTMM89c95jnzZunefPmycXFRT4+PqpYsaKaNGmiTz75pNDvOptlypQpGjhwoLp3766kpKQcb5B0vVxcXPTNN9+oU6dO+vzzz/X4448rKSlJwcHBuv/++zV8+HD7Z0GzPPHEEypXrpwmTZqk/v37yzAMhYaG6vHHH7fXuffee7V161aNGzdOQ4YM0fnz5xUQEKBatWo5rDSOHDlSSUlJmj59ut5++23VqlVLn3zyiRYsWPCPj/G+++6TlLkS6e/vr4iICE2aNEl9+/Y1JQy2bNlSI0aM0H//+199/vnnysjI0Nq1awvtuasAgBvPYuR2SzoAgNMaM2aMxo4dq9OnT+f52UUAAIDCwF1tAQAAAACmIngCAAAAAEzFpbYAAAAAAFOx4gkAAAAAMBXBE7iFrFmzRv369VONGjXk7e2t4OBg/etf/9K2bdtyrB8TE6PWrVvLx8dHfn5+euihh3TgwAGHOnv37tVLL72kevXqyc/PT/7+/mrWrJnmzZuXrb1Vq1apTZs2KleunDw8PFSmTBm1atVKS5cuzfcxrF+/Xv3791e9evXk4eEhi8WiQ4cO5Vo/KipKNWrUkIeHhypVqqSxY8fKZrPlq6+CnC+LxZLrq0aNGvnqb9WqVWrSpIm8vLxUqlQp9enTR6dOncpWz2azaezYsQoNDZWHh4dq1KihqKiofPVxI/vauHGjxowZowsXLhRobNfC+7hg7+Pt27erY8eOqlChgooVKyZ/f381adJEX331VY7183O+8uJs7+MxY8bIYrHozJkzOW4PDw+33y23ZcuWeX4vyHqNGTNGkpSSkqIPP/xQd999t0qWLCl3d3cFBwera9eu+vHHH/M1vv3798vDw0ObNm2yl4WGhubat6enp8P+/fv3V3h4uPz8/FSsWDGFhYXp5ZdfzvV4C8qs7wPXa+/evXJ3d1dMTExRDwVAQRkAbhldunQx7r33XmPatGnGunXrjLlz5xqNGzc23NzcjNWrVzvU/fPPP43ixYsb99xzj7FkyRLju+++M+644w6jXLlyxqlTp+z1oqKijBo1ahjjxo0zVqxYYSxdutR4/PHHDUnG2LFjHdqcPXu2MXjwYGP27NnGunXrjPnz5xtt27Y1JBlffvllvo5hzJgxRsWKFY0HH3zQaNmypSHJOHjwYI5133rrLcNisRgjRoww1q5da7z99tuGu7u78eSTTxb6+dq0aVO21+TJkw1JxvDhw6/Z17p16ww3NzfjX//6l7FixQrjq6++MoKDg43w8HAjOTnZoW7//v0NDw8P4+233zbWrl1rDB8+3LBYLMa4cePydVw3qq933nknz/m5XryPC/Y+Xrt2rfH0008bX375pbFmzRrj+++/N7p3725IMt58883rOl+5ccb38ejRow1JxunTp3PcfscddxgtWrQwDMMw/vjjD4fvAa+99pohyZgxY4ZD+dGjR43Tp08b9erVM6xWq/H0008bCxcuNH766Sfjm2++Mbp37264uroa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aWl6/fXXTe+rINauXSsp+w+DDRs2VM2aNbV69eoCtcf7OH/v41dffVXR0dFasmSJ+vXrp0GDBundd9+9rv6uZ7zO9j4uasePH5eU86XnVzt37pwWLlyo++67T8HBwTnWiYiIUHR0tH788UdNmTJFv/76q9q0aZPtMta/a9iwoXbs2KEBAwZo+fLlunTpUr7Hv3z5cqWlpal3794O71tPT0+1aNHC4XLcLD179nT4ukePHpL++p7SoEEDSVLXrl317bff6tixY7n2n3Xe8qoD4OZC8ARuUWPHjtVbb72lcePGadCgQQ7bAgICJCnHlYBz587JYrHIz88v27bly5froYceUps2bfT111/n+gNdtWrV1KBBA3Xq1EnffvutIiMjNXDgQGVkZEiS+vXrJ6vVan9FRkYW+PgCAgKUnJyc4w9O586ds6+A/Pjjjw59Wa3WHB9rkdf5+rvp06dLUr4us80aq5T7+b56tSYgICDHeomJiUpNTc1xZaeo+spNVps5rZyVK1euQCtQvI/z/z6uUKGC6tevrw4dOujjjz/WU089pREjRuj06dP2vqSCn6+rx5rX/rfq+zjrc465/eIgLS1NVqs1zzb+LmsV8ODBgwXa72pXrlyRpGv+cuurr75SSkpKnt+PvL29Vb9+fTVv3lzPP/+8FixYoC1btthXyHMzYsQIvfvuu9q8ebPat2+vgIAARUZG6pdffrnm+E+ePCkpMyz+/b07Z86cbJfcu7m52ec9S9bl01nz27x5cy1cuNAeaMuXL6/w8HCHXwhlyTpvWecRwM2P4AncgsaOHasxY8ZozJgxevXVV7Ntr1KliooVK6bff/8927bff/9dVatWzfbDzvLly/Xggw+qRYsW+u677+Tu7p7v8TRs2FDnz5+3/wA8ZswYRUdH21/X+uEnJ1mfifv7McTHx+vMmTMKDw+XlHmTiav7io6OVrly5Rz2udb5ulpqaqq+/PJL1atXT3Xq1MnXWLPGktv5ztqedVynT59WfHx8tnpXt3Uz9JWbrB8eT5w4kW3b8ePHVapUqXy1w/u4YO/jnMablpZmf0bn9Zyvqznr+zgwMFBSzitjhmHoxIkT9jr5lXU56j+9OZSka974avr06QoMDNT999+f77br168vFxcX7d27N896bm5uevHFFxUTE6Nz587pm2++0dGjR9WuXbtrrpZmjX/e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9HSd2LZNqQkJsl25omIlS8rTz0/FAgLkExhY1MMFABQBgicAAChULq6uCm7YsKiHAQC4iXBXWwAAAACAqQieAAAAAABTETwBAAAAAKYieAIAAAAATEXwBAAAAACYiuAJAAAAADAVwRMAAAAAYCqCJwAAAADAVARPAAAAAICpCJ4AAAAAAFMRPAEAAAAApiJ4AgAAAABMRfAEAAAAAJiK4AkAAAAAMBXBEwAAAABgKoInAAAAAMBUBE8AAAAAgKkIngAAAAAAUxE8AQAAAACmIngCAAAAAExF8AQAAAAAmIrgCQAAAAAwFcETAAAAAGAqgicAAAAAwFQETwAAAACAqQieAAAAAABTETwBAAAAAKYieAIAAAAATEXwBAAAAACYiuAJAAAAADDVPwqeEyZMkMVi0ZAhQyRJNptNw4YNU0REhLy9vVWuXDn17t1bx48fz3ebs2fPlsVi0YMPPuhQnpCQoO7du6ts2bLq3r27EhMT7dv69Okji8WiiRMnOuyzcOFCWSyW6z4+AAAAALjRnDFnXXfwjI6O1meffabatWvby5KSkhQTE6NRo0YpJiZG8+fP1969e9WpU6d8tXn48GG99NJLuueee7Jtmzx5snx8fLRixQp5eXlp8uTJDts9PT01adIknT9//noPCQAAAACKlLPmrOsKngkJCerZs6c+//xzlSxZ0l7u6+urlStXqmvXrqpevboaN26sqKgobdu2TUeOHMmzzfT0dPXs2VNjx45V5cqVs22/cOGCwsLCFBERoRo1aujixYsO21u3bq2goCBNmDDheg4JAAAAAIqUM+es6wqeAwcOVMeOHdW6detr1r148aIsFov8/PzyrPfGG2+odOnSeuKJJ3LcPmjQIH366aeyWq2aMWOGBg8e7LDd1dVV48ePV1RUlOLi4vJ9LAAAAABwM3DmnOVW0B1mz56tmJgYRUdHX7NucnKyhg8frh49eqhEiRK51tuwYYOmT5+u7du351onNDRUsbGxOnXqlAIDA3O8prhz586qU6eORo8erenTp+freAAAAACgqDl7zipQ8Dx69KgGDx6sFStWyNPTM8+6NptN3bt3V0ZGhqZNm5ZrvcuXL6tXr176/PPPVapUqTzbdHFxUVBQUJ51Jk2apFatWmno0KF51stpvDabrUD7FJasfouqfxQe5tJ5MJfOhfl0Hsyl82AunQvz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evP5P0fj56seZw1wjtG1mvlqvM63VjR9/rct6qVDdcqBtgGollhrcFxNgHa9Pu183vt1BscFe32B1qA3zuj56vUF47bQO25z3RbB/lnSjgt0Wxj8GanWnK/XZaXbV+PVpz1UtcElGR3nvR/oe/TmqNaMC9Vx6/uqACwpL4fH42Hh6Z8NQByMF2V6z7iN9jW18Py1awr2fME4rkGWANt6fdpxUQG29fq04wIVYnpFT1MKz6YWxkaL8F9blDX1dx1NOa7RvmAfKxjFv+H5Gl94WmLU4yze41Tb6oeRKK++qCj/T4K1+95P2n0LAmOFZ9OetBstFowWKXrH1SsAw/24F38IjR9Xfedm/Lb17rt4J2vVzOc9v3pbfcdsDTCfdpz6LtV7nHZ9gbbVxVugS9j3rvzi2q1ec2jniw7Qpy1krQHOMbpWc741Xret0cLTaFHR1CLA6LimFFvBHteUYivY4wD1D1RtgHa9cUafq+ityftHSztfoOdM2vmM0j7vqicB2rV9euOMPofzmqNaU0B7XVaotuj0ebdrDlUdYNto4RmoYAvWfE05rjVAu9582h9h7feFC364EBEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZmKhScRERERERGZioUnERERERERmYqFJxEREREREZnKGuoF+Kr6/3+1S6v12vbuq9GMM9pXHaAdAGICbGvHWQNsxxgcp3dcvXGBjtXUcdr1GiABtvX6tOPqAmzr9Vk042oD9GnHwWCfN+16A/V5b2vPAwH6tOOiDc7nfb7RBsd5Xwba6L3nCHSJaccZvQyiNeO8943+2AbjuEYvP9UcXiFYazXjLu5L9MUbVzTjvPfFWue1rb5fqvMaZ4ny2oZ6Pu997+06zTh1kNq+i8e2qH5oAs8hqm3tfap3n9c5auar8/o+0Vl7XYA+7Xy1XvvRAba1+3U6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",
"text/plain": [
"<Figure size 1100x706.06 with 2 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\\n2023-10-27 00:00 to 2023-10-30 00:00 UTC (73 steps)'}>,\n",
" <Figure size 1100x706.06 with 2 Axes>)"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#%%\n",
"# Print and plot results, with lines colored by particle depth\n",
"print(o)\n",
"o.plot(linecolor='z', fast=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4ca076f5-bf67-410e-96d7-0d5356dc0d49",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "global-global-opendrift",
"language": "python",
"name": "conda-env-global-global-opendrift-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment