Note
Go to the end to download the full example code.
ROMS native reader
import numpy as np
from opendrift.readers import reader_ROMS_native
from opendrift.models.oceandrift import OceanDrift
o = OceanDrift(loglevel=20) # Set loglevel to 0 for debug information
15:31:03 INFO opendrift:509: OpenDriftSimulation initialised (version 1.14.0 / v1.14.0-6-gaedbab0)
Creating and adding reader for Nordic 4km current dataset
nordic_native = reader_ROMS_native.Reader(o.test_data_folder() +
'2Feb2016_Nordic_sigma_3d/Nordic-4km_SLEVELS_avg_00_subset2Feb2016.nc')
o.add_reader(nordic_native)
15:31:03 INFO opendrift.readers:61: Opening file with xr.open_dataset
15:31:03 INFO opendrift.readers.reader_ROMS_native:263: Read GLS parameters from file.
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for latitude, selecting lat_psi, and discarding lat_rho
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for latitude, selecting lat_psi, and discarding lat_u
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for latitude, selecting lat_psi, and discarding lat_v
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for longitude, selecting lon_psi, and discarding lon_rho
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for longitude, selecting lon_psi, and discarding lon_u
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for longitude, selecting lon_psi, and discarding lon_v
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for land_binary_mask, selecting mask_psi, and discarding mask_rho
15:31:03 WARNING opendrift.readers.reader_ROMS_native:317: Duplicate variables for ocean_s_coordinate_g2, selecting s_rho, and discarding s_w
15:31:03 INFO opendrift.readers.reader_ROMS_native:324: The following variables without standard_name are discarded: ['AICEnudass', 'Akk_bak', 'Akp_bak', 'Akt_bak', 'Akv_bak', 'Charnok_alpha', 'CrgBan_cw', 'Cs_r', 'Cs_w', 'FSobc_in', 'FSobc_out', 'Falpha', 'Fbeta', 'Fgamma', 'LtracerSrc', 'M2nudg', 'M2obc_in', 'M2obc_out', 'M3nudg', 'M3obc_in', 'M3obc_out', 'Tcline', 'Tnudg', 'Tobc_in', 'Tobc_out', 'Vstretching', 'Vtransform', 'Znudg', 'Zob', 'Zos', 'Zos_hsig_alpha', 'angle', 'dstart', 'dt', 'dtfast', 'el', 'f', 'gamma2', 'gls_Kmin', 'gls_Pmin', 'gls_c1', 'gls_c2', 'gls_c3m', 'gls_c3p', 'gls_cmu0', 'gls_m', 'gls_n', 'gls_p', 'gls_sigk', 'gls_sigp', 'hc', 'mask_u', 'mask_v', 'nAVG', 'nHIS', 'nRST', 'nSTA', 'ndefAVG', 'ndefHIS', 'ndtfast', 'ntimes', 'ntsAVG', 'ocean_time', 'pm', 'pn', 'rdrg', 'rdrg2', 'rho0', 'spherical', 'swrad', 'sz_alpha', 'theta_b', 'theta_s', 'ubar', 'vbar', 'xl', 'zeta_detided']
15:31:03 WARNING opendrift.readers.basereader.structured:50: 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.
15:31:03 INFO opendrift.readers.basereader.structured:90: Making interpolator for lon,lat to x,y conversion...
Seed elements at defined positions, depth and time
o.seed_elements(lon=12.0, lat=68.3, radius=0, number=10,
z=np.linspace(0, -150, 10), time=nordic_native.start_time)
15:31:04 INFO opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
15:31:08 INFO opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
15:31:08 INFO opendrift.models.basemodel.environment:232: x_wind: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: y_wind: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: upward_sea_water_velocity: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: ocean_vertical_diffusivity: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_significant_height: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_x_velocity: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_y_velocity: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_swell_wave_to_direction: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_swell_wave_significant_height: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wind_wave_to_direction: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wind_wave_mean_period: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: sea_surface_wind_wave_significant_height: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: surface_downward_x_stress: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: surface_downward_y_stress: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: turbulent_kinetic_energy: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: turbulent_generic_length_scale: 0.000000
15:31:08 INFO opendrift.models.basemodel.environment:232: ocean_mixed_layer_thickness: 50.000000
Running model
o.run(time_step=3600)
15:31:08 INFO opendrift:1887: Duration, steps or end time not specified, running until end of first reader: 2016-02-04 12:00:00
15:31:08 INFO opendrift:1887: Duration, steps or end time not specified, running until end of first reader: 2016-02-04 12:00:00
15:31:08 INFO opendrift:907: Using existing reader for land_binary_mask
15:31:08 INFO opendrift:936: All points are in ocean
15:31:08 INFO opendrift.readers.reader_ROMS_native:374: Using mask_rho for mask_rho
15:31:08 INFO opendrift.readers.reader_ROMS_native:425: Using zeta for sea surface height
15:31:08 INFO opendrift:2102: 2016-02-02 12:00:00 - step 1 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift.readers.reader_ROMS_native:395: Using mask_u for mask_u
15:31:08 INFO opendrift.readers.reader_ROMS_native:646: Time: 0:00:00.048691
15:31:08 INFO opendrift.readers.reader_ROMS_native:416: Using mask_v for mask_v
15:31:08 INFO opendrift.readers.reader_ROMS_native:439: Using angle from Dataset.
15:31:08 INFO opendrift:2102: 2016-02-02 13:00:00 - step 2 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 14:00:00 - step 3 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 15:00:00 - step 4 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 16:00:00 - step 5 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 17:00:00 - step 6 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 18:00:00 - step 7 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 19:00:00 - step 8 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 20:00:00 - step 9 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 21:00:00 - step 10 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 22:00:00 - step 11 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-02 23:00:00 - step 12 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 00:00:00 - step 13 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 01:00:00 - step 14 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 02:00:00 - step 15 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 03:00:00 - step 16 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 04:00:00 - step 17 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 05:00:00 - step 18 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 06:00:00 - step 19 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 07:00:00 - step 20 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 08:00:00 - step 21 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 09:00:00 - step 22 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 10:00:00 - step 23 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 11:00:00 - step 24 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 12:00:00 - step 25 of 48 - 10 active elements (0 deactivated)
15:31:08 INFO opendrift:2102: 2016-02-03 13:00:00 - step 26 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 14:00:00 - step 27 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 15:00:00 - step 28 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 16:00:00 - step 29 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 17:00:00 - step 30 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 18:00:00 - step 31 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 19:00:00 - step 32 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 20:00:00 - step 33 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 21:00:00 - step 34 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 22:00:00 - step 35 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-03 23:00:00 - step 36 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 00:00:00 - step 37 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 01:00:00 - step 38 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 02:00:00 - step 39 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 03:00:00 - step 40 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 04:00:00 - step 41 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 05:00:00 - step 42 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 06:00:00 - step 43 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 07:00:00 - step 44 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 08:00:00 - step 45 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 09:00:00 - step 46 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 10:00:00 - step 47 of 48 - 10 active elements (0 deactivated)
15:31:09 INFO opendrift:2102: 2016-02-04 11:00:00 - step 48 of 48 - 10 active elements (0 deactivated)
<xarray.Dataset> Size: 69kB Dimensions: ( trajectory: 10, time: 49) Coordinates: * trajectory (trajectory) int64 80B ... * time (time) datetime64[ns] 392B ... Data variables: (12/35) status (trajectory, time) float32 2kB ... moving (trajectory, time) float32 2kB ... age_seconds (trajectory, time) float32 2kB ... origin_marker (trajectory, time) float32 2kB ... lon (trajectory, time) float32 2kB ... lat (trajectory, time) float32 2kB ... ... ... surface_downward_y_stress (trajectory, time) float32 2kB ... turbulent_kinetic_energy (trajectory, time) float32 2kB ... turbulent_generic_length_scale (trajectory, time) float32 2kB ... ocean_mixed_layer_thickness (trajectory, time) float32 2kB ... sea_floor_depth_below_sea_level (trajectory, time) float32 2kB ... land_binary_mask (trajectory, time) float32 2kB ... Attributes: (12/155) Conventions: ... standard_name_vocabulary: ... featureType: ... title: ... summary: ... keywords: ... ... ... geospatial_lon_units: ... geospatial_lon_resolution: ... runtime: ... geospatial_vertical_min: ... geospatial_vertical_max: ... geospatial_vertical_positive: ...
xarray.Dataset
- trajectory: 10
- time: 49
- trajectory(trajectory)int640 1 2 3 4 5 6 7 8 9
- cf_role :
- trajectory_id
- dtype :
- <class 'numpy.int32'>
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
- time(time)datetime64[ns]2016-02-02T12:00:00 ... 2016-02-...
- standard_name :
- time
- long_name :
- time
- dtype :
- <class 'numpy.float64'>
array(['2016-02-02T12:00:00.000000000', '2016-02-02T13:00:00.000000000', '2016-02-02T14:00:00.000000000', '2016-02-02T15:00:00.000000000', '2016-02-02T16:00:00.000000000', '2016-02-02T17:00:00.000000000', '2016-02-02T18:00:00.000000000', '2016-02-02T19:00:00.000000000', '2016-02-02T20:00:00.000000000', '2016-02-02T21:00:00.000000000', '2016-02-02T22:00:00.000000000', '2016-02-02T23:00:00.000000000', '2016-02-03T00:00:00.000000000', '2016-02-03T01:00:00.000000000', '2016-02-03T02:00:00.000000000', '2016-02-03T03:00:00.000000000', '2016-02-03T04:00:00.000000000', '2016-02-03T05:00:00.000000000', '2016-02-03T06:00:00.000000000', '2016-02-03T07:00:00.000000000', '2016-02-03T08:00:00.000000000', '2016-02-03T09:00:00.000000000', '2016-02-03T10:00:00.000000000', '2016-02-03T11:00:00.000000000', '2016-02-03T12:00:00.000000000', '2016-02-03T13:00:00.000000000', '2016-02-03T14:00:00.000000000', '2016-02-03T15:00:00.000000000', '2016-02-03T16:00:00.000000000', '2016-02-03T17:00:00.000000000', '2016-02-03T18:00:00.000000000', '2016-02-03T19:00:00.000000000', '2016-02-03T20:00:00.000000000', '2016-02-03T21:00:00.000000000', '2016-02-03T22:00:00.000000000', '2016-02-03T23:00:00.000000000', '2016-02-04T00:00:00.000000000', '2016-02-04T01:00:00.000000000', '2016-02-04T02:00:00.000000000', '2016-02-04T03:00:00.000000000', '2016-02-04T04:00:00.000000000', '2016-02-04T05:00:00.000000000', '2016-02-04T06:00:00.000000000', '2016-02-04T07:00:00.000000000', '2016-02-04T08:00:00.000000000', '2016-02-04T09:00:00.000000000', '2016-02-04T10:00:00.000000000', '2016-02-04T11:00:00.000000000', '2016-02-04T12:00:00.000000000'], dtype='datetime64[ns]')
- status(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- dtype :
- <class 'numpy.int32'>
- valid_range :
- [0 0]
- flag_values :
- [0]
- flag_meanings :
- active
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- moving(trajectory, time)float321.0 1.0 1.0 1.0 ... 1.0 1.0 1.0 1.0
- dtype :
- <class 'numpy.int32'>
- minval :
- 1
- maxval :
- 1
array([[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]], dtype=float32)
- age_seconds(trajectory, time)float320.0 3.6e+03 ... 1.692e+05 1.728e+05
- dtype :
- <class 'numpy.float32'>
- units :
- s
- minval :
- 0.0
- maxval :
- 172800.0
array([[ 0., 3600., 7200., 10800., 14400., 18000., 21600., 25200., 28800., 32400., 36000., 39600., 43200., 46800., 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., 151200., 154800., 158400., 162000., 165600., 169200., 172800.], [ 0., 3600., 7200., 10800., 14400., 18000., 21600., 25200., 28800., 32400., 36000., 39600., 43200., 46800., 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., 151200., 154800., 158400., 162000., 165600., 169200., 172800.], [ 0., 3600., 7200., 10800., 14400., 18000., 21600., 25200., 28800., 32400., 36000., 39600., 43200., 46800., 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., ... 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., 151200., 154800., 158400., 162000., 165600., 169200., 172800.], [ 0., 3600., 7200., 10800., 14400., 18000., 21600., 25200., 28800., 32400., 36000., 39600., 43200., 46800., 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., 151200., 154800., 158400., 162000., 165600., 169200., 172800.], [ 0., 3600., 7200., 10800., 14400., 18000., 21600., 25200., 28800., 32400., 36000., 39600., 43200., 46800., 50400., 54000., 57600., 61200., 64800., 68400., 72000., 75600., 79200., 82800., 86400., 90000., 93600., 97200., 100800., 104400., 108000., 111600., 115200., 118800., 122400., 126000., 129600., 133200., 136800., 140400., 144000., 147600., 151200., 154800., 158400., 162000., 165600., 169200., 172800.]], dtype=float32)
- origin_marker(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- dtype :
- <class 'numpy.int32'>
- unit :
- description :
- An integer kept constant during the simulation. Different values may be used for different seedings, to separate elements during analysis. With GUI, only a single seeding is possible.
- flag_values :
- [0]
- flag_meanings :
- Seed_0
- minval :
- 0
- maxval :
- 0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- lon(trajectory, time)float3212.0 12.02 12.04 ... 12.93 12.95
- dtype :
- <class 'numpy.float32'>
- units :
- degrees_east
- standard_name :
- longitude
- long_name :
- longitude
- axis :
- X
- minval :
- 12.0
- maxval :
- 12.946903
array([[12. , 12.018996 , 12.037794 , 12.056405 , 12.074805 , 12.092995 , 12.110989 , 12.1288 , 12.14647 , 12.164095 , 12.181681 , 12.199236 , 12.216766 , 12.234496 , 12.2525015, 12.270767 , 12.289283 , 12.308141 , 12.327544 , 12.347472 , 12.367882 , 12.38874 , 12.410128 , 12.431969 , 12.454182 , 12.47668 , 12.498998 , 12.521021 , 12.542655 , 12.5638075, 12.584392 , 12.604235 , 12.623463 , 12.642068 , 12.660049 , 12.677409 , 12.694152 , 12.710288 , 12.725729 , 12.740456 , 12.754704 , 12.768488 , 12.781808 , 12.794662 , 12.807049 , 12.818962 , 12.830394 , 12.841333 , 12.851771 ], [12. , 12.019123 , 12.038081 , 12.056887 , 12.075509 , 12.093954 , 12.112238 , 12.130374 , 12.148438 , 12.166499 , 12.184567 , 12.20265 , 12.220836 , 12.239367 , 12.258238 , 12.277439 , 12.297006 , 12.317229 , 12.338075 , 12.359502 , 12.381498 , 12.404141 , 12.427357 , 12.451058 , 12.475115 , 12.499354 , 12.523364 , 12.547039 , 12.570239 , 12.59265 , 12.614255 , 12.635036 , 12.655204 , 12.674754 , 12.693566 , 12.711586 , 12.728848 , 12.745386 , 12.761231 , 12.776416 , 12.791061 , 12.805298 , 12.819078 , 12.8323345, 12.845056 , 12.857226 , 12.868831 , 12.879849 , 12.890262 ], ... [12. , 12.015296 , 12.030646 , 12.046055 , 12.061481 , 12.076913 , 12.092358 , 12.1078205, 12.123359 , 12.139044 , 12.154882 , 12.170883 , 12.187079 , 12.2035265, 12.22023 , 12.237424 , 12.255258 , 12.273761 , 12.2928505, 12.312506 , 12.333019 , 12.354284 , 12.376255 , 12.399273 , 12.423236 , 12.448054 , 12.473335 , 12.498938 , 12.524768 , 12.5505495, 12.576006 , 12.601143 , 12.625963 , 12.650182 , 12.673749 , 12.696687 , 12.719008 , 12.740639 , 12.761575 , 12.781869 , 12.801531 , 12.820568 , 12.839152 , 12.857318 , 12.875081 , 12.892455 , 12.909456 , 12.926235 , 12.942861 ], [12. , 12.013773 , 12.027634 , 12.0416 , 12.055637 , 12.069767 , 12.084019 , 12.098403 , 12.11297 , 12.127858 , 12.143141 , 12.158827 , 12.174944 , 12.191591 , 12.208844 , 12.226649 , 12.245079 , 12.264202 , 12.283998 , 12.3044815, 12.325922 , 12.348171 , 12.3711815, 12.395166 , 12.419994 , 12.445591 , 12.47153 , 12.4977455, 12.524148 , 12.550329 , 12.576143 , 12.6016 , 12.626662 , 12.651038 , 12.674758 , 12.697843 , 12.720303 , 12.742037 , 12.763061 , 12.783417 , 12.803156 , 12.822362 , 12.841156 , 12.859551 , 12.8775625, 12.895206 , 12.912575 , 12.929805 , 12.946903 ]], dtype=float32)
- lat(trajectory, time)float3268.3 68.31 68.31 ... 68.59 68.59
- dtype :
- <class 'numpy.float32'>
- units :
- degrees_north
- standard_name :
- latitude
- long_name :
- latitude
- axis :
- Y
- minval :
- 68.3
- maxval :
- 68.59387
array([[68.3 , 68.30504 , 68.31006 , 68.31506 , 68.320076, 68.32511 , 68.33018 , 68.33526 , 68.34038 , 68.345535, 68.35074 , 68.355995, 68.36129 , 68.366615, 68.371956, 68.37731 , 68.382675, 68.38801 , 68.39326 , 68.39841 , 68.403465, 68.408394, 68.41305 , 68.417404, 68.42145 , 68.42516 , 68.42843 , 68.43123 , 68.43356 , 68.43544 , 68.43685 , 68.43788 , 68.43864 , 68.43913 , 68.4394 , 68.43945 , 68.43932 , 68.43902 , 68.438614, 68.43815 , 68.437706, 68.43727 , 68.43684 , 68.4364 , 68.43595 , 68.43547 , 68.434944, 68.43437 , 68.43373 ], [68.3 , 68.30538 , 68.31077 , 68.31615 , 68.32156 , 68.32701 , 68.33251 , 68.33805 , 68.34365 , 68.34932 , 68.355064, 68.36088 , 68.36676 , 68.37269 , 68.378654, 68.38467 , 68.39071 , 68.39667 , 68.40255 , 68.40833 , 68.41398 , 68.419334, 68.4244 , 68.429146, 68.43352 , 68.437416, 68.440834, 68.44378 , 68.44626 , 68.448296, 68.449905, 68.45109 , 68.45201 , 68.4527 , 68.45323 , 68.45369 , 68.45407 , 68.4544 , 68.45468 , 68.454926, 68.45517 , 68.45546 , 68.45581 , 68.45624 , 68.45672 , 68.45723 , 68.45776 , 68.45828 , 68.45878 ], [68.3 , 68.305466, 68.310936, 68.31641 , 68.321915, 68.32747 , 68.33307 , 68.33872 , 68.34444 , 68.35023 , 68.3561 , 68.36205 , ... 68.552635, 68.55583 , 68.55908 , 68.5624 , 68.56577 , 68.56921 , 68.5727 ], [68.3 , 68.30618 , 68.31243 , 68.318756, 68.32517 , 68.331696, 68.33833 , 68.3451 , 68.35201 , 68.35911 , 68.36639 , 68.37388 , 68.381584, 68.3895 , 68.39765 , 68.40607 , 68.41468 , 68.42343 , 68.43231 , 68.44126 , 68.45006 , 68.45865 , 68.46701 , 68.47501 , 68.482635, 68.48986 , 68.49664 , 68.502975, 68.50889 , 68.51441 , 68.519585, 68.5244 , 68.52885 , 68.53305 , 68.53705 , 68.540825, 68.54438 , 68.54783 , 68.551254, 68.55469 , 68.55812 , 68.56156 , 68.56506 , 68.56863 , 68.572266, 68.575966, 68.579735, 68.58357 , 68.58746 ], [68.3 , 68.3064 , 68.312874, 68.319435, 68.326096, 68.33286 , 68.339745, 68.34674 , 68.35388 , 68.3612 , 68.368706, 68.37642 , 68.38435 , 68.39252 , 68.400925, 68.40962 , 68.418526, 68.427536, 68.43662 , 68.445694, 68.45455 , 68.46318 , 68.47155 , 68.479546, 68.48715 , 68.49436 , 68.501114, 68.50741 , 68.513275, 68.518776, 68.52393 , 68.52873 , 68.533195, 68.53746 , 68.54152 , 68.545364, 68.54901 , 68.55261 , 68.55618 , 68.55973 , 68.563286, 68.56687 , 68.570526, 68.57425 , 68.57804 , 68.5819 , 68.58583 , 68.58982 , 68.59387 ]], dtype=float32)
- z(trajectory, time)float320.0 0.0 0.0 ... -115.0 -115.0
- dtype :
- <class 'numpy.float32'>
- units :
- m
- standard_name :
- z
- long_name :
- vertical position
- axis :
- Z
- positive :
- up
- minval :
- -145.01424
- maxval :
- 0.0
array([[ 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ], [ -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666, -16.666666], ... -133.33333 , -133.33333 , -133.33333 , -133.33333 , -133.33333 , -133.33333 , -133.33333 , -133.33333 , -131.41325 , -128.85619 , -126.01974 , -122.9878 , -119.90839 , -117.0533 , -115.41541 , -113.82893 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 , -112.26823 ], [-145.01424 , -144.88087 , -144.75473 , -144.37181 , -143.82918 , -143.25461 , -142.64532 , -141.82571 , -140.53387 , -139.21065 , -137.85321 , -136.23814 , -133.75674 , -131.20221 , -128.56519 , -125.671036, -122.75149 , -120.212265, -118.05948 , -117.09141 , -115.990875, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034, -114.965034]], dtype=float32)
- wind_drift_factor(trajectory, time)float320.02 0.02 0.02 ... 0.02 0.02 0.02
- dtype :
- <class 'numpy.float32'>
- units :
- 1
- description :
- Elements at surface are moved with this fraction of the vind vector, in addition to currents and Stokes drift
- minval :
- 0.02
- maxval :
- 0.02
array([[0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], ... [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02], [0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02]], dtype=float32)
- current_drift_factor(trajectory, time)float321.0 1.0 1.0 1.0 ... 1.0 1.0 1.0 1.0
- dtype :
- <class 'numpy.float32'>
- units :
- 1
- description :
- Elements are moved with this fraction of the current vector, in addition to currents and Stokes drift
- minval :
- 1.0
- maxval :
- 1.0
array([[1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]], dtype=float32)
- terminal_velocity(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- dtype :
- <class 'numpy.float32'>
- units :
- m/s
- description :
- Terminal rise/sinking velocity (buoyancy) in the ocean column
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- x_sea_water_velocity(trajectory, time)float320.2178 0.2155 ... 0.1935 0.1935
- minval :
- 0.118565544
- maxval :
- 0.29991406
array([[0.21777777, 0.21545067, 0.2132618 , 0.21079648, 0.2083422 , 0.20605281, 0.2039207 , 0.20225573, 0.20168716, 0.20120266, 0.20080034, 0.20047873, 0.20270751, 0.20579736, 0.20874374, 0.21153906, 0.21539982, 0.22158226, 0.2275157 , 0.23296289, 0.23803417, 0.24403134, 0.24915522, 0.25334987, 0.25655964, 0.25446016, 0.25108165, 0.2466141 , 0.24110752, 0.23461373, 0.22614922, 0.2191382 , 0.21204276, 0.20492344, 0.19783202, 0.19081222, 0.1839002 , 0.17597562, 0.16783683, 0.16240461, 0.15709898, 0.15181313, 0.14651436, 0.14118521, 0.13579106, 0.13030447, 0.12470538, 0.11897684, 0.11897684], [0.2192253 , 0.21727958, 0.21547648, 0.21333621, 0.21125531, 0.20934872, 0.20761031, 0.20673552, 0.20665354, 0.20667434, 0.20679782, 0.20790711, 0.21181197, 0.2156398 , 0.2193527 , 0.22346848, 0.230919 , 0.23794858, 0.24452795, 0.25095916, 0.2582848 , 0.2647446 , 0.27023676, 0.27422866, 0.27627125, 0.2736009 , 0.26976508, 0.26432118, 0.25530574, 0.24610128, 0.23670971, 0.22971338, 0.22267051, 0.21426181, 0.2052268 , 0.19660135, 0.18834873, 0.18046285, 0.17292516, 0.16678956, 0.16213115, 0.15693322, 0.15096428, 0.14486519, 0.13859972, 0.13214022, 0.12546542, 0.11856554, 0.11856554], ... [0.17533877, 0.17592897, 0.17653665, 0.17668588, 0.17670536, 0.17679545, 0.1769613 , 0.17775631, 0.17938623, 0.1810896 , 0.18287674, 0.18505068, 0.18785359, 0.1907077 , 0.19623776, 0.20346212, 0.21101733, 0.21762422, 0.2239881 , 0.23367026, 0.242143 , 0.25007492, 0.2619095 , 0.27257577, 0.2822089 , 0.28738585, 0.29096282, 0.2934672 , 0.29284006, 0.2890917 , 0.28539792, 0.28173923, 0.27486598, 0.26742718, 0.26023686, 0.25321493, 0.24532743, 0.23741648, 0.23010796, 0.22289653, 0.21578917, 0.21061267, 0.20584795, 0.20124502, 0.19681688, 0.19254379, 0.19000815, 0.18822806, 0.18822806], [0.1578861 , 0.15884227, 0.16000882, 0.16077344, 0.1617898 , 0.16313064, 0.16459516, 0.16664323, 0.17025071, 0.17471404, 0.17925945, 0.18413329, 0.19011116, 0.19695282, 0.2031866 , 0.21022548, 0.218041 , 0.2256328 , 0.23337899, 0.24418302, 0.25329039, 0.26186818, 0.27285817, 0.28235078, 0.2910088 , 0.2948035 , 0.29786217, 0.29991406, 0.2973299 , 0.2930885 , 0.28896856, 0.28443965, 0.276602 , 0.26909864, 0.2618596 , 0.25471604, 0.246462 , 0.23835488, 0.23075949, 0.22372079, 0.21765818, 0.2129407 , 0.20839256, 0.20401183, 0.1998067 , 0.19666155, 0.19505009, 0.19353563, 0.19353563]], dtype=float32)
- y_sea_water_velocity(trajectory, time)float320.1561 0.1555 ... 0.1256 0.1256
- minval :
- -0.019770665
- maxval :
- 0.28136766
array([[ 0.15607086, 0.15554969, 0.15510467, 0.15541995, 0.15606135, 0.15678473, 0.15758719, 0.15856382, 0.15990366, 0.16129543, 0.16274352, 0.16425245, 0.16502911, 0.1654955 , 0.16587101, 0.16615961, 0.16537085, 0.16250855, 0.15976694, 0.15665936, 0.15279867, 0.14415245, 0.13499486, 0.12534146, 0.11520682, 0.1012563 , 0.08678375, 0.07240164, 0.05812557, 0.04396812, 0.03193604, 0.02328417, 0.01541318, 0.00826761, 0.0017907 , -0.00407424, -0.00938269, -0.01242779, -0.01439667, -0.0138239 , -0.01343467, -0.01332635, -0.01352201, -0.01404891, -0.01492121, -0.0161547 , -0.01776611, -0.01977067, -0.01977067], [ 0.16675992, 0.16673814, 0.16680989, 0.16774926, 0.16897722, 0.17031899, 0.17177476, 0.17356856, 0.17567413, 0.17787509, 0.18017764, 0.18231519, 0.18368554, 0.18502057, 0.18629679, 0.18707652, 0.184837 , 0.1822286 , 0.17926425, 0.17484504, 0.16609682, 0.15688252, 0.14713491, 0.13547803, 0.1208234 , 0.10597734, 0.09129336, 0.07689638, 0.0632377 , 0.04984454, 0.03679437, 0.0285824 , 0.02119374, 0.01669037, 0.0141272 , 0.01197461, 0.01018607, 0.00872066, 0.00753946, 0.0076609 , 0.00898523, 0.0108624 , 0.01321585, 0.01491849, 0.01597105, 0.01637709, 0.01615671, 0.01530157, 0.01530157], ... 0.205792 , 0.20961186, 0.21418263, 0.21976346, 0.22571278, 0.23206848, 0.23869516, 0.2454445 , 0.252637 , 0.26075166, 0.2668943 , 0.2711104 , 0.275131 , 0.277432 , 0.2724725 , 0.26620898, 0.2591578 , 0.24805212, 0.23610283, 0.22398153, 0.21013412, 0.19643995, 0.18316737, 0.17122768, 0.16040094, 0.14925545, 0.13773166, 0.13033654, 0.12384185, 0.11715408, 0.11027838, 0.10691322, 0.10615879, 0.10625352, 0.10642767, 0.10668318, 0.10850827, 0.110562 , 0.11263681, 0.11474307, 0.11685684, 0.11879344, 0.12065318, 0.12065318], [ 0.19816042, 0.2007219 , 0.20332761, 0.20638302, 0.20968507, 0.21316229, 0.21689518, 0.22122814, 0.22670424, 0.2325666 , 0.23899527, 0.24589276, 0.2528646 , 0.2606795 , 0.26942956, 0.2759016 , 0.27931023, 0.28136766, 0.28117877, 0.27457815, 0.26727393, 0.2593536 , 0.247808 , 0.23580146, 0.2234967 , 0.20919278, 0.19515836, 0.18170945, 0.17049311, 0.15985906, 0.14889732, 0.13826762, 0.1321476 , 0.12582178, 0.11930869, 0.11300172, 0.11170496, 0.11049266, 0.10995807, 0.11017758, 0.11120832, 0.11328527, 0.11538155, 0.11749523, 0.11963155, 0.12169935, 0.12366351, 0.12563922, 0.12563922]], dtype=float32)
- sea_surface_height(trajectory, time)float320.2854 0.2812 ... 0.05158 0.05158
- minval :
- 0.05158125
- maxval :
- 0.28540272
array([[0.28540272, 0.2812017 , 0.276999 , 0.27285415, 0.2687156 , 0.26455802, 0.2603817 , 0.25619876, 0.2520374 , 0.24786821, 0.24369088, 0.23950505, 0.23528627, 0.23107833, 0.2269104 , 0.22278343, 0.21863396, 0.21438165, 0.21007995, 0.20587197, 0.2017246 , 0.19729513, 0.1930232 , 0.1889123 , 0.18496472, 0.18050021, 0.17614698, 0.17196655, 0.1679462 , 0.16407263, 0.1599146 , 0.1555083 , 0.15115999, 0.14685762, 0.14259027, 0.13834815, 0.1341224 , 0.1298457 , 0.12553546, 0.12100461, 0.11643305, 0.11182591, 0.10718326, 0.10250226, 0.09778567, 0.09303512, 0.08825127, 0.08343484, 0.08343484], [0.28540272, 0.28109884, 0.27678967, 0.27254432, 0.2682953 , 0.26402342, 0.2597287 , 0.25543693, 0.2511532 , 0.24685735, 0.24254864, 0.23821759, 0.2338546 , 0.22952223, 0.225227 , 0.22094181, 0.21652341, 0.21223313, 0.20807572, 0.20396101, 0.1994234 , 0.19499667, 0.19074538, 0.18652667, 0.18221723, 0.1778024 , 0.17358197, 0.16949405, 0.16529553, 0.16122408, 0.15726681, 0.15292713, 0.14864475, 0.14432648, 0.13997553, 0.13562529, 0.13127124, 0.12690629, 0.12252565, 0.11804716, 0.11343692, 0.10879739, 0.10413493, 0.09943146, 0.09469016, 0.08991387, 0.08510381, 0.08026421, 0.08026421], ... [0.28540272, 0.28045514, 0.27548242, 0.27055195, 0.2656143 , 0.26063758, 0.25561887, 0.25057667, 0.24552022, 0.24041677, 0.23526177, 0.2300322 , 0.2247081 , 0.21932389, 0.21386921, 0.20821318, 0.20244792, 0.19669795, 0.1908759 , 0.18471298, 0.17870706, 0.1728705 , 0.16683923, 0.161076 , 0.1556066 , 0.15001646, 0.14463788, 0.13953431, 0.13461299, 0.12980133, 0.12514721, 0.12065138, 0.11635115, 0.11211787, 0.10792167, 0.10377625, 0.09980991, 0.09577451, 0.09153784, 0.08726655, 0.08295994, 0.07876721, 0.07456399, 0.07032844, 0.06605382, 0.06174701, 0.05748867, 0.05325147, 0.05325147], [0.28540272, 0.28023383, 0.27503255, 0.26986387, 0.26469454, 0.25949198, 0.25425598, 0.248998 , 0.24374256, 0.23845655, 0.23314327, 0.22778457, 0.2223413 , 0.21686277, 0.21134582, 0.20562804, 0.19971804, 0.19371307, 0.18766469, 0.18139085, 0.1753702 , 0.16955923, 0.16365287, 0.15808469, 0.15284629, 0.14746633, 0.14226131, 0.13725434, 0.13238432, 0.127641 , 0.12304772, 0.11861233, 0.11435523, 0.11012758, 0.10593447, 0.10180216, 0.09789014, 0.09395 , 0.08984587, 0.08555669, 0.08129977, 0.07710557, 0.07288232, 0.06862783, 0.06433716, 0.06005701, 0.05582138, 0.05158125, 0.05158125]], dtype=float32)
- x_wind(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- y_wind(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- upward_sea_water_velocity(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- ocean_vertical_diffusivity(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wave_significant_height(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wave_stokes_drift_x_velocity(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wave_stokes_drift_y_velocity(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wave_period_at_variance_spectral_density_maximum(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment(trajectory, time)float321.257 1.257 1.257 ... 1.257 1.257
- minval :
- 1.2566371
- maxval :
- 1.2566371
array([[1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371], [1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371], [1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, ... 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371], [1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371], [1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371, 1.2566371]], dtype=float32)
- sea_surface_swell_wave_to_direction(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_swell_wave_peak_period_from_variance_spectral_density(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_swell_wave_significant_height(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wind_wave_to_direction(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wind_wave_mean_period(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- sea_surface_wind_wave_significant_height(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- surface_downward_x_stress(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- surface_downward_y_stress(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- turbulent_kinetic_energy(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- turbulent_generic_length_scale(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- ocean_mixed_layer_thickness(trajectory, time)float3250.0 50.0 50.0 ... 50.0 50.0 50.0
- minval :
- 50.0
- maxval :
- 50.0
array([[50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.], [50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50., 50.]], dtype=float32)
- sea_floor_depth_below_sea_level(trajectory, time)float32144.7 144.7 144.6 ... 143.7 143.7
- minval :
- 107.6641
- maxval :
- 144.72884
array([[144.72884 , 144.67424 , 144.6002 , 144.30568 , 143.96576 , 143.65767 , 143.3785 , 142.93623 , 141.91878 , 140.89528 , 139.8654 , 138.82877 , 137.1374 , 135.19044 , 133.22884 , 131.25375 , 129.11626 , 126.668396, 124.27837 , 121.89397 , 119.55142 , 117.628296, 115.73457 , 113.87106 , 112.039215, 111.36639 , 110.95084 , 110.55869 , 110.18916 , 109.84257 , 110.828445, 112.30263 , 113.79114 , 115.28778 , 116.78696 , 118.28357 , 119.77307 , 121.562546, 123.384125, 125.303024, 127.125626, 128.85107 , 130.48381 , 132.0233 , 133.47668 , 134.84901 , 136.14339 , 137.36278 , 137.36278 ], [144.72884 , 144.66356 , 144.58049 , 144.2391 , 143.8663 , 143.51973 , 143.19626 , 142.4873 , 141.39041 , 140.28313 , 139.16487 , 137.80542 , 135.7154 , 133.59741 , 131.45569 , 129.23035 , 126.573006, 123.88356 , 121.16234 , 118.52008 , 116.37885 , 114.29669 , 112.23932 , 110.72584 , 110.23054 , 109.754944, 109.29574 , 109.07313 , 110.09598 , 111.03415 , 111.9059 , 113.49078 , 115.09282 , 117.21597 , 119.55218 , 121.724945, 123.75304 , 125.6416 , 127.40048 , 129.13023 , 130.86588 , 132.50969 , 134.01079 , 135.3498 , 136.53848 , 137.58821 , 138.5125 , 139.31827 , 139.31827 ], ... [144.72884 , 144.6164 , 144.5049 , 144.1212 , 143.61858 , 143.09724 , 142.5536 , 141.70453 , 140.44 , 139.1459 , 137.82034 , 136.10562 , 133.67987 , 131.19392 , 128.64232 , 125.81152 , 122.785355, 119.711685, 116.86243 , 115.2307 , 113.65023 , 112.09536 , 112.90028 , 113.74682 , 114.44146 , 116.12817 , 117.968475, 119.52127 , 121.412285, 123.853355, 126.0007 , 127.844955, 129.91066 , 131.90047 , 133.70627 , 135.31909 , 136.17201 , 137.24503 , 139.02635 , 140.70847 , 142.29993 , 142.88258 , 143.26743 , 143.59062 , 143.86256 , 144.08842 , 143.79185 , 143.24458 , 143.24458 ], [144.72884 , 144.60065 , 144.47969 , 144.10194 , 143.56448 , 142.99512 , 142.39107 , 141.57672 , 140.29013 , 138.9722 , 137.62007 , 136.01036 , 133.53441 , 130.98535 , 128.35384 , 125.46541 , 122.55177 , 120.018555, 117.87181 , 116.91002 , 115.815506, 114.79548 , 115.88288 , 116.57988 , 116.80409 , 118.03784 , 119.529945, 121.14813 , 123.48099 , 125.96147 , 128.14233 , 130.09805 , 132.32828 , 134.37154 , 136.2316 , 137.83905 , 138.45116 , 138.97005 , 140.04865 , 141.77591 , 142.9697 , 143.47153 , 143.90453 , 144.27742 , 144.60004 , 144.61342 , 144.16238 , 143.6536 , 143.6536 ]], dtype=float32)
- land_binary_mask(trajectory, time)float320.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- minval :
- 0.0
- maxval :
- 0.0
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]], dtype=float32)
- trajectoryPandasIndex
PandasIndex(Index([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int64', name='trajectory'))
- timePandasIndex
PandasIndex(DatetimeIndex(['2016-02-02 12:00:00', '2016-02-02 13:00:00', '2016-02-02 14:00:00', '2016-02-02 15:00:00', '2016-02-02 16:00:00', '2016-02-02 17:00:00', '2016-02-02 18:00:00', '2016-02-02 19:00:00', '2016-02-02 20:00:00', '2016-02-02 21:00:00', '2016-02-02 22:00:00', '2016-02-02 23:00:00', '2016-02-03 00:00:00', '2016-02-03 01:00:00', '2016-02-03 02:00:00', '2016-02-03 03:00:00', '2016-02-03 04:00:00', '2016-02-03 05:00:00', '2016-02-03 06:00:00', '2016-02-03 07:00:00', '2016-02-03 08:00:00', '2016-02-03 09:00:00', '2016-02-03 10:00:00', '2016-02-03 11:00:00', '2016-02-03 12:00:00', '2016-02-03 13:00:00', '2016-02-03 14:00:00', '2016-02-03 15:00:00', '2016-02-03 16:00:00', '2016-02-03 17:00:00', '2016-02-03 18:00:00', '2016-02-03 19:00:00', '2016-02-03 20:00:00', '2016-02-03 21:00:00', '2016-02-03 22:00:00', '2016-02-03 23:00:00', '2016-02-04 00:00:00', '2016-02-04 01:00:00', '2016-02-04 02:00:00', '2016-02-04 03:00:00', '2016-02-04 04:00:00', '2016-02-04 05:00:00', '2016-02-04 06:00:00', '2016-02-04 07:00:00', '2016-02-04 08:00:00', '2016-02-04 09:00:00', '2016-02-04 10:00:00', '2016-02-04 11:00:00', '2016-02-04 12:00:00'], dtype='datetime64[ns]', name='time', freq='h'))
- Conventions :
- CF-1.11, ACDD-1.3
- standard_name_vocabulary :
- CF Standard Name Table v85
- featureType :
- trajectory
- title :
- OpenDrift trajectory simulation
- summary :
- Output from simulation with OpenDrift framework
- keywords :
- trajectory, drift, lagrangian, simulation
- history :
- Created 2025-05-16 15:31:08.127675
- date_created :
- 2025-05-16T15:31:08.127681
- source :
- Output from simulation with OpenDrift
- model_url :
- https://github.com/OpenDrift/opendrift
- opendrift_class :
- OceanDrift
- opendrift_module :
- opendrift.models.oceandrift
- readers :
- odict_keys(['roms native', 'global_landmask'])
- time_coverage_start :
- 2016-02-02 12:00:00
- time_step_calculation :
- 1:00:00
- time_step_output :
- 1:00:00
- config_environment:constant:x_sea_water_velocity :
- None
- config_environment:fallback:x_sea_water_velocity :
- 0
- config_environment:constant:y_sea_water_velocity :
- None
- config_environment:fallback:y_sea_water_velocity :
- 0
- config_environment:constant:sea_surface_height :
- None
- config_environment:fallback:sea_surface_height :
- 0
- config_environment:constant:x_wind :
- None
- config_environment:fallback:x_wind :
- 0
- config_environment:constant:y_wind :
- None
- config_environment:fallback:y_wind :
- 0
- config_environment:constant:upward_sea_water_velocity :
- None
- config_environment:fallback:upward_sea_water_velocity :
- 0
- config_environment:constant:ocean_vertical_diffusivity :
- None
- config_environment:fallback:ocean_vertical_diffusivity :
- 0
- config_environment:constant:sea_surface_wave_significant_height :
- None
- config_environment:fallback:sea_surface_wave_significant_height :
- 0
- config_environment:constant:sea_surface_wave_stokes_drift_x_velocity :
- None
- config_environment:fallback:sea_surface_wave_stokes_drift_x_velocity :
- 0
- config_environment:constant:sea_surface_wave_stokes_drift_y_velocity :
- None
- config_environment:fallback:sea_surface_wave_stokes_drift_y_velocity :
- 0
- config_environment:constant:sea_surface_wave_period_at_variance_spectral_density_maximum :
- None
- config_environment:fallback:sea_surface_wave_period_at_variance_spectral_density_maximum :
- 0
- config_environment:constant:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment :
- None
- config_environment:fallback:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment :
- 0
- config_environment:constant:sea_surface_swell_wave_to_direction :
- None
- config_environment:fallback:sea_surface_swell_wave_to_direction :
- 0
- config_environment:constant:sea_surface_swell_wave_peak_period_from_variance_spectral_density :
- None
- config_environment:fallback:sea_surface_swell_wave_peak_period_from_variance_spectral_density :
- 0
- config_environment:constant:sea_surface_swell_wave_significant_height :
- None
- config_environment:fallback:sea_surface_swell_wave_significant_height :
- 0
- config_environment:constant:sea_surface_wind_wave_to_direction :
- None
- config_environment:fallback:sea_surface_wind_wave_to_direction :
- 0
- config_environment:constant:sea_surface_wind_wave_mean_period :
- None
- config_environment:fallback:sea_surface_wind_wave_mean_period :
- 0
- config_environment:constant:sea_surface_wind_wave_significant_height :
- None
- config_environment:fallback:sea_surface_wind_wave_significant_height :
- 0
- config_environment:constant:surface_downward_x_stress :
- None
- config_environment:fallback:surface_downward_x_stress :
- 0
- config_environment:constant:surface_downward_y_stress :
- None
- config_environment:fallback:surface_downward_y_stress :
- 0
- config_environment:constant:turbulent_kinetic_energy :
- None
- config_environment:fallback:turbulent_kinetic_energy :
- 0
- config_environment:constant:turbulent_generic_length_scale :
- None
- config_environment:fallback:turbulent_generic_length_scale :
- 0
- config_environment:constant:ocean_mixed_layer_thickness :
- None
- config_environment:fallback:ocean_mixed_layer_thickness :
- 50
- config_environment:constant:sea_floor_depth_below_sea_level :
- None
- config_environment:fallback:sea_floor_depth_below_sea_level :
- 10000
- config_environment:constant:land_binary_mask :
- None
- config_environment:fallback:land_binary_mask :
- None
- config_general:use_auto_landmask :
- True
- config_drift:current_uncertainty :
- 0
- config_drift:current_uncertainty_uniform :
- 0
- config_drift:max_speed :
- 2.0
- config_readers:max_number_of_fails :
- 1
- config_general:simulation_name :
- config_general:coastline_action :
- stranding
- config_general:coastline_approximation_precision :
- 0.001
- config_general:time_step_minutes :
- 60
- config_general:time_step_output_minutes :
- None
- config_seed:ocean_only :
- True
- config_seed:number :
- 1
- config_drift:max_age_seconds :
- None
- config_drift:advection_scheme :
- euler
- config_drift:horizontal_diffusivity :
- 0
- config_drift:profiles_depth :
- 50
- config_drift:wind_uncertainty :
- 0
- config_drift:relative_wind :
- False
- config_drift:deactivate_north_of :
- None
- config_drift:deactivate_south_of :
- None
- config_drift:deactivate_east_of :
- None
- config_drift:deactivate_west_of :
- None
- config_seed:origin_marker :
- 0
- config_seed:z :
- 0
- config_seed:wind_drift_factor :
- 0.02
- config_seed:current_drift_factor :
- 1
- config_seed:terminal_velocity :
- 0.0
- config_drift:vertical_advection :
- True
- config_drift:vertical_advection_at_surface :
- True
- config_drift:vertical_mixing :
- False
- config_drift:vertical_mixing_at_surface :
- True
- config_vertical_mixing:timestep :
- 60
- config_vertical_mixing:diffusivitymodel :
- environment
- config_vertical_mixing:background_diffusivity :
- 1.2e-05
- config_vertical_mixing:TSprofiles :
- False
- config_drift:wind_drift_depth :
- 0.1
- config_drift:stokes_drift :
- True
- config_drift:stokes_drift_profile :
- Phillips
- config_drift:use_tabularised_stokes_drift :
- False
- config_drift:tabularised_stokes_drift_fetch :
- 25000
- config_general:seafloor_action :
- lift_to_seafloor
- config_drift:truncate_ocean_model_below_m :
- None
- config_seed:seafloor :
- False
- opendrift_version :
- 1.14.0
- seed_geojson :
- {"features": [], "type": "FeatureCollection"}
- simulation_time :
- 2025-05-16 15:31:08.132435
- reader_x_sea_water_velocity :
- ['roms native']
- reader_y_sea_water_velocity :
- ['roms native']
- reader_sea_surface_height :
- ['roms native']
- reader_x_wind :
- 0
- reader_y_wind :
- 0
- reader_upward_sea_water_velocity :
- 0
- reader_ocean_vertical_diffusivity :
- 0
- reader_sea_surface_wave_significant_height :
- 0
- reader_sea_surface_wave_stokes_drift_x_velocity :
- 0
- reader_sea_surface_wave_stokes_drift_y_velocity :
- 0
- reader_sea_surface_wave_period_at_variance_spectral_density_maximum :
- 0
- reader_sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment :
- 0
- reader_sea_surface_swell_wave_to_direction :
- 0
- reader_sea_surface_swell_wave_peak_period_from_variance_spectral_density :
- 0
- reader_sea_surface_swell_wave_significant_height :
- 0
- reader_sea_surface_wind_wave_to_direction :
- 0
- reader_sea_surface_wind_wave_mean_period :
- 0
- reader_sea_surface_wind_wave_significant_height :
- 0
- reader_surface_downward_x_stress :
- 0
- reader_surface_downward_y_stress :
- 0
- reader_turbulent_kinetic_energy :
- 0
- reader_turbulent_generic_length_scale :
- 0
- reader_ocean_mixed_layer_thickness :
- 50
- reader_sea_floor_depth_below_sea_level :
- ['roms native']
- reader_land_binary_mask :
- ['global_landmask']
- time_coverage_end :
- 2016-02-04 12:00:00
- time_coverage_duration :
- P2DT0H0M0S
- time_coverage_resolution :
- P0DT1H0M0S
- performance :
- -------------------- Reader performance: -------------------- roms native 0:00:00.2 total 0:00:00.0 preparing 0:00:00.2 reading 0:00:00.0 interpolation 0:00:00.0 interpolation_time 0:00:00.0 masking 0:00:00.0 rotating vectors -------------------- global_landmask 0:00:00.0 total 0:00:00.0 preparing 0:00:00.0 reading 0:00:00.0 masking -------------------- Performance: 6.1 total time 4.6 configuration 0.0 preparing main loop 0.0 moving elements to ocean 1.5 main loop 0.0 updating elements 0.0 cleaning up --------------------
- geospatial_bounds_crs :
- EPSG:4326
- geospatial_bounds_vertical_crs :
- EPSG:5831
- geospatial_lat_min :
- 68.3
- geospatial_lat_max :
- 68.59387
- geospatial_lat_units :
- degrees_north
- geospatial_lat_resolution :
- point
- geospatial_lon_min :
- 12.0
- geospatial_lon_max :
- 12.946903
- geospatial_lon_units :
- degrees_east
- geospatial_lon_resolution :
- point
- runtime :
- 0:00:06.130440
- geospatial_vertical_min :
- -145.01424
- geospatial_vertical_max :
- 0.0
- geospatial_vertical_positive :
- up
Print and plot results, with lines colored by particle depth
print(o)
o.plot(linecolor='z', fast=True)
#o.animation()

===========================
--------------------
Reader performance:
--------------------
roms native
0:00:00.2 total
0:00:00.0 preparing
0:00:00.2 reading
0:00:00.0 interpolation
0:00:00.0 interpolation_time
0:00:00.0 masking
0:00:00.0 rotating vectors
--------------------
global_landmask
0:00:00.0 total
0:00:00.0 preparing
0:00:00.0 reading
0:00:00.0 masking
--------------------
Performance:
6.1 total time
4.6 configuration
0.0 preparing main loop
0.0 moving elements to ocean
1.5 main loop
0.0 updating elements
0.0 cleaning up
--------------------
===========================
Model: OceanDrift (OpenDrift version 1.14.0)
10 active Lagrangian3DArray particles (0 deactivated, 0 scheduled)
-------------------
Environment variables:
-----
sea_floor_depth_below_sea_level
sea_surface_height
x_sea_water_velocity
y_sea_water_velocity
1) roms native
-----
land_binary_mask
1) global_landmask
-----
Readers not added for the following variables:
ocean_mixed_layer_thickness
ocean_vertical_diffusivity
sea_surface_swell_wave_peak_period_from_variance_spectral_density
sea_surface_swell_wave_significant_height
sea_surface_swell_wave_to_direction
sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment
sea_surface_wave_period_at_variance_spectral_density_maximum
sea_surface_wave_significant_height
sea_surface_wave_stokes_drift_x_velocity
sea_surface_wave_stokes_drift_y_velocity
sea_surface_wind_wave_mean_period
sea_surface_wind_wave_significant_height
sea_surface_wind_wave_to_direction
surface_downward_x_stress
surface_downward_y_stress
turbulent_generic_length_scale
turbulent_kinetic_energy
upward_sea_water_velocity
x_wind
y_wind
Discarded readers:
Time:
Start: 2016-02-02 12:00:00 UTC
Present: 2016-02-04 12:00:00 UTC
Calculation steps: 48 * 1:00:00 - total time: 2 days, 0:00:00
Output steps: 49 * 1:00:00
===========================
15:31:09 WARNING opendrift:2479: Plotting fast. This will make your plots less accurate.
(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2016-02-02 12:00 to 2016-02-04 12:00 UTC (49 steps)'}>, <Figure size 1017.38x1100 with 2 Axes>)
Total running time of the script: (0 minutes 13.403 seconds)