atmospheric_fieldAppendLineLevelData
- Workspace.atmospheric_fieldAppendLineLevelData(self, atmospheric_field: pyarts3.arts.AtmField | None = None, absorption_bands: pyarts3.arts.AbsorptionBands | None = None, basename: pyarts3.arts.String | None = None, extrapolation: pyarts3.arts.String | None = None, missing_is_zero: pyarts3.arts.Index | None = None, replace_existing: pyarts3.arts.Index | None = None) None
Append NLTE data to the atmospheric field based on line data.
This will look at the valid
basenamefor files matching base data. The base data file names are of the form: “species-n QN1 N1 N1 QN2 N2 N2.xml” (e.g., “O2-66 J 1 1 N 0 0.xml”). Seeabsorption_speciesSet()for valid isotopologue names andQuantumLevelIdentifierfor constructing quantum numbers identifiers.See
InterpolationExtrapolationfor validextrapolation.The
missing_is_zerosets missing data to zero.The
replace_existingis used to determine if the data should be replaced if it already exists in the atmospheric field.Author: Richard Larsson
- Parameters:
atmospheric_field (AtmField, optional) – An atmospheric field in ARTS. See
atmospheric_field, defaults toself.atmospheric_field[INOUT]absorption_bands (AbsorptionBands, optional) – Bands of absorption lines for line-by-line (LBL) calculations. See
absorption_bands, defaults toself.absorption_bands[IN]basename (String) – The base name of the files. [IN]
extrapolation (String, optional) – The extrapolation to use. Defaults to
"Linear"[IN]missing_is_zero (Index, optional) – Whether or not to zero-out missing data. Defaults to
0[IN]replace_existing (Index, optional) – Whether or not to replace existing data. Defaults to
0[IN]