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 (2020-08-16)

  • Same as 2.6.0-rc2

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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

File metadata

  • Download URL: aacgm2-2.6.0.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.4

File hashes

Hashes for aacgm2-2.6.0.tar.gz
Algorithm Hash digest
SHA256 7b283c043c49c284bcd3b0ee10e16e113c4aaa368caf34ba1e6681d07c3d7223
MD5 1f3a924cd12e1ee18e1ae7817d9440a7
BLAKE2b-256 dcc71754a1fcdf0b77192ce8ca09a253662885caa5389a20909a9f7551657c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9662389fbf416c3ad87f2fcfc83e638c428784361d1f56d6390985bb84514ce0
MD5 9c745e825f340589e56c7227ec0798e8
BLAKE2b-256 e0fd694fcbb3587f67720e1b77120582b746e68601577a08696e3f4b095ef24f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cb41534e4f5426a5d73960205f3825123049f7ef09ab6294b88a0aa0fe435868
MD5 3f59912b1000c6f166b55e0cd8eb5e80
BLAKE2b-256 ce6caec9be1fdd8502350393659de2824c219f1b6d664497c49177538bdd15fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aaa5610ae68459604e5a8b9ac678f4c6f3f93957718d8f1a206ad6935b772a8c
MD5 5cbbe8bb69d2a15fd270be59d32d5692
BLAKE2b-256 d5d56fa790b16d4d9cca2e435e12dbac74814bf2293925a113f23f8ba0fff1fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf66bf1e9a87e37ccb6fe12a81a44645b338e8375b3da4e7dc38f6fe189cfbd1
MD5 1847918bda3105c4fddbd3e4fd70c6fa
BLAKE2b-256 d5eb9aeae0e568f3a7015195ee5fba73f97d8d85beb5f07cafd34b4e6ab18142

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1f6721b3228c385595d505d61b6f83d1cbd7d1b56cd6572054d5feb7f2c6837
MD5 d46f42cfa5f030cfefe2f612e1186502
BLAKE2b-256 ed127f473ce9ff03acf3bb998bbf48ce73a78846f1ae3f2e0946e813051717cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8467eaeafdbcb967a74220949eab6f4e4576a99ff0f1147e283cfbf23c44996
MD5 61de58d4d22c94314a5edcab8c6db319
BLAKE2b-256 b1c9f23a39f09d7f80363d72f09d40b3cdb55f682384cd8f2616144cc9654fc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8187a6b03d8cd7d5b8a78fcfa6d542cea3369fbe90f56fa6951e31e6c01eab8
MD5 3a4b29dba5b1cc0085db8295d9e59759
BLAKE2b-256 58f1a818e1164b923940281576010975b2354a57201c88126daea1b0f8720ba1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e53b9b33e5dc2d3923831aa08f1e939005017005fa85e6f8027f0fa65851267
MD5 ec9c32e87d8e7a3e29748c21585cd243
BLAKE2b-256 cee4f9125833b8fe6f5e4d94c30c85621076e260b4fe88a9c5f211b6d103fe63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 80f0281436aa43b48bb7ce563124fca6d5ca8950e49d6fdafa19c6bbea6ea063
MD5 f060648b68c2446924909a0493c61362
BLAKE2b-256 a55e3ba682895082391622e6f5bcb10192efc73a709af1b030039f78f516b7db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5e8e087c653d0b001e300f191273462ca9e92a42939278cf36c64f7fe5710761
MD5 4879f4d1a5ced24f31991aaf945ee8bc
BLAKE2b-256 e72a81047ecb50f26a891f97814bca280ec6f666b04997944715e4ec67897e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db183645fff57e2e7c691084193f1488cc49f63fc2e123de4290300e3389a838
MD5 593ff475f346570d4f660c75bae5ac48
BLAKE2b-256 56204dfba7ab60d914e78133a0ed84982e7f62f283d545092dafd279cd7e453b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0f1e41671f5ef5a57b6bb11a6bf44ebb8c3038527056bcec419807ea5a65b6b5
MD5 42dc4f8e4964b736c70ec5d788f9154c
BLAKE2b-256 a4859ee6a75b2cf653ca1465a437fd77b1d15d6cdaba2ef89098aa61e7245922

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c59b92c405cb66c241a4282ab83086fb8d129607b36ffa7beb7fbf2ba528ac27
MD5 02ea108138f5649b045d9e24980d9782
BLAKE2b-256 ce48426fbee4a7c7f178be6bc0665585a7b7282cd5523c904bab8e17d683d274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 330ca67b0751dc9d1d5f7e2e6b0a0915f98ac0186d53a195028a1fcc6764c0cb
MD5 2065d3b65943aa1b11b50d6e2fbcf7f5
BLAKE2b-256 c6d6ff713c94b6fc8c5f9db18693718786337f461159ef72561b6327505f9fb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 158858d74a26aa9f1c2456ab5d4ddae9d2480bff146866a48f9fc64dd72d375e
MD5 11a8b5801e9406afae4ab3dadcbc082f
BLAKE2b-256 0c15244ab037cc22e39c0de83169f7c3b3e6f781e2f6b1e80c4de0afdb9a041a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 db66a7cb3bddcf59d73921c2e258f3999e6cf2fea5aae937ede33196225a6da7
MD5 766634623fd95ae9c6bacd8984c49957
BLAKE2b-256 75689b626060afb65414e077d76259f811a4f2a5c56233352657223616be060e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 20aed39033c6a2611651330db58c103cb4e7765de9c0623be818522be7dcac7d
MD5 783b32d98d5a3429393adac78c806118
BLAKE2b-256 a0ab76aefc905321926ba9c6628c876c73fa4678d64d7598c1b1a9b8c56da11a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 50179e9f4dbdd156ebff1359e7cc85091068454cfd4414b0fbff9f5df708822e
MD5 3e344a478d6b551e13e4c598220b1a4f
BLAKE2b-256 8dbfeeb87eabbaec2c5659bab2691e555d54182e8abd84e95fbfd2a25839ea10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 42c0d9c0cff76a7956c4870f845b51fe5a9a21d1e50077dc22c4916029a0168b
MD5 8a3114c11db323abce13ae4f8e993909
BLAKE2b-256 5c77734f35761e9e689b3409de1e1365c194999a18b07e0848260c785d4424e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 288c77920034d5bcb70e61c74a541e85d5cdca9c4fc53ef828f8bdb7f3c7f485
MD5 fa5cdf809c62b66e546e7f5bcb60c6d0
BLAKE2b-256 984b1148c1025497740c1120c54e44a643f7a0bce194082c75887a82778802c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aacgm2-2.6.0-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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3f5a3da900e92aed629d880e4db332a4397af9dd5e07bf25be90165063c11f7
MD5 8a4d126aaa35bea4bb7eaef681ec18e6
BLAKE2b-256 27b73322d451e236dab04203a8d2a94417d0b9019fef855e3d649a69b7e08632

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