SurfaceKey
- class pyarts.arts.SurfaceKey(*args, **kwargs)
Group name: “SurfaceKey”
A key to identify a surface property.
Valid options:
"h"
: Altitude [m]"t"
: Temperature [K]"wind_u"
: Wind field U-component [m/s]"wind_v"
: Wind field V-component [m/s]"wind_w"
: Wind field W-component [m/s]
Overview
Method
Read variable from file
Method
Saves variable to file
Static Method
Create variable from file
Static Method
Get a list of all options
Static Method
Get a list of all options as strings
Static Data
pyarts.arts.SurfaceKey.h
“h” -
SurfaceKey
Static Data
pyarts.arts.SurfaceKey.t
“t” -
SurfaceKey
Static Data
pyarts.arts.SurfaceKey.wind_u
“wind_u” -
SurfaceKey
Static Data
pyarts.arts.SurfaceKey.wind_v
“wind_v” -
SurfaceKey
Static Data
pyarts.arts.SurfaceKey.wind_w
“wind_w” -
SurfaceKey
Operator
self == other
Operator
self >= other
Operator
self > other
Operator
Allows hashing
Operator
self <= other
Operator
self < other
Operator
self != other
Constructors
- __init__(self) None
- __init__(self, arg: pyarts.arts.SurfaceKey) None
- __init__(self, arg: str, /) None
Methods
- readxml(self, file: str) None
Read variable from file
- Parameters:
file (str) – A file that can be read
- On Error:
Throws RuntimeError for any failure to read
- savexml(self, file: str, type: str = 'ascii', clobber: bool = True) None
Saves variable to file
- Parameters:
- On Error:
Throws RuntimeError for any failure to save
Static Methods
- fromxml(file: str) pyarts.arts.SurfaceKey
Create variable from file
- Parameters:
file (str) – A file that can be read
- On Error:
Throws RuntimeError for any failure to read
- get_options() list[pyarts.arts.SurfaceKey]
Get a list of all options
Operators
- __eq__(self, arg: pyarts.arts.SurfaceKey, /) bool
self == other
- __ge__(self, arg: pyarts.arts.SurfaceKey, /) bool
self >= other
- __gt__(self, arg: pyarts.arts.SurfaceKey, /) bool
self > other
- __le__(self, arg: pyarts.arts.SurfaceKey, /) bool
self <= other
- __lt__(self, arg: pyarts.arts.SurfaceKey, /) bool
self < other
- __ne__(self, arg: pyarts.arts.SurfaceKey, /) bool
self != other