Metadata-Version: 2.1
Name: pyrfu
Version: 2.3.2
Summary: Python Space Physics Environment Data Analysis
Home-page: https://github.com/louis-richard/irfu-python
Author: Louis RICHARD
Author-email: louir@irfu.se
License: MIT License
Project-URL: Documentation, https://pyrfu.readthedocs.io/en/latest/
Project-URL: Release notes, https://pypi.org/project/pyrfu/#history
Project-URL: Source, https://github.com/louis-richard/irfu-python
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.7, <3.9
Requires-Dist: astropy
Requires-Dist: cycler
Requires-Dist: cdflib
Requires-Dist: cython
Requires-Dist: ipykernel
Requires-Dist: ipython
Requires-Dist: matplotlib
Requires-Dist: nbsphinx
Requires-Dist: numpy
Requires-Dist: numba
Requires-Dist: pandas
Requires-Dist: pvlib
Requires-Dist: pyfftw
Requires-Dist: python-dateutil
Requires-Dist: scipy
Requires-Dist: seaborn
Requires-Dist: sfs
Requires-Dist: sphinx (>=1.4)
Requires-Dist: sphinxcontrib-apidoc
Requires-Dist: sphinx-rtd-theme
Requires-Dist: tqdm
Requires-Dist: xarray



.. |License| image:: https://img.shields.io/pypi/l/pyrfu
.. _License: https://opensource.org/licenses/MIT

.. |Python| image:: https://img.shields.io/pypi/pyversions/pyrfu.svg?logo=python
.. _Python: https://pypi.org/project/pyrfu/

.. |PyPi| image:: https://img.shields.io/pypi/v/pyrfu.svg?logo=pypi
.. _PyPi: https://pypi.org/project/pyrfu/

.. |Format| image:: https://img.shields.io/pypi/format/pyrfu?color=blue&logo=pypi
.. _Format: https://pypi.org/project/pyrfu/

.. |Wheel| image:: https://img.shields.io/pypi/wheel/pyrfu?logo=pypi&color=blue
.. _Wheel: https://pypi.org/project/pyrfu/

.. |Status| image:: https://img.shields.io/pypi/status/pyrfu?logo=pypi&color=blue
.. _Status: https://pypi.org/project/pyrfu/

.. |Downloads| image:: https://img.shields.io/pypi/dm/pyrfu?logo=pypi&color=blue
.. _Downloads: https://pypi.org/project/pyrfu/

.. |ScrutinizerBuild| image:: https://img.shields.io/scrutinizer/build/g/louis-richard/irfu-python?logo=scrutinizer-ci
.. _ScrutinizerBuild: https://scrutinizer-ci.com/g/louis-richard/irfu-python/

.. |ScrutinizerQuality| image:: https://img.shields.io/scrutinizer/quality/g/louis-richard/irfu-python?logo=scrutinizer-ci
.. _ScrutinizerQuality: https://scrutinizer-ci.com/g/louis-richard/irfu-python/

.. |Issues| image:: https://img.shields.io/github/issues/louis-richard/irfu-python?logo=github&color=9cf
.. _Issues: https://github.com/louis-richard/irfu-python/issues

.. |Commits| image:: https://img.shields.io/github/last-commit/louis-richard/irfu-python?logo=github&color=9cf
.. _Commits: https://github.com/louis-richard/irfu-python/commits/master

.. |Readthedocs| image:: https://img.shields.io/readthedocs/pyrfu?logo=read-the-docs&color=blueviolet
.. _Readthedocs: https://pyrfu.readthedocs.io/en/latest/

.. |Gitter| image:: https://img.shields.io/gitter/room/louis-richard/pyrfu?logo=gitter&color=orange
.. _Gitter: https://gitter.im/pyrfu


pyRFU
=====

|License|_ |Python|_ |PyPi|_ |Format|_ |Wheel|_ |Status|_ |Downloads|_ |ScrutinizerBuild|_
|ScrutinizerQuality|_ |Commits|_ |Issues|_ |Readthedocs|_ |Gitter|_

The Python package ``pyrfu`` is a software based on the IRFU-MATLAB library to work with space data, particularly the
Magnetospheric MultiScale (MMS) mission.

It is distributed under the open-source MIT license.

Full documentation can be found `here <https://pyrfu.readthedocs.io>`_

.. end-marker-intro-do-not-remove


Instalation
-----------
.. start-marker-install-do-not-remove

The package ``pyrfu`` has been tested only for Mac OS. ``pyrfu`` requires `FFTW3 <http://fftw.org>`_
. Install FFTW3
using `homebrew <https://brew.sh>`_ and set temporary environmental variables, such that ``pyrfu``
finds fftw:

