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.6. 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-rc2 (2020-08-14)

  • Binary wheels for MacOSX

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.0rc2.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc2-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.0rc2-cp37-cp37m-manylinux2010_x86_64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc2-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.0rc2-cp36-cp36m-manylinux2010_x86_64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc2-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.0rc2-cp35-cp35m-manylinux2010_x86_64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc2-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.0rc2-cp34-cp34m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

aacgm2-2.6.0rc2-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.0rc2.tar.gz.

File metadata

  • Download URL: aacgm2-2.6.0rc2.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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2.tar.gz
Algorithm Hash digest
SHA256 f2fd7e8ffee90f5e14a74bf90e09cc440915838f6bb8013246de94acf90f7208
MD5 87f28514d3365d657e9293c3b94c9620
BLAKE2b-256 ffdca02eefefb8f2f3c61dc238884f89528ed3c58e5d4c4b40334ffb8fd82602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64fdee7e65d3d3973a1e9bf5c4bb7f12a1407b20fbdbba391c3f5bf22c2e951b
MD5 5230c245ccfcb318345efc175bf3f102
BLAKE2b-256 6db372b0f643e674c9071bd6a6139dd6516289ffdeda0c5b07862d88f6823b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc81e2dfa43803964c932f2d14521a3e287eb58817234b2c3f696d45ea91153f
MD5 50f9f35f79f3c2e1d6ee368cd59e244c
BLAKE2b-256 8618218f84e1add7675b104bc934885977cba03ac214f9b098ef0c778a6576fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a964c1599e36c062a547f7e9d181a2df4ce1a568c8368b788a8a183eb4a34c48
MD5 91e56111abce1b5135c86cc4497b4961
BLAKE2b-256 7a9eaa99c4437bc749ce96377e264f909586b28bac72e6528547d2d834ad84a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac98bce8b6c7c7d3f20426188e601052458ffb1cfdc6fcc43825f07e9f9dd7ec
MD5 1c2d133be98964a9242359a474527e43
BLAKE2b-256 36c2aacd9e51d51cf16fe8963b1c0820635bb35e137e0de8df19479ea6e46a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3607d4c0cca2dcd577927f165f1be98914e7671e7b5ca2a12dd02f8279bd2586
MD5 93497f376800c5afc071534571de3224
BLAKE2b-256 0a5cb14cf4d50303a97e56eb7572e35623afeb0beddbd1697ed88fa54ab3665b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a0a9a7b2ecef17e01498969cc70e2d7225c6f375b77f2ce500144f83253877c7
MD5 5978556032e7e9542b928b076fe276ab
BLAKE2b-256 04c3086c74aad40fcd06479bbf3b5e10c561fd0042c76fb794134952be408f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fe9156630ebd2319d6a19bb9209c0cc8969a113c4a057aa013a1ee6aeb4c01ed
MD5 a16528c699fdc784bf617ee6bc8825a4
BLAKE2b-256 32771de310a017ad59288b4ca5c8fdd525cc92ddf52c83a880c4d87ee955d190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67c92bb72f8ab1fe7b54b2af7b574fafcd518666747a5a07b95d5db591508547
MD5 b84fabebd96277a481bcd55fdd47935a
BLAKE2b-256 b72451f9155afc6eb64a5e46af735f82805c0976812cb94696ca3e2f2dcbd118

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41bbbd2e756cd6c46940f356d7f075c90612749d5d4d3c6c953d4bd035958fa4
MD5 de89c4250d77732707e0bdabd9405922
BLAKE2b-256 452d6d9badde82d7507d4f4b27b1e18c9179f35f547258f484efdc1013d3ee11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99a39918480473584385d3f9e04f1623c1caea65ffecf1a90a6838cba9871095
MD5 47c395af656936b162d5e5621a23740c
BLAKE2b-256 2dbe7ac0b0f4481f4b7280a99b18b5a60d3f14cfffdf7211198b0cade7127ca5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdb6622ca942e5283698a13df7349721b02c2b7b12363650204c859e08eddea1
MD5 445a50fb0ad6d9e1e8b249351f425546
BLAKE2b-256 2bccbba6b8319bdb2f5c36aa83acbf549ef7120e5fe5cf589a7939e669b5cb0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 caeed8257f271d68bf604c88691e3a798cc8cebd2a6a1fcb46700d90434cbce8
MD5 d8b09ebb1a9a5a7fd3f8e6c4439b5cfa
BLAKE2b-256 b7d2c58f2490f432ec845e78acc22ea99c474fffa48bea0ca0d331db203793bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 189cab234e942a17c067b9e3c98df26d7c0d5cae55f890c4458a0e63e815aad3
MD5 3b15b8c698f668b6654cd5c1d1410e89
BLAKE2b-256 d5b12af66496aa7716059bc3c6870c18f3d27b8a108e66b2e1888fc142e3f350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06f8afd31486ef121faa758172a93851ffafcbaf9e666314ecaf1c4c801c7776
MD5 1fc703d33eb9f4c42c12c919bf704c1f
BLAKE2b-256 87677bfa66ae32b324fc61b04ac8b0608363493df20ac20a86d8f9c935445f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b497279524835a09aeb25d9f29c7e914119c68312147f1e97271117e294f193
MD5 bd1e83f985cf023ae30dcd0b01e1a589
BLAKE2b-256 fa32a296dab78dd225115ebd5782bd8a9369d7eeb982aa2bbe3276a8b412cf50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61ef30354859f1b49059f1531b9aca77f2f6a335061b15a5c7ab2d25e59b7266
MD5 01a16dd9a7dcaef314bd5a2ecf78623a
BLAKE2b-256 72a852f6f0b773a03279b8d1bedd3e4bbda6fe556c8b905667a6d3f41c4ec3ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd699989fd692fa10e6aa7bfd6ccba9c7215f4cb2430114cca20a40829edf983
MD5 2e150012629c5b58dfa8f358cc68cce6
BLAKE2b-256 f0008ebc32e075579ab69b2cee81c147157a74982d10497678d6225afe6a58cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4e1925c128fbcbcb35e1e6563536d45c0b0345e820b23050eaa95fbdd49bf993
MD5 dff8cd082566a9295f34a830c932f7ff
BLAKE2b-256 6ccde421cb5dff3433e8008482ee866d9df50576a3393d00ea02cbbc93d41bdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6204c6cc6a6f0766fc22e37b4befe1dec7400b4f73f4aa65b6cb6c7464431e67
MD5 7308ab5c6995d68e63728420c6e1cf63
BLAKE2b-256 3a6734d32dd74d7ff90c46ac7fb47905fc8d0c52c19e03b0ff6854e7e988ff63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for aacgm2-2.6.0rc2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 413f9c85ef48022a3b8531e0542ac030e5e7b9c7a732a7887c898a1245e97a94
MD5 d61eda0e5d87ca63bd464d4a6cff74b5
BLAKE2b-256 f16f8145fa2dec0688ac5d4dffd6f973b33b1bcb9e4b9565c01127be9f9269f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0rc2-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.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

File hashes

Hashes for aacgm2-2.6.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fbee0f930daf2a09423746cf4bd6a9143739db03ea267b3b3739701e50ce29c
MD5 bdf62137efece0cbd4d7b7007c1838f5
BLAKE2b-256 af67ce14fb5235073d1b36cc70c77e1cbd504588339fcd48f294c7c336c02c23

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