telsemStandalone

Workspace.telsemStandalone(self: pyarts.arts._Workspace, emissivities: pyarts.arts.WorkspaceVariable | pyarts.arts.Matrix, lat: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, lon: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, theta: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, f: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector, ta: pyarts.arts.WorkspaceVariable | pyarts.arts.TelsemAtlas, d_max: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric | None = -1, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None

Stand-alone evaluation of the Telsem model.

This evaluates the Telsem land surface emissivity model using the data from the provided atlas.

Since TELSEM atlases do not contain data for all locations this function allows for nearest neighbor interpolation, which can be enabled by setting the d_max GIN to a positive value.

This WSM throws a runtime error if the queried location is not contained in the atlas or the distance of the neighboring cell exceeds the given d_max value.

Author(s): Simon Pfreundschuh

Parameters:
  • emissivities (Matrix) – The computed h and v emissivites. [OUT]

  • lat (Numeric) – The latitude for which to compute the emissivities. [IN]

  • lon (Numeric) – The latitude for which to compute the emissivities. [IN]

  • theta (Numeric) – The incidence angle. [IN]

  • f (Vector) – The frequencies for which to compute the emissivities. [IN]

  • ta (TelsemAtlas) – The Telsem atlas to use. [IN]

  • d_max (Numeric, optional) – The maximum allowed distance for nearest neighbor interpolation in meters. Defaults to -1 [IN]

  • verbosity (Verbosity) – ARTS verbosity. See verbosity, defaults to self.verbosity [IN]