Metadata-Version: 2.1
Name: enlilviz
Version: 0.1.0
Summary: A Python package for visualizing output from the Enlil code.
Home-page: https://github.com/SWxTREC/enlilviz
Author: Greg Lucas
Author-email: greg.lucas@lasp.colorado.edu
License: MIT license
Keywords: enlilviz,Enlil,ENLIL
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: xarray

========
enlilviz
========


.. image:: https://img.shields.io/pypi/v/enlilviz.svg
        :target: https://pypi.python.org/pypi/enlilviz

.. image:: https://img.shields.io/travis/SWxTREC/enlilviz.svg
        :target: https://travis-ci.org/SWxTREC/enlilviz

.. image:: https://readthedocs.org/projects/enlilviz/badge/?version=latest
        :target: https://enlilviz.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




A Python package for visualizing the output from the Enlil solar wind code.

* Documentation: https://enlilviz.readthedocs.io.


Features
--------

Read in Enlil data files into an xarray dataset for analysis::

  import enlilviz as ev

  run = ev.read_enlil2d('wsa_enlil.latest.suball.nc')

  evo = ev.read_evo('evo.earth.nc')

Plot time series and slices with the data::

  import enlilviz.plotting as evplot

  evplot.TimeSeries(run, 'Earth', 'den')

  evplot.LongitudeSlice(run, 'den')

  evplot.LatitudeSlice(run, 'vel')

You can also generate common figures that are pre-arranged::

  forecaster = evplot.ForecasterPlot(run)
  forecaster.save()

Or iterate through the entire time series to make a movie::

  for plot in iter(forecaster):
      plot.save()


=======
History
=======

0.0.1 (2020-02-17)
------------------

* First release on PyPI.


