Metadata-Version: 2.1
Name: wmm2015
Version: 1.0.2
Summary: WMM2015 geomagnetic model with simple object-oriented Python interface
Home-page: https://github.com/space-physics/wmm2015
Author: Michael Hirsch, Ph.D.
License: UNKNOWN
Description: [![Actions Status](https://github.com/space-physics/wmm2015/workflows/ci_python/badge.svg)](https://github.com/space-physics/wmm2015/actions)
        
        
        [![Python versions (PyPI)](https://img.shields.io/pypi/pyversions/wmm2015.svg)](https://pypi.python.org/pypi/wmm2015)
        [![Downloads](http://pepy.tech/badge/wmm2015)](http://pepy.tech/project/wmm2015)
        
        
        # WMM2015
        
        WMM2015 World Magnetic Model...in simple, object-oriented Python.
        Tested on Linux, Mac and Windows.
        Most C compilers work, including GCC, PGI and Intel compilers.
        At this time Visual Studio is not supported since MSVC doesn't export function symbols without additional headers,
        which is typically done with something like SWIG.
        
        ![image](tests/incldecl.png)
        
        ## Install
        
        for the latest release from PyPi:
        
        ```sh
        python -m pip install wmm2015
        ```
        
        Optionally, to get the cutting-edge development version:
        
        ```sh
        git clone https://github.com/space-physics/wmm2015
        
        python -m pip install -e wmm2015
        ```
        
        This Python wrapper of WMM2015 uses our build-on-run technique.
        The first time you use WMM2015, you will see messages from the Meson build system and your C compiler.
        
        
        ## Usage
        
        an example script
        
        ```sh
        python RunWMM2015.py
        ```
        
        or as a Python module:
        
        ```python
        import wmm2015
        
        mag = wmm2015.wmm(glat, glon, alt_km, yeardec)
        ```
        
        ## Reference
        
        
        
        -   WMM2015 [inclination map](https://www.ngdc.noaa.gov/geomag/WMM/data/WMM2015/WMM2015_I_MERC.pdf)
        -   WMM2015 [declination map](https://www.ngdc.noaa.gov/geomag/WMM/data/WMM2015/WMM2015_D_MERC.pdf)
        
Keywords: geomagnetic
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: lint
