Skip to main content

A Python wrapper for AACGM-v2 magnetic coordinates

Project description

Documentation Status PyPI Package latest release

This is a Python wrapper for the AACGM-v2 C library, which allows converting between geographic and magnetic coordinates. The currently included version of the C library is 2.4. The wrapper is provided “as is” in the hopes that it will be useful to the space science community, and will not automatically be updated when new versions of the C library is released. MLT calculations are included in the wrapper (not part of the C library, please see the documentation for implementation details). The package is free software (MIT license).

This fork of aacgmv2 (github link) provides the interface compatible with aacgmv2 < 2.4.

Quick start

Install (requires NumPy):

pip install aacgm2

Convert between AACGM and geographic coordinates:

>>> from aacgm2 import convert
>>> from datetime import date
>>> # geo to AACGM, single numbers
>>> mlat, mlon, malt = convert(60, 15, 300, date(2013, 11, 3))
>>> "{0:.8f}".format(float(mlat))
'57.47357891'
>>> "{0:.8f}".format(float(mlon))
'93.61113360'
>>> "{0:.8f}".format(float(malt))
'1.04566346'
>>> # AACGM to geo, mix arrays/numbers
>>> glat, glon, galt = convert([90, -90], 0, 0, date(2013, 11, 3), a2g=True)
>>> ["{0:.8f}".format(float(gl)) for gl in glat]
['82.96859922', '-74.33899667']
>>> ["{0:.8f}".format(float(gl)) for gl in glon]
['-84.65010944', '125.84759847']
>>> ["{0:.8f}".format(float(ga)) for ga in galt]
['14.12457922', '12.87721946']

Convert between AACGM and MLT:

>>> from aacgm2 import convert_mlt
>>> from datetime import datetime
>>> mlon = convert_mlt([0, 12], datetime(2013, 11, 3, 18, 0), m2a=True)
>>> ["{0:.8f}".format(float(ml)) for ml in mlon]
['159.08043649', '339.08043649']

If you don’t know or use Python, you can also use the command line. See details in the full documentation.

Documentation

https://aacgm2.readthedocs.org/

Badges

docs

Documentation Status

tests

Travis-CI Build Status AppVeyor Build Status Requirements Status
Coverage Status Coverage Status
Scrutinizer Status Codacy Code Quality Status

package

PyPI Package latest release Supported versions
PyPI Wheel Supported implementations

Changelog

2.6.0-rc1 (2020-08-12)

  • Updated AACGM-v2 coefficients derived using the IGRF13 model

  • Updated IGRF and GUFM1 coefficients using the IGRF13 model

  • Added additional checks to the C code for reading the IGRF13 coefficient file

  • Updated CI setup on travis and appveyor

  • Deployment of linux and osx wheels to the package index

  • Changed version support to 2.7, 3.4, 3.5, 3.6, 3.7, and 3.8

  • Updated test values to match new coefficients

2.5.0 (unreleased)

  • Updated C code and coefficients to version 2.5.

2.3.9 (2018-05-27)

  • Update to AACGM-v2.4, which includes changes to the inverse MLT and dipole tilt functions and some minor bug fixes

  • Updated dependencies

  • Removed support for python 3.3

2.0.0 (2016-11-03)

  • Change method of calculating MLT, see documentation of convert_mlt for details

1.0.13 (2015-10-30)

  • Correctly convert output of subsol() to geodetic coordinates (the error in MLT/mlon conversion was not large, typically two decimal places and below)

1.0.12 (2015-10-26)

  • Return nan in forbidden region instead of throwing exception

1.0.11 (2015-10-26)

  • Fix bug in subsolar/MLT conversion

1.0.10 (2015-10-08)

  • No code changes, debugged automatic build/upload process and needed new version numbers along the way

1.0.0 (2015-10-07)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aacgm2-2.6.0rc1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

aacgm2-2.6.0rc1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-pp27-pypy_73-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.4m

aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.4m

aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file aacgm2-2.6.0rc1.tar.gz.

File metadata

  • Download URL: aacgm2-2.6.0rc1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1.tar.gz
