| Total Complexity | 0 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # Copyright (c) 2019 Stefan Bender |
||
| 2 | # |
||
| 3 | # This module is part of pynrlmsise00. |
||
| 4 | # pynrlmsise00 is free software: you can redistribute it or modify |
||
| 5 | # it under the terms of the GNU General Public License as published |
||
| 6 | # by the Free Software Foundation, version 2. |
||
| 7 | # See accompanying LICENSE file or http://www.gnu.org/licenses/gpl-2.0.html. |
||
| 8 | """Python interface based on the NRLMSISE-00 C version [0]_ |
||
| 9 | |||
| 10 | .. [0] https://www.brodo.de/space/nrlmsise |
||
| 11 | """ |
||
| 12 | __version__ = "0.1.2" |
||
| 13 | |||
| 14 | from . import _nrlmsise00 |
||
| 15 | from .core import * |
||
| 16 | |||
| 17 | __all__ = ["msise_model", "msise_flat", "gtd7_flat", "gtd7d_flat", "scale_height"] |
||
| 18 |