Atmospheric spectroscopy#

dace_query.atmosphericSpectroscopy.atmosphericSpectroscopy.AtmosphericSpectroscopy: AtmosphericSpectroscopyClass = <dace_query.atmosphericSpectroscopy.atmosphericSpectroscopy.AtmosphericSpectroscopyClass object>#

This is a singleton instance of the AtmosphericSpectroscopyClass class.

To use it, simply import it :

from dace_query.atmosphericSpectroscopy import AtmosphericSpectroscopy
class dace_query.atmosphericSpectroscopy.atmosphericSpectroscopy.AtmosphericSpectroscopyClass(dace_instance=None)#

Bases: object

The atmospheric spectroscopy class. Use to retrieve data from the atmospheric spectroscopy module.

Tip

A catalog instance is already provided, to use it:

from dace_query.atmosphericSpectroscopy import AtmosphericSpectroscopy
query_database(limit=10000, filters=None, sort=None, output_format=None)#

Query the atmospheric spectroscopy database to retrieve data in the chosen format.

Filters and sorting order can be applied to the query via named arguments (see Filtering and sorting).

All available formats are defined in this section (see Output formats).

Parameters:
  • limit (Optional[int]) – Maximum number of rows to return

  • filters (dict) – Filters to apply to the query

  • sort (Optional[dict]) – Sort order to apply to the query

  • output_format (Optional[str]) – Type of data returns

Returns:

The desired data in the chosen output format

Return type:

dict[str, ndarray] or DataFrame or Table or dict

Getting the full atmospheric spectroscopy database
from dace_query.atmosphericSpectroscopy import AtmosphericSpectroscopy
values =  AtmosphericSpectroscopy.query_database()