-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #386 from olemke/remove-arts
Remove arts module
- Loading branch information
Showing
66 changed files
with
10 additions
and
11,245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,149 +1,7 @@ | ||
arts | ||
==== | ||
|
||
.. automodule:: typhon.arts | ||
|
||
.. currentmodule:: typhon.arts | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
run_arts | ||
|
||
arts.catalogues | ||
=============== | ||
|
||
.. automodule:: typhon.arts.catalogues | ||
|
||
.. currentmodule:: typhon.arts.catalogues | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
ArrayOfLineRecord | ||
CIARecord | ||
GasAbsLookup | ||
LineMixingRecord | ||
QuantumIdentifier | ||
QuantumNumberRecord | ||
QuantumNumbers | ||
Sparse | ||
SpeciesAuxData | ||
SpeciesTag | ||
|
||
arts.covariancematrix | ||
===================== | ||
|
||
.. automodule:: typhon.arts.covariancematrix | ||
|
||
.. currentmodule:: typhon.arts.covariancematrix | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
Block | ||
CovarianceMatrix | ||
plot_covariance_matrix | ||
|
||
arts.griddedfield | ||
================= | ||
.. automodule:: typhon.arts.griddedfield | ||
|
||
.. currentmodule:: typhon.arts.griddedfield | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
GriddedField1 | ||
GriddedField2 | ||
GriddedField3 | ||
GriddedField4 | ||
GriddedField5 | ||
GriddedField6 | ||
griddedfield_from_netcdf | ||
griddedfield_from_xarray | ||
|
||
arts.internals | ||
=============== | ||
|
||
.. automodule:: typhon.arts.internals | ||
|
||
.. currentmodule:: typhon.arts.internals | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
LineMixing | ||
ARTSCAT5 | ||
Rational | ||
PartitionFunctions | ||
PressureBroadening | ||
|
||
arts.retrieval | ||
============== | ||
|
||
.. automodule:: typhon.arts.retrieval | ||
|
||
.. currentmodule:: typhon.arts.retrieval | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
RetrievalQuantity | ||
|
||
arts.scattering | ||
=============== | ||
|
||
.. automodule:: typhon.arts.scattering | ||
|
||
.. currentmodule:: typhon.arts.scattering | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
SingleScatteringData | ||
SpectralSingleScatteringData | ||
ScatteringMetaData | ||
|
||
arts.sensor | ||
=========== | ||
|
||
.. automodule:: typhon.arts.sensor | ||
|
||
.. currentmodule:: typhon.arts.sensor | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
get_f_backend_rel_width | ||
get_f_backend_const_width | ||
|
||
|
||
arts.xml | ||
======== | ||
|
||
.. automodule:: typhon.arts.xml | ||
|
||
.. currentmodule:: typhon.arts.xml | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
load | ||
load_directory | ||
load_indexed | ||
save | ||
make_binary | ||
make_directory_binary | ||
|
||
arts.xsec | ||
========= | ||
|
||
.. automodule:: typhon.arts.xsec | ||
|
||
.. currentmodule:: typhon.arts.xsec | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
XsecRecord | ||
The arts module has moved. Its functionality has been migrated to the PyARTS | ||
package which is available as part of the | ||
`ARTS distribution <https://www.radiativetransfer.org/getarts/>`_. | ||
On Linux, it can be installed with :code:`pip install pyarts`. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""This module contains functions to interact with ARTS. | ||
""" | ||
|
||
from typhon.arts import sensor # noqa | ||
from typhon.arts import xml # noqa | ||
from typhon.arts.common import * # noqa | ||
|
||
__all__ = [s for s in dir() if not s.startswith('_')] | ||
raise ModuleNotFoundError( | ||
"The ARTS submodule has been migrated to PyARTS in Typhon version >0.8.0\n" | ||
"Either install Typhon version 0.8.0 or switch to the PyARTS package") |
Oops, something went wrong.