Metadata-Version: 2.1
Name: hwm93
Version: 0.9.1
Summary: Horizontal Wind Model 1993 in Python
Home-page: https://github.com/scivision/hwm93
Author: Michael Hirsch, Ph.D.
License: UNKNOWN
Description: [![Build Status](https://travis-ci.org/scivision/hwm93.svg?branch=master)](https://travis-ci.org/scivision/hwm93)
        [![Coverage Status](https://coveralls.io/repos/github/scivision/hwm93/badge.svg?branch=master)](https://coveralls.io/github/scivision/hwm93?branch=master)
        [![Build status](https://ci.appveyor.com/api/projects/status/4g7131qb0vk4p8q7?svg=true)](https://ci.appveyor.com/project/scivision/hwm93)
        [![PyPi version](https://img.shields.io/pypi/pyversions/hwm93.svg)](https://pypi.python.org/pypi/hwm93)
        [![PyPi formats](https://img.shields.io/pypi/format/hwm93.svg)](https://pypi.python.org/pypi/hwm93)
        [![PyPi Download stats](http://pepy.tech/badge/hwm93)](http://pepy.tech/project/hwm93)
        
        
        # HWM93 in Python
        
        NASA Horizontal Wind Model HWM93 in Python &ge; 3.6
        
        
        ![image](tests/example.png)
        
        Works with many Fortran compilers, including:
        
        * Gfortran 5, 6, 7, 8
        * Intel `ifort`
        * PGI `pgf90`
        * Nvidia `flang`
        
        
        ## Install
        
            pip install -e .
            
        test by 
        
            pytest -sv
        
        ## Usage
        
        HWM93 can be used from the command line or as an imported Python module in other programs.
        Matlab &ge; R2014b also can use HWM93.
        
        ### Command line
        
            RunHWM93 -h
            
        Write data to NetCDF (HDF5) with `-o` option.
         
        ### import module
        
        ```python
        import hwm93
        from datetime import datetime
        
        winds = hwm93.run(t=datetime(2017,11,12,8), altkm=150., 
                            glat=65., glon=-148., f107a=150, f107=150, ap=4)
        ```
        
        `winds` is an [xarray.Dataset](http://xarray.pydata.org/en/stable/generated/xarray.Dataset.html)
        
        ```
         <xarray.Dataset>
        Dimensions:     (alt_km: 1)
        Coordinates:
          * alt_km      (alt_km) float64 150.0
        Data variables:
            meridional  (alt_km) float64 4.827
            zonal       (alt_km) float64 -20.5
        Attributes:
            time:     2017-11-12T08:00:00
            glat:     65.0
            glon:     -148.0
        ``` 
        
        If you want just a single variable, say
        ```python
        print(winds.zonal.values)
        ```
        
        ### Matlab
        
        You can import this Python module from Matlab &ge; R2014b as in [hwm93.m](hwm93.m)
        
        ## Notes
        
        ### [Optional] Fortran-only use
        
        Most users don't need this.
        ```sh
        cd bin
        cmake ..
        cmake --build .
        ctest -V
        ````
           
        or
        
        ```sh
        f2py -c src/hwm93_sub.f  -m hwm93 only: gws5 :
        ```
        
        
        ### Reference
        
        Original A. E. Hedin Fortran 77 HWM93 [code](ftp://hanna.ccmc.gsfc.nasa.gov/pub/modelweb/atmospheric/hwm93/)
        
Keywords: mesosphere,stratosphere,thermosphere
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Fortran
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Provides-Extra: plot
Provides-Extra: tests