.. code-block:: bash

    brew install fftw
    export DYLD_LIBRARY_PATH=/usr/local/lib
    export LDFLAGS="-L/usr/local/lib"
    export CFLAGS="-I/usr/local/include"

Using PyPi
**********

``pyrfu`` is available for pip.

.. code-block:: bash

        pip install pyrfu


From sources
************

The sources are located on **GitHub**:

    https://github.com/louis-richard/irfu-python

1) Clone the GitHub repo:

Open a terminal and write the below command to clone in your PC the ``pyrfu`` repo:

.. code-block:: bash

    git clone https://github.com/louis-richard/irfu-python.git
    cd pyrfu


2) Create a virtual env

pyrfu needs a significant number of dependencies. The easiest
way to get everything installed is to use a virtual environment.

-  Anaconda

You can create a virtual environment and install all the dependencies using conda_
with the following commands:

.. code-block:: bash

    pip install conda
    conda create -n pyrfu
    source activate pyrfu

.. _conda: http://conda.io/


- Virtual Env

Virtualenv_ can also be used:

.. code-block:: bash

    pip install virtualenv
    virtualenv pyrfu
    source pyrfu/bin/activate

.. _virtualenv: https://virtualenv.pypa.io/en/latest/#


3) Install the package via the commands:

.. code-block:: bash

        python setup.py install


5) (Optional) Generate the docs: install the extra dependencies of doc and run
the `setup.py` file:

.. code-block:: bash

        pip install pyrfu
        python setup.py build_sphinx

Once installed, the doc can be generated with:

.. code-block:: bash

        cd doc
        make html


Dependencies
************

The required dependencies are:

- `astropy <https://www.astropy.org/>`_ >=4.0.0
- `cycler <https://matplotlib.org/cycler/>`_ >=0.10.0
- `cdflib <https://cdflib.readthedocs.io/en/latest/?badge=latest>`_ >=0.3.20
- `cython <https://cython.org>`_ >=0.29.21
- `matplotlib <https://matplotlib.org>`_ >=3.2.1
- `numba <http://numba.pydata.org>`_ >=0.52.0
- `numpy <https://www.numpy.org>`_ >=1.18.1
- `Pillow <https://python-pillow.org>`_ >=7.1.0
- `pandas <https://pandas.pydata.org/>`_ >=1.0.3
- `pyfftw <https://pyfftw.readthedocs.io/en/latest/>`_ >=0.12.0
- `python-dateutil <https://dateutil.readthedocs.io/en/stable/>`_ >=2.8.1
- `requests <https://requests.readthedocs.io/en/latest/>`_ >=2.23.0
- `Sphinx <https://www.sphinx-doc.org/en/master/>`_ >=3.0.3
- `scipy <https://scipy.org>`_ >=1.4.1
- `seaborn <https://seaborn.pydata.org>`_ >=0.10.1
- `setuptools <https://packaging.python.org/tutorials/installing-packages/>`_ >=47.3.1
- `sfs <https://sfs-python.readthedocs.io>`_ >=0.5.0
- `tqdm <https://pypi.org/project/tqdm/#documentation>`_ >=4.46.0
- `xarray <https://xarray.pydata.org/en/stable/>`_ >=0.15.0



Testing dependencies are:

- `pytest <https://docs.pytest.org/en/latest/>`_ >= 2.8

Extra testing dependencies:

- `coverage <https://coverage.readthedocs.io>`_ >= 4.4
- `pylint <https://www.pylint.org>`_ >= 1.6.0

.. end-marker-install-do-not-remove

Usage
-----
To import generic space plasma physics functions

.. code:: python

    from pyrfu import pyrf


To import functions specific to MMS mission

.. code:: python

    from pyrfu import mms


To import plotting functions

.. code:: python

    from pyrfu import plot as pltrf

Configuration
-------------
Configuration settings are set in the CONFIG hash table in the mms_config.py file.

Credits
-------
This software was developped by Louis RICHARD (louisr@irfu.se) based on the IRFU-MATLAB library.

Acknowledgement
---------------
Please use the following to acknowledge use of pyrfu in your publications:
Data analysis was performed using the pyrfu analysis package available at https://github.com/louis-richard/irfu-python

Additional Information
----------------------
MMS Science Data Center: https://lasp.colorado.edu/mms/sdc/public/

MMS Datasets: https://lasp.colorado.edu/mms/sdc/public/datasets/

MMS - Goddard Space Flight Center: http://mms.gsfc.nasa.gov/


