Last updated on Sep 04, 2024.

netsse.base.Collection#

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.

Parameters:
  • area (str, default 'undefined') – Area of data collection.

  • nature (str, default 'undefined') – Nature of the data collection.

  • origin (str or object, default 'undefined') – Origin or source of the data collection.

  • datetime_start (datetime object, default datetime.now()) – Time coverage of the data collection.

  • datetime_end (datetime object, default datetime.now()) – Time coverage of the data collection.

  • lat_min (float, default 0) – Latitude [deg North] at the southern/northern edge of the geographical domain covered by the data collection.

  • lat_max (float, default 0) – Latitude [deg North] at the southern/northern edge of the geographical domain covered by the data collection.

  • lon_min (float, default 0) – Longitude [deg East] at the western/eastern edge of the geographical domain covered by the data collection.

  • lon_max (float, default 0) – Longitude [deg East] at the western/eastern edge of the geographical domain covered by the data collection.

See also

Operation, SeaStateCollec

Example

>>> collec1 = netsse.base.Collection()