forked from geoschem/gcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge docs/dev into the GCPy 1.4.0 development stream
This merge brings the latest documentation updates for version 1.4.0 into the dev branch. This is necessary so that we can test the gcpy.file_regrid.py with the latest Python environment. Further updates may be necessary in order to correct errors in documentation. We need to make sure that all examples are correct before release. Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
- Loading branch information
Showing
6 changed files
with
726 additions
and
495 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,54 +1,100 @@ | ||
.. |br| raw:: html | ||
|
||
<br/> | ||
|
||
.. _about: | ||
|
||
########## | ||
About GCPy | ||
########## | ||
|
||
**GCPy** is a Python-based toolkit containing useful functions for | ||
working specifically with the GEOS-Chem model of atmospheric chemistry | ||
and composition. | ||
:program:`GCPy` is a Python-based toolkit containing useful functions for | ||
working specifically with the :program:`GEOS-Chem` model of | ||
atmospheric chemistry and composition. | ||
|
||
GCPy aims to build on the well-established scientific Python technical | ||
stack, leveraging tools like cartopy and xarray to simplify the task of | ||
working with model output and performing atmospheric chemistry analyses. | ||
GCPy aims to build on the well-established scientific | ||
Python technical stack, leveraging tools like :program:`cartopy`, | ||
:program:`numpy`, and :program:`xarray` to simplify the task of | ||
working with GEOS-Chem model output and performing atmospheric | ||
chemistry analyses. | ||
|
||
.. _about-what-gcpy-does: | ||
|
||
============================ | ||
What GCPy was intended to do | ||
============================ | ||
|
||
#. Produce plots and tables from GEOS-Chem output using simple function | ||
#. Produce plots and tables from `GEOS-Chem | ||
<https://geos-chem.readthedocs.io>`_ output using simple function | ||
calls. | ||
#. Generate the standard evaluation plots and tables from GEOS-Chem | ||
benchmark output. | ||
#. Obtain GEOS-Chem's horizontal/vertical grid information. | ||
#. Implement GCHP-specific regridding functionalities (e.g. cubed-sphere | ||
to lat-lon regridding). | ||
benchmark simulations. | ||
#. Obtain GEOS-Chem's horizontal and vertical grid information. | ||
#. Implement `GCHP <https://gchp.readthedocs.io>`_-specific regridding | ||
functionalities (e.g. cubed-sphere to lat-lon regridding). | ||
#. Provide example scripts for creating specific types of plots or | ||
analysis from GEOS-Chem output. | ||
#. Provide user-submitted scripts for specific applications related to | ||
GEOS-Chem and `HEMCO <https://hemco.readthedocs.io>`_. | ||
|
||
.. _about-what-gcpy-doesnt-do: | ||
|
||
================================ | ||
What GCPY was not intended to do | ||
What GCPy was not intended to do | ||
================================ | ||
|
||
#. General NetCDF file modification: (crop a domain, extract some variables): | ||
|
||
- Use `xarray <http://xarray.pydata.org>`__ instead. | ||
- Also see `Work with netCDF data files | ||
- Instead, use netCDF tools such as: | ||
|
||
- `xarray <http://xarray.pydata.org>`_ | ||
- `netCDF Operators (NCO) <https://nco.sourceforge.net/>`_ | ||
- `Climate Data Operators (CDO) <https://mpimet.mpg.de/cdo>`_ | ||
|
||
- Also see our `Work with netCDF data | ||
<https://geos-chem.readthedocs.io/en/latest/geos-chem-shared-docs/supplemental-guides/netcdf-guide.html>`_ | ||
at the GEOS-Chem ReadTheDocs site. | ||
guide at `geos-chem.readthedocs.io | ||
<https://geos-chem.readthedocs.io>`_. | ||
|
||
#. Statistical analysis: | ||
|
||
- Use `scipy <http://www.scipy.org>`__ and `scikit-learn | ||
<https://scikit-learn.org>`__ tools instead. | ||
- Instead, use statistical tools such as: | ||
|
||
- `scipy <http://www.scipy.org>`_ | ||
- `scikit-learn <https://scikit-learn.org>`_ | ||
- `R <https://r-project.org>`_ | ||
- etc. | ||
|
||
#. Machine Learning: | ||
|
||
- Use the standard machine learning utilities | ||
(`pytorch <https://pytorch.org>`__, | ||
`tensorflow <https://www.tensorflow.org>`__, | ||
`julia <https://julialang.org>`__, etc.). | ||
- Instead, use machine learning tools such as: | ||
|
||
- `pytorch <https://pytorch.org>`_ | ||
- `tensorflow <https://www.tensorflow.org>`_ | ||
- `julia <https://julialang.org>`_ | ||
- etc. | ||
|
||
======= | ||
License | ||
======= | ||
|
||
GCPy is distributed under the `MIT license | ||
<https://opensource.org/license/mit/>`_. Please see the `GCPy license | ||
agreement <https://github.com/geoschem/gcpy/blob/dev/LICENSE.txt>`_ | ||
and `List of GCPy developers | ||
<https://github.com/geoschem/gcpy/blob/dev/AUTHORS.txt>`_ for more | ||
information. | ||
|
||
================== | ||
Requesting support | ||
================== | ||
|
||
To report a bug or suggest a new feature, please see our `Support | ||
Guidelines <https://github.com/geoschem/gcpy/blob/dev/SUPPORT.md>`_. | ||
|
||
======================= | ||
Submitting new features | ||
======================= | ||
|
||
If you are interested in submitting code to GCPy, please see our | ||
`Contributing Guidelines <https://github.com/geoschem/gcpy/blob/dev/CONTRIBUTING.md>`_. |
Oops, something went wrong.