AtmData

class pyarts.arts.AtmData(*args, **kwargs)

Atmospheric data

Overview

Method

at()

Get a point of data at the position

Method

ws()

Get the weights of neighbors at a position

Attribute

alt_low

Lower altitude limit

Attribute

alt_upp

Upper altitude limit

Attribute

data

The data

Attribute

data_type

The data type

Attribute

lat_low

Lower latitude limit

Attribute

lat_upp

Upper latitude limit

Attribute

lon_low

Lower longitude limit

Attribute

lon_upp

Upper longitude limit

Operator

__call__()

Get a point of data at the position

Operator

__eq__()

Return self==value.

Operator

__ge__()

Return self>=value.

Operator

__gt__()

Return self>value.

Operator

__hash__()

Return hash(self).

Operator

__le__()

Return self<=value.

Operator

__lt__()

Return self<value.

Operator

__ne__()

Return self!=value.

Constructors

__init__(self, arg: pyarts.arts.AtmData) None
__init__(self, arg: pyarts.arts.GriddedField3, /) None
__init__(self, arg: float, /) None
__init__(self, arg: pyarts.arts.NumericTernaryOperator, /) None

Methods

at(self, alt: float, lat: float, lon: float) float

Get a point of data at the position

ws(self, alt: float, lat: float, lon: float) list[tuple[int, float]]

Get the weights of neighbors at a position

Attributes

alt_low

Lower altitude limit

alt_upp

Upper altitude limit

data

The data

data_type

The data type

lat_low

Lower latitude limit

lat_upp

Upper latitude limit

lon_low

Lower longitude limit

lon_upp

Upper longitude limit

Operators

__call__(self, alt: float, lat: float, lon: float) float

Get a point of data at the position

__eq__(value, /)

Return self==value.

__ge__(value, /)

Return self>=value.

__gt__(value, /)

Return self>value.

__hash__()

Return hash(self).

__le__(value, /)

Return self<=value.

__lt__(value, /)

Return self<value.

__ne__(value, /)

Return self!=value.