Python interface for the NRLMSISE-00 neutral atmosphere model
Project description
Python interface for the NRLMSISE-00 empirical atmosphere model
This python version of the NRLMSISE00 upper atmosphere model is
based on the C-version of the code, available at www.brodo.de/space/nrlmsise.
The C code is imported as a git
submodule from
git://git.linta.de/~brodo/nrlmsise-00.git
(browsable version at:
https://git.linta.de/?p=~brodo/nrlmsise-00.git).
Overview
Quote from https://ccmc.gsfc.nasa.gov/models/modelinfo.php?model=MSISE:
“The MSISE model describes the neutral temperature and densities in Earth's atmosphere from ground to thermospheric heights. The NRLMSIS-00 empirical atmosphere model was developed by Mike Picone, Alan Hedin, and Doug Drob.”
Install
Requirements
numpy
- requiredpytest
- optional, for testing
pynrlmsise00
There is no pip
package yet, but pynrlmsise00 can be installed
with pip
directly from github
(see https://pip.pypa.io/en/stable/reference/pip_install/#vcs-support
and https://pip.pypa.io/en/stable/reference/pip_install/#git):
$ pip install [-e] git+https://github.com/st-bender/pynrlmsise00.git
The other option is to use a local clone:
$ git clone https://github.com/st-bender/pynrlmsise00.git
$ cd pynrlmsise00
$ git submodule init
$ git submodule update
and then using pip
(optionally using -e
, see
https://pip.pypa.io/en/stable/reference/pip_install/#install-editable):
$ pip install [-e] .
or using setup.py
:
$ python setup.py install
Optionally, test the correct function of the module with
$ py.test [-v]
or even including the doctests in this document:
$ py.test [-v] --doctest-glob='*.md'
Usage
The python module itself is named nrlmsise00
and is imported as usual:
>>> import nrlmsise00
Basic class and method documentation is accessible via pydoc
:
$ pydoc nrlmsise00
C model interface
The C submodule directly interfaces the model functions gtd7()
and gtd7d()
by importing nrlmsise00._nrlmsise00
. The return values are always
tuples of two lists containing the densities (d[0]
--d[8]
),
and temperatures (t[0]
, t[1]
).
The flags
and ap_a
value array are set via keywords, but both default
to the standard setting, such that changing them should not be necessary
for most use cases.
>>> from nrlmsise00._nrlmsise00 import gtd7, gtd7d
>>> # using the standard flags
>>> gtd7(2009, 172, 29000, 400, 60, -70, 16, 150, 150, 4)
([666517.690495152, 113880555.97522168, 19982109.255734544, 402276.3585712511, 3557.464994515886, 4.074713532757222e-15, 34753.12399717142, 4095913.2682930017, 26672.73209335869], [1250.5399435607994, 1241.4161300191206])
Python interface
The Python interface functions take datetime.datetime
objects for
convenience. The local solar time is calculated from that time
and the given location, but it can be set explicitly via the lst
keyword.
The returned value has the same format as the C version, and
because of their similarity, gtd7()
and gtd7d()
are selected via the
method
keyword, gtd7
is the default.
>>> from datetime import datetime
>>> from nrlmsise00 import msise_model
>>> msise_model(datetime(2009, 6, 21, 8, 3, 20), 400, 60, -70, 150, 150, 4, lst=16)
([666517.690495152, 113880555.97522168, 19982109.255734544, 402276.3585712511, 3557.464994515886, 4.074713532757222e-15, 34753.12399717142, 4095913.2682930017, 26672.73209335869], [1250.5399435607994, 1241.4161300191206])
A numpy
compatible flat version is available as msise_flat()
,
it returns a 11-element numpy.ndarray
with the densities in the
first 9 entries and the temperatures in the last two entries.
>>> from datetime import datetime
>>> from nrlmsise00 import msise_flat
>>> msise_flat(datetime(2009, 6, 21, 8, 3, 20), 400, 60, -70, 150, 150, 4)
array([5.65085279e+05, 6.79850175e+07, 1.18819263e+07, 2.37030166e+05,
1.32459684e+03, 2.39947892e-15, 5.32498381e+04, 1.07596246e+06,
2.66727321e+04, 1.10058413e+03, 1.09824872e+03])
All arguments can be numpy.ndarray
s, but must be broadcastable
to a common shape. For example to calculate the values for
three altitudes (200, 300, and 400 km) and two latitude locations
(60 and 70 °N) simultaneously, one can use numpy.newaxis
(which is equal to None
) like this:
>>> from datetime import datetime
>>> import numpy as np
>>> from nrlmsise00 import msise_flat
>>> alts = np.arange(200, 401, 100.) # = [200, 300, 400] [km]
>>> lats = np.arange(60, 71, 10.) # = [60, 70] [°N]
>>> # Using broadcasting, the output will be a 2 x 3 x 11 element array:
>>> msise_flat(datetime(2009, 6, 21, 8, 3, 20), alts[None, :], lats[:, None], -70, 150, 150, 4)
array([[[1.36949418e+06, 1.95229496e+09, 3.83824808e+09, 1.79130515e+08,
4.92145034e+06, 2.40511268e-13, 8.34108685e+04, 1.74317585e+07,
3.45500931e-08, 1.10058413e+03, 9.68827485e+02],
[8.40190601e+05, 3.25739060e+08, 1.82477392e+08, 5.37973134e+06,
6.53609278e+04, 1.75304136e-14, 5.92944463e+04, 4.36516218e+06,
1.03939126e+02, 1.10058413e+03, 1.08356514e+03],
[5.65085279e+05, 6.79850175e+07, 1.18819263e+07, 2.37030166e+05,
1.32459684e+03, 2.39947892e-15, 5.32498381e+04, 1.07596246e+06,
2.66727321e+04, 1.10058413e+03, 1.09824872e+03]],
<BLANKLINE>
[[1.10012225e+06, 1.94725472e+09, 4.08547233e+09, 1.92320077e+08,
6.65460281e+06, 2.52846563e-13, 6.16745965e+04, 2.45012145e+07,
5.21846603e-08, 1.13812434e+03, 1.00132640e+03],
[6.83809952e+05, 3.42643970e+08, 2.13434661e+08, 6.43426889e+06,
1.01162173e+05, 1.95300073e-14, 4.36031132e+04, 6.70490625e+06,
1.59911615e+02, 1.13812434e+03, 1.12084651e+03],
[4.65787225e+05, 7.52160226e+07, 1.51795904e+07, 3.13560147e+05,
2.32541183e+03, 2.76353370e-15, 3.92811827e+04, 1.73321928e+06,
4.12296154e+04, 1.13812434e+03, 1.13580463e+03]]])
This module also provides "flat" variants of the C functions as gtd7_flat()
and gtd7d_flat()
. For example using gtd7()
the same way as above:
>>> import numpy as np
>>> from nrlmsise00 import gtd7_flat
>>> alts = np.arange(200, 401, 100.) # = [200, 300, 400] [km]
>>> lats = np.arange(60, 71, 10.) # = [60, 70] [°N]
>>> # Using broadcasting, the output will be a 2 x 3 x 11 element array:
>>> gtd7_flat(2009, 172, 29000, alts[None, :], lats[:, None], -70, 16, 150, 150, 4)
array([[[1.55567936e+06, 2.55949597e+09, 4.00342724e+09, 1.74513806e+08,
6.56916263e+06, 2.64872982e-13, 5.63405578e+04, 4.71893934e+07,
3.45500931e-08, 1.25053994e+03, 1.02704994e+03],
[9.58507714e+05, 4.66979460e+08, 2.31041924e+08, 6.58659651e+06,
1.16566762e+05, 2.38399390e-14, 3.86535595e+04, 1.43755262e+07,
1.03939126e+02, 1.25053994e+03, 1.20645403e+03],
[6.66517690e+05, 1.13880556e+08, 1.99821093e+07, 4.02276359e+05,
3.55746499e+03, 4.07471353e-15, 3.47531240e+04, 4.09591327e+06,
2.66727321e+04, 1.25053994e+03, 1.24141613e+03]],
<BLANKLINE>
[[1.31669842e+06, 2.40644124e+09, 4.21778196e+09, 1.89878716e+08,
8.17662024e+06, 2.71788520e-13, 4.64192484e+04, 5.13265845e+07,
5.21846603e-08, 1.24246351e+03, 1.04698385e+03],
[8.22632403e+05, 4.52803942e+08, 2.53857090e+08, 7.50201654e+06,
1.53431033e+05, 2.46179628e-14, 3.20594861e+04, 1.62651506e+07,
1.59911615e+02, 1.24246351e+03, 1.20963726e+03],
[5.73944168e+05, 1.10836468e+08, 2.19925518e+07, 4.58648922e+05,
4.68600377e+03, 4.10277781e-15, 2.89330169e+04, 4.65636025e+06,
4.12296154e+04, 1.24246351e+03, 1.23665288e+03]]])
Note
All functions require the solar 10.7 cm radio flux and and the geomagnetic Ap index values to produce correct results. In particular, according to the C source code:
- f107A: 81 day average of F10.7 flux (centered on the given day of year)
- f107: daily F10.7 flux for previous day
- ap: magnetic index (daily)
The f107 and f107A values used to generate the model correspond to the 10.7 cm radio flux at the actual distance of the Earth from the Sun rather than the radio flux at 1 AU. The following site provides both classes of values (outdated): ftp://ftp.ngdc.noaa.gov/STP/SOLAR_DATA/SOLAR_RADIO/FLUX/
f107, f107A, and ap effects are neither large nor well established below 80 km and these parameters should be set to 150., 150., and 4. respectively.
License
This python interface is free software: you can redistribute it or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 (GPLv2), see local copy or online version.
The C source code of NRLMSISE-00 is in the public domain, see COPYING.NRLMSISE-00.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file nrlmsise00-0.0.1.tar.gz
.
File metadata
- Download URL: nrlmsise00-0.0.1.tar.gz
- Upload date:
- Size: 49.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0.post20200119 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 752160c14a82f3d9b5f9404e198df909342becdd22b5feaa2179a3018e57dcc8 |
|
MD5 | fba11d2001f7429dbdf3c7707b1b5835 |
|
BLAKE2b-256 | 94cd607fa21073ae4f12d2249459d6a104a3293bffda808ce54ceb9b58cb9f09 |
File details
Details for the file nrlmsise00-0.0.1-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 83.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6645c3785601c836399c02db1739d034c09f24f94ca8177ad0405fc2eb0d865 |
|
MD5 | 335bbcae797b07490f626cf35175a512 |
|
BLAKE2b-256 | 8dcffff0e3d6e1457a672433654eb80815b1c8647257541666001928911b01b1 |
File details
Details for the file nrlmsise00-0.0.1-cp38-cp38-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp38-cp38-manylinux2010_i686.whl
- Upload date:
- Size: 77.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6708d6aa83be4953047fadee559feba9536f7ee1ce5637d48ffd10d8a34f613e |
|
MD5 | 690232ccb99ee8f531343b4dd7e1034e |
|
BLAKE2b-256 | 520f7d251cccc44fde3dd291d6e24b97acd7009462f8c22e93a71d4861f202f2 |
File details
Details for the file nrlmsise00-0.0.1-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 83.6 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cceccd80a02bc66d6b75a96a0e9dc5af5eb72161889b8adea1fa3df087b52ba |
|
MD5 | 11436987c8d4dd049ad674c0f4f8f788 |
|
BLAKE2b-256 | 06385c36371cf71680362e4840b9298d58c3ed4fc365062c6d269de5208e2e2c |
File details
Details for the file nrlmsise00-0.0.1-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 77.1 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf368d3b936a79eeade488d404f6e71bbac90edb90dded6660441a885a6f647e |
|
MD5 | 0f85e5572289923a52314bc348576bdc |
|
BLAKE2b-256 | 2efd7881429aa594df33ce3ab5dd4f5b438f7f31afb298efbf353a65b757cc3d |
File details
Details for the file nrlmsise00-0.0.1-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 72.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce366f2285cfcbce1a587de2d8242844bcb21bdd8c5851b04be57216909efbe3 |
|
MD5 | 9852f8a02aa15a6e4d5df1717387abe6 |
|
BLAKE2b-256 | aed77ff83f7891525da20bec9125ef7cd1bd552cf9932fbcd9221800fc3488f8 |
File details
Details for the file nrlmsise00-0.0.1-cp37-cp37m-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp37-cp37m-manylinux2010_i686.whl
- Upload date:
- Size: 78.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06fa81777c8b2ee83753af694ae51282b95fd2f7582d5424ec22c28429ee788f |
|
MD5 | c8f81f8b2234bd38c0c5a16480f20010 |
|
BLAKE2b-256 | f77399573b33a7d4f8e610c1ee48e7506279b387755cd72e0a21c792135cab6b |
File details
Details for the file nrlmsise00-0.0.1-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 72.1 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69c8680a2241b98c70517579f36ef22110ab7518dd83a485063964c84652a1d8 |
|
MD5 | 23f80e4b919cfbc3953fa844246e5107 |
|
BLAKE2b-256 | eabce9e92f8d07f0c17ff5c7fe4963e988017e561a6f632867019cdc233bf2d4 |
File details
Details for the file nrlmsise00-0.0.1-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 78.1 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 017e3f58626294af7e71b75556e0411a8d37d48e0c8b35f14ee93b48880a534d |
|
MD5 | c28d84e9dee2706fcb96fd83f74c7997 |
|
BLAKE2b-256 | 12afecf7b2a075c71f0009bf75ddf4623e8de12d9a612f7b2eb8a3ebeec745dd |
File details
Details for the file nrlmsise00-0.0.1-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 83.7 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 359d131c587aca04ad6221e6c2ef0efeabdcf110aa01ed7bdd9e95fe13fb136a |
|
MD5 | 711cbaec9ad451c35c7b8087395545ee |
|
BLAKE2b-256 | 5aa606cbfad4f889ebf7d3075cfb46ca450c33be33afd453ee2e12e0ef9f7c4a |
File details
Details for the file nrlmsise00-0.0.1-cp36-cp36m-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp36-cp36m-manylinux2010_i686.whl
- Upload date:
- Size: 77.2 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1628d5e42bf3f4270a75e3f9fec87cb645f284cfb8064b5b92dfd0cd2c5ece6c |
|
MD5 | 3e4f78656f5ec4ed8c5e8a6acbf273b9 |
|
BLAKE2b-256 | bea5eff4fbaf80906b2c81b7bd7cac28fdda3e08d48fca0caa74bddd1ed1feac |
File details
Details for the file nrlmsise00-0.0.1-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 72.0 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0.post20200119 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5d27e7d44aeef2a51c6078fd015781e349b7206d50426c172dc0907f41e08bc |
|
MD5 | e9d81910cfa8d4154648a6e2b9ab4ea2 |
|
BLAKE2b-256 | fbcdf46910022950174c7e033516d55339f2aa0f139a4da8c0eda0de1781f934 |
File details
Details for the file nrlmsise00-0.0.1-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 77.2 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 253d5bc365bce6ed084ef2f149f8f39cfb87dd6f05ed144f9deaf99ff6a570dc |
|
MD5 | 6458f7a2cd5c9d42e366624e65650532 |
|
BLAKE2b-256 | 9fa553238c31cf3fcffb32df900c6d0fbb5eafa25ece3c0708640c15bdfaa04d |
File details
Details for the file nrlmsise00-0.0.1-cp35-cp35m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp35-cp35m-manylinux2010_x86_64.whl
- Upload date:
- Size: 83.5 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7a03ed8d22610749a360a08aba1efc332fd7bf12e2e9f919790479202f32d67 |
|
MD5 | b312b558b000c6d6b227ee164f7a3354 |
|
BLAKE2b-256 | 612048acc05f008d1ff1e3fed25121b95cc8c6d6ed332106827472479deae7d0 |
File details
Details for the file nrlmsise00-0.0.1-cp35-cp35m-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp35-cp35m-manylinux2010_i686.whl
- Upload date:
- Size: 77.0 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7df0b192b6458058ee964351b79b4acd6962ae24755daf4782522552b48108dc |
|
MD5 | d182a1a492cd185ffb41e8041d55c65a |
|
BLAKE2b-256 | 631b7e85008df0188f4bdf5dcc81dd40f2fabe65d5ab68c74738edd10f1542c6 |
File details
Details for the file nrlmsise00-0.0.1-cp35-cp35m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp35-cp35m-manylinux1_x86_64.whl
- Upload date:
- Size: 83.5 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7a182efc30fe0e97fbb7b25cb4947286ae625ac1ad3b9140ac68f391d60180a |
|
MD5 | 159810ce3af44d8e2715a08e8ced3638 |
|
BLAKE2b-256 | f130107c231971d18f2f803fb6b9242ddf28adfe21c265dcb3f736c5993ca21a |
File details
Details for the file nrlmsise00-0.0.1-cp35-cp35m-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp35-cp35m-manylinux1_i686.whl
- Upload date:
- Size: 77.0 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 485e420edb3f17964e9403b5f3e3a45bbff9183edba38e74cc6186529e5cbe1d |
|
MD5 | ddaa3125cd10efad659e5fab322b2de9 |
|
BLAKE2b-256 | 41d72a48d6776f78d4a2cc1d34ca2acc493210e7de5c22748b7a844270cf3ea1 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2821861a807443908d680047f8c9f93a729bcf0ece3412d30fbe45eae1967406 |
|
MD5 | 0efbd3549ebc9c55c8c9116169f1ed1b |
|
BLAKE2b-256 | 0dc57723b52ba977c899c47ba3ef5be2df7bd35780c3df1a7515b6424669abc3 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27mu-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27mu-manylinux2010_i686.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3eda168263b37da72caf7291f97d06f3709cd1c3644e3344bcd1791bbed4edbb |
|
MD5 | 9b6ad366ce70081b37f478c282830f09 |
|
BLAKE2b-256 | d81b5bacdc62e49dd31fbcf248aa586862593cdbb82fd23e1a24f80ada8030d6 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27mu-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27mu-manylinux1_x86_64.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07177a6929ea304d8f4f82451b6624919c42620b484a1d1992b6bb05df0e36b6 |
|
MD5 | e84892ff1f40281a6a70b6b359e5bf04 |
|
BLAKE2b-256 | b54910d4d2a5ceaebb8202d9f38c2703e514b980f3277702f11741949b66af81 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27mu-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27mu-manylinux1_i686.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4df450c411b0b18fdf93f12bb742098f1baf77a4693c50c5d638db04fa59d696 |
|
MD5 | d43d4cf0a4af7374975d0e19ddfe8ed7 |
|
BLAKE2b-256 | 85206ff7a15a05386a2b8d043538953d944775d54067e4b7a07bd02726e7cce6 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27m-manylinux2010_x86_64.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a70f79c886c4b9f0759c8930ce84d8f213ce1381289bb555d64b9641697fd4f0 |
|
MD5 | e20b2c4e9f6db0b38e95a762916411c4 |
|
BLAKE2b-256 | 19c58cfb6d16a6cf24a452dcca9306c907e86d72cf9c400e5ce1a167297b8717 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27m-manylinux2010_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27m-manylinux2010_i686.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df8f1d2a55a703f036c796fd466141cd65e5982fa7b4287f53812a08ae4e540f |
|
MD5 | f753fdfd89b54ff46b39a2d0b0c79b22 |
|
BLAKE2b-256 | e3dee5609e4e436136ce9b05f70cb6f21d94f44e7d48fc297691383ddf8a3f94 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27m-manylinux1_x86_64.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dfff29180b66f8bc6421de96783aa59e0d1b897e85155a4a7eafdd755d1391e |
|
MD5 | 3af8fcb342207691d0139c2655438aea |
|
BLAKE2b-256 | 20f81c13e49e8a187f2696909b1143b614d243a067a0c08bf2fbcc096e08de61 |
File details
Details for the file nrlmsise00-0.0.1-cp27-cp27m-manylinux1_i686.whl
.
File metadata
- Download URL: nrlmsise00-0.0.1-cp27-cp27m-manylinux1_i686.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93ae5ef210c37fb3a817510ec4da12f64a001d9338434d29063670a6f39aa5f9 |
|
MD5 | f8e1772c17626811c13f6c57cc1b0f35 |
|
BLAKE2b-256 | d6f87a1948af6f9be62662559524b6d8ab4efd2ed6ecd6ad54b68a55b7a16cfc |