netsse.base.SeaStateCollec ========================== .. py: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. :param id: Data collection identifier. By default, the `id` string is generated randomly in the format ``CollecXXXXX``. :type id: str, optional :param seastates: List of sea states (as `SeaState` instances) gathered in the data collection. .. note:: Consult :func:`netsse.base.Collection.__init__` for information on the other parameters. :type seastates: list, default [] .. seealso:: :py:obj:`Collection`, :py:obj:`Platform`, :py:obj:`SeaState` .. rubric:: Example >>> seastatecollec1 = netsse.base.SeaStateCollec()