Data Classes#

class ctdfjorder.dataclasses.dataclasses.Metadata(latitude: float | None, longitude: float | None, unique_id: str | None, secchi_depth: float | None, site_name: str | None, site_id: str | None)[source]#

Represents metadata for a research site, including its coordinates, unique ID, and secchi depth.

latitude#

The latitude of the site, if available.

Type:

float | None

longitude#

The longitude of the site, if available.

Type:

float | None

unique_id#

The unique identifier for the site, if available.

Type:

str | None

secchi_depth#

The secchi depth measurement for the site, if available.

Type:

float | None

site_name#

The name of the site, if available.

Type:

str | None

site_id#

The short name the site, if available.

Type:

str | None