Algorithm Hash digest
SHA256 ba7f676b55a2339a933c06d3d49be05fb024e623d8056cb8ac50bd6762a93ef3
MD5 133619eaba9b42351ab87304fcf34b2a
BLAKE2b-256 fe8216068137d163c039b0ee496c73b4988db4bf46ea8e4a8ebe5aa080e32955

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c020432820be4edf00be347049d0de034badb9c1cc3074261b2311413480f584
MD5 6d1f114437dbc32dc2bf618fb77d84b6
BLAKE2b-256 6ce928ec2d57b8042d8ed843faaad1a9bf749b17a6740c00e370ada02cbebc54

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b2d33429fdfcc7418027a01396d2e4ab1316638f1b01e029c4d48c475f5cff64
MD5 6ac30fc90e1e9c32f1f4131f08448c77
BLAKE2b-256 3809447dba2a3e614460e5e12b893097b305c4d5ac1d1067f2559d51c76b81b2

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7e7ed27b997d75d1b35c4b095ac955393753dc9314bdec0140a1d7d8e6d8fa5
MD5 e40ca3c8cca89d82f49be56fdae11f12
BLAKE2b-256 3a4e01f09b82bf61a5e122a3d205183777f55be83d119994dffb7acda0c06371

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 06020b95827f965d2af6632f1ae3e93bb78a50ea5295b0fb147dfe0dbbae15c7
MD5 8c6d37c4162af455a74ca7e7d6572b9b
BLAKE2b-256 5f8e7e166a10b16363c3bfc45a938a672913905cb5bc6b2fba1d5b5db76f4368

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 712c5b847219587de196f573d0dce4ee9c447eefaacbfe9d89898945e7aa9a65
MD5 0d344937dda1b145d8ecce360289525c
BLAKE2b-256 983694b51e0750ce9202e9a31e17cb66c6e3f1fa1b90ffb91762be1c6147f5c9

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d66fe06c8de237d853a85d1e09281ea06eec4e94d1be8619c168ef7311e6711d
MD5 546c4dcd577c9652e412fdf6a93a54a7
BLAKE2b-256 1a847065090faece963cd474cc995e1da294eebae8730613de9b300a2fcaf44e

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96eb968faf47941ff4fd3ef65b6061e36e30f0646a8814dc593e0c0c0d657439
MD5 e2ee5e12c00eb57eafdb9e321957654f
BLAKE2b-256 8d70f5187985719ce80dec1f7038ee3f1e35c5cfc805c30ff43cc80bf856e9c0

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bac6196299e4161b73cfbab26ed62c4fa6c9a766e0207365a4f4f14749451f2
MD5 62ca61d62206f3b12e1c1c21b72dfd07
BLAKE2b-256 57dba9b1f0593e252a5531aca5002ca60ea6b08f86473518e1f8048ce66fa999

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d79b574b9d46eb185028018bbe2491dea194689dd3089f0202b739c27cf561da
MD5 d20b094eb204a752721218bfd2dd60f2
BLAKE2b-256 3453cffba757a1f276b87efbc68cc6d77c59ecac99b874d7cfda6bff06a50945

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dc13d85330884157e456e2cbec67cf040e0d8dc9dc15fdf2fc0815d58b4fba72
MD5 19b9fd58cf32b483e1631f29bbb6a34c
BLAKE2b-256 bb3b71d41fe3dce805591e3a2b8e6bdc7fe98aae64227c1d897e60f163332dc4

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0c554eeba643aa2ee209f5e871bdef258344f637a0e5436d41de0206f772397
MD5 c1f0552823113e7aea33ed6feb3ebd4d
BLAKE2b-256 be6bdc347e725dc4f168b42e1aef8435aec6d1832177dee7538e967caa9b88fa

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0b2b250986bf344a3dbe039a5f746f3d93fb5931fbccfc89e4f97027aaa252f6
MD5 ab639d226dfc2c5a3a4c367f8c0db13d
BLAKE2b-256 72ba6eca20300d137e32670c1b3ae2f4d6fc25d84e807824573fa6afa7a9c844

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f71c9381937790524a23a79f15afdd29157cb70d9ab5d1f1cb9a412e89e42af
MD5 14a70555457e8732a7d7bf3fff2ddf45
BLAKE2b-256 24222c2b86cf611b33b2ac4f9562a12a509242c70039207724e3a1816e2b09b3

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bab4823b36eb4f881685190d84cb61dd9694d296563639dd1672c99af546ab0
MD5 887a3224b4e582028a439431bcf03415
BLAKE2b-256 455ac1e5ed62d5293cbef34cbb75e6e8918a004ea2fc2b942e4da4a78d7cf200

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a8428c83670b138d8cf0f0d028ec5ac76f3fd59b1ccb14bd853f8762fa53e44
MD5 8ccf1536103ade4122373564be09cb91
BLAKE2b-256 98b5b623d01b5053fbfd96bcd97f8d0d80de56d17550be77cd843eec920261b0

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8153b2d5eed266b6eb42ad504c358e7d3e6f1525574bb2e781e84f07d8dd7c4f
MD5 bf00b85e3b5f95ea8905cd5fd541baf8
BLAKE2b-256 48965a27fbbff173d634044dc705cb31fc383188d87255227023c034d5ba47ce

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2f34b9953338ec200edca22183a8454ec6573cdb0a9ee33e6565fa90c46bd391
MD5 81de9cfebd65761d298bc9d3b79b4e9d
BLAKE2b-256 cd483158454356bad7c99579b5eb01d5e66fda9693399aebfac85bd83ae4c107

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84f1fd8096709a6d712e96742bfe451e215590949e5bc2870fd180479a8b60f4
MD5 9a3a64bc8871b3d2176610d64902e1d6
BLAKE2b-256 e1455c99b24f0a90ce4dbb41323b9315911d6c6501605f9e8654ad4e9e9bcdb1

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6e284200588b1483edcdedb72f04d3b73521ab3a6a35c2435f9d48e66c776259
MD5 76ae3219d4fa904513b5d17ac36e1d5c
BLAKE2b-256 a960557f8cd60ab9df033c7453d1fb5220f6c781236680e09f4301b9499a0212

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 53861d1c865247c280165eeabeb975b419d866e9a7c2ec62091761d4ec88a667
MD5 d4148eddfce8dc359ee4b82efc03ae32
BLAKE2b-256 1e9dc3fc32137ad5e9fb456496d5337899b2bb6ceea2f8220b27a0165956d7ad

See more details on using hashes here.

File details

Details for the file aacgm2-2.6.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aacgm2-2.6.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b59654ae0385be2238601f3c4dd7c6ce3440d2d62ce2ae1568fc4c35040b807
MD5 7a2fe09f46cf28ac7cf0fe751a0ff503
BLAKE2b-256 f2cc65ccaf67cde4732b002770c01ba309395408eb282c73b861dd714198615b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page