gerg_plotting.data_classes.bounds#

Module Contents#

class gerg_plotting.data_classes.bounds.Bounds#

Represents geographic and depth bounds for a spatial dataset.

Attributes#

lat_minfloat | int | None

Minimum latitude of the bounds. Must be smaller than lat_max.

lat_maxfloat | int | None

Maximum latitude of the bounds.

lon_minfloat | int | None

Minimum longitude of the bounds. Must be smaller than lon_max.

lon_maxfloat | int | None

Maximum longitude of the bounds.

depth_bottomfloat | int | None

Maximum depth value (positive, in meters). Represents the bottom of the range.

depth_topfloat | int | None

Minimum depth value (positive, in meters). Represents the top of the range (e.g., surface).

vertical_scalarfloat | int | None

A scaling factor applied to depth values. Default is 1.

vertical_unitsstr | None

Units for the vertical depth values. Default is “m”.

depth_bottom: float | int | None#
depth_top: float | int | None#
lat_max: float | int | None#
lat_min: float | int | None#
lon_max: float | int | None#
lon_min: float | int | None#
vertical_scalar: float | int | None#
vertical_units: str | None#