atmospheric_profileFromGrid
- Workspace.atmospheric_profileFromGrid(self, atmospheric_profile: pyarts.arts.ArrayOfAtmPoint | None = None, altitude_grid: pyarts.arts.AscendingGrid | None = None, latitude: pyarts.arts.Numeric | None = None, longitude: pyarts.arts.Numeric | None = None, atmospheric_field: pyarts.arts.AtmField | None = None, key: pyarts.arts.AtmKey | None = None) None
Extract an atmospheric profile and its grids.
The key is used to find a
GriddedField3
in the atmospheric field. Its grids must form a profile. The profile is extracted and returned. The grids are returned as well.Author(s): Richard Larsson
- Parameters:
atmospheric_profile (ArrayOfAtmPoint, optional) – An atmospheric point in ARTS. See
atmospheric_profile
, defaults toself.atmospheric_profile
[OUT]altitude_grid (AscendingGrid, optional) – An ascending list of
altitude
. Often related to a field or a profile. Seealtitude_grid
, defaults toself.altitude_grid
[OUT]latitude (Numeric, optional) – A single latitude. See
latitude
, defaults toself.latitude
[OUT]longitude (Numeric, optional) – A single longitude. See
longitude
, defaults toself.longitude
[OUT]atmospheric_field (AtmField, optional) – An atmospheric field in ARTS. See
atmospheric_field
, defaults toself.atmospheric_field
[IN]key (AtmKey, optional) – Key to find the
GriddedField3
in the atmospheric field. Defaults tot
[IN]