netsse.base.Collection ====================== .. py:class:: netsse.base.Collection(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) Initialises the data collection. :param area: Area of data collection. :type area: str, default 'undefined' :param nature: Nature of the data collection. :type nature: str, default 'undefined' :param origin: Origin or source of the data collection. :type origin: str or object, default 'undefined' :param datetime_start: Time coverage of the data collection. :type datetime_start: datetime object, default datetime.now() :param datetime_end: Time coverage of the data collection. :type datetime_end: datetime object, default datetime.now() :param lat_min: Latitude [deg North] at the southern/northern edge of the geographical domain covered by the data collection. :type lat_min: float, default 0 :param lat_max: Latitude [deg North] at the southern/northern edge of the geographical domain covered by the data collection. :type lat_max: float, default 0 :param lon_min: Longitude [deg East] at the western/eastern edge of the geographical domain covered by the data collection. :type lon_min: float, default 0 :param lon_max: Longitude [deg East] at the western/eastern edge of the geographical domain covered by the data collection. :type lon_max: float, default 0 .. seealso:: :py:obj:`Operation`, :py:obj:`SeaStateCollec` .. rubric:: Example >>> collec1 = netsse.base.Collection()