atm_fieldAppendLineSpeciesData
- Workspace.atm_fieldAppendLineSpeciesData(self, atm_field: AtmField = self.atm_field, abs_bands: AbsorptionBands = self.abs_bands, basename: String, extrapolation: String = Linear, missing_is_zero: Index = 0, replace_existing: Index = 0) None
Append species 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 short-name form: “species.xml” (e.g., “H2O.xml”). SeeSpeciesEnumfor valid short names.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:
atm_field (~pyarts3.arts.AtmField, optional) – An atmospheric field in ARTS, this is the main atmospheric data structure in ARTS. Defaults to
self.atm_field. [INOUT]abs_bands (~pyarts3.arts.AbsorptionBands, optional) – Bands of absorption lines for line-by-line (LBL) calculations. Defaults to
self.abs_bands. [IN]basename (String) – The base name of the files. [IN]
extrapolation (~pyarts3.arts.String, optional) – The extrapolation to use. Defaults to
"Linear"[IN]missing_is_zero (~pyarts3.arts.Index, optional) – Whether or not to zero-out missing data. Defaults to
0[IN]replace_existing (~pyarts3.arts.Index, optional) – Whether or not to replace existing data. Defaults to
0[IN]