Metadata-Version: 2.1
Name: geomagindices
Version: 1.2.6
Summary: Download and parse geomagnetic indices
Home-page: https://github.com/space-physics/geomagindices
Author: Michael Hirsch, Ph.D.
Author-email: scivision@users.noreply.github.com
License: UNKNOWN
Description: [![DOI](https://zenodo.org/badge/173524807.svg)](https://zenodo.org/badge/latestdoi/173524807)
        
        [![Actions Status](https://github.com/space-physics/geomagindices/workflows/ci_python/badge.svg)](https://github.com/space-physics/geomagindices/actions)
        
        [![PyPi version](https://img.shields.io/pypi/pyversions/geomagindices.svg)](https://pypi.python.org/pypi/geomagindices)
        [![PyPi Download stats](http://pepy.tech/badge/geomagindices)](http://pepy.tech/project/geomagindices)
        
        
        # Geomagnetic Indices
        Geomagnetic indices downloader and parser, returns Ap, F10.7 (unsmoothed and smoothed) and Kp.
        Let us know via GitHub Issue if something is missing.
        
        Output datatype is [pandas.DataFrame](http://pandas.pydata.org/pandas-docs/stable/reference/frame.html) (for multiple times)
        
        internally, uses
        [pandas.Index.get_loc](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Index.get_loc.html)
        to find nearest time to request.
        
        ## Examples
        
        use from other programs like
        
        ```python
        import geomagindices as gi
        
        inds = gi.get_indices(date)
        ```
        
        where date is Python
        [datetime.date, datetime.datetime](https://docs.python.org/3/library/datetime.html), etc.
        
        ---
        
        ```sh
        python PlotIndices.py 2015-01-01 2016-01-01
        ```
        
        ![2015 Ap F10.7](./tests/2015.png)
        
        
        ## Notes
        
        We should add readers for the new post-SWPC data sources, from 2018 onward as noted at:
        https://www.celestrak.com/SpaceData/SpaceWx-format.php
        
        * [Kp, Ap](ftp://ftp.gfz-potsdam.de/pub/home/obs/kp-ap/wdc/)
        * [f10.7](ftp://ftp.geolab.nrcan.gc.ca/data/solar_flux/daily_flux_values/fluxtable.txt)
        
        Let us know via GitHub Issue if you want this new data.
Keywords: aeronomy,aurora,ionosphere
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: lint
Provides-Extra: plot
