XsecRecord

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

A single cross-section record

Overview

Method

compute_abs()

Computes the Hitran cross-section absorption in 1/m

Method

readxml()

Read variable from file

Method

savexml()

Saves variable to file

Method

to_dict()

Convert object to dict.

Method

to_netcdf()

Save XsecRecord to NetCDF file.

Method

to_xarray()

Convert XsecRecord to xarray.DataArray().

Static Method

from_dict()

Create object from dict.

Static Method

from_netcdf()

Create an XsecRecord from a NetCDF file.

Static Method

from_xarray()

Create XsecRecord from xarray.DataArray().

Static Method

fromxml()

Create variable from file

Attribute

fitcoeffs

ArrayOfGriddedField2 Fit coefficients

Attribute

fitmaxpressures

ArrayOfGriddedField2 Fit coefficients

Attribute

fitmaxtemperatures

ArrayOfGriddedField2 Fit coefficients

Attribute

fitminpressures

ArrayOfGriddedField2 Fit coefficients

Attribute

fitmintemperatures

ArrayOfGriddedField2 Fit coefficients

Attribute

species

Species The species

Static Data

pyarts.arts.XsecRecord.version

2 - int

Operator

__eq__()

Allows 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) None
__init__(self, arg: pyarts.arts.XsecRecord) None

Methods

compute_abs(self, T: float, P: float, VMR: float, f: pyarts.arts.Vector) pyarts.arts.Vector

Computes the Hitran cross-section absorption in 1/m

Parameters:
  • T (Numeric) – Temperature [K]

  • P (Numeric) – Pressure [Pa]

  • VMR (Numeric) – VMR of species [-]

  • f (Vector) – Frequency grid [Hz]

Returns:

abs – Absorption profile [1/m]

Return type:

Vector

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:
  • file (str) – The path to which the file is written. Note that several of the options might modify the name or write more files

  • type (str) – Type of file to save (ascii. zascii, or binary)

  • clobber (bool) – Overwrite existing files or add new file with modified name?

On Error:

Throws RuntimeError for any failure to save

to_dict(self) dict

Convert object to dict.

to_netcdf(self, arg: object, /) object

Save XsecRecord to NetCDF file.

to_xarray(self) object

Convert XsecRecord to xarray.DataArray().

Static Methods

from_dict(arg: dict, /) pyarts.arts.XsecRecord

Create object from dict.

from_netcdf(arg: object, /) object

Create an XsecRecord from a NetCDF file.

from_xarray(arg: object, /) object

Create XsecRecord from xarray.DataArray().

fromxml(file: str) pyarts.arts.XsecRecord

Create variable from file

Parameters:

file (str) – A file that can be read

On Error:

Throws RuntimeError for any failure to read

Attributes

fitcoeffs

ArrayOfGriddedField2 Fit coefficients

fitmaxpressures

ArrayOfGriddedField2 Fit coefficients

fitmaxtemperatures

ArrayOfGriddedField2 Fit coefficients

fitminpressures

ArrayOfGriddedField2 Fit coefficients

fitmintemperatures

ArrayOfGriddedField2 Fit coefficients

species

Species The species

Operators

__eq__(self, value: pyarts.arts.XsecRecord) bool

Allows 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.