Last updated on Sep 04, 2024.

netsse.base.SeaStateCollec#

class netsse.base.SeaStateCollec(id: str = None, area: str = 'undefined', nature: str = 'undefined', origin='undefined', datetime_start=datetime.now(), datetime_end=datetime.now(), lat_min: float = 0, lat_max: float = 0, lon_min: float = 0, lon_max: float = 0, seastates: list = [])#

Initialises the sea state collection.

Parameters:
  • id (str, optional) – Data collection identifier. By default, the id string is generated randomly in the format CollecXXXXX.

  • seastates (list, default []) –

    List of sea states (as SeaState instances) gathered in the data collection.

    Note

    Consult netsse.base.Collection.__init__() for information on the other parameters.

See also

Collection, Platform, SeaState

Example

>>> seastatecollec1 = netsse.base.SeaStateCollec()