cloudboxSetManuallyAltitude
- Workspace.cloudboxSetManuallyAltitude(self: pyarts.arts._Workspace, cloudbox_on: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.cloudbox_on, cloudbox_limits: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.ArrayOfIndex]] = self.cloudbox_limits, atmosphere_dim: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.atmosphere_dim, z_field: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Tensor3]] = self.z_field, lat_grid: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Vector]] = self.lat_grid, lon_grid: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Vector]] = self.lon_grid, z1: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], z2: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], lat1: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], lat2: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], lon1: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], lon2: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], verbosity: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Verbosity]] = self.verbosity) None
Sets the cloud box to encompass the given positions.
As
cloudboxSetManually()
but uses altitudes instead of pressure. The given altitude points can be outside the range ofz_field
. The altitude limit is then set to the end point ofp_grid
.Author(s): Claudia Emde
- Parameters:
cloudbox_on (Index, optional) – Flag to activate the cloud box. See
cloudbox_on
, defaults toself.cloudbox_on
[OUT]cloudbox_limits (ArrayOfIndex, optional) – The limits of the cloud box. See
cloudbox_limits
, defaults toself.cloudbox_limits
[OUT]atmosphere_dim (Index, optional) – The atmospheric dimensionality (1-3). See
atmosphere_dim
, defaults toself.atmosphere_dim
[IN]z_field (Tensor3, optional) – The field of geometrical altitudes. See
z_field
, defaults toself.z_field
[IN]lat_grid (Vector, optional) – The latitude grid. See
lat_grid
, defaults toself.lat_grid
[IN]lon_grid (Vector, optional) – The longitude grid. See
lon_grid
, defaults toself.lon_grid
[IN]z1 (Numeric) – Lower altitude point. [IN]
z2 (Numeric) – Upper altitude point. [IN]
lat1 (Numeric) – Lower latitude point. [IN]
lat2 (Numeric) – Upper latitude point. [IN]
lon1 (Numeric) – Lower longitude point. [IN]
lon2 (Numeric) – Upper longitude point. [IN]
verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]