![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
|docs| |version|
This is a Python wrapper for the AACGM-v2 C library <https://engineering.dartmouth.edu/superdarn/aacgm.html>
_, 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 <https://pypi.org/project/aacgmv2>
_
(github link <https://github.com/aburrell/aacgmv2>
_)
provides the interface compatible with aacgmv2 < 2.4
.
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.
https://aacgm2.readthedocs.org/
.. list-table:: :stub-columns: 1
* - docs
- |docs|
* - tests
- | |travis| |appveyor| |requires|
| |coveralls| |codecov|
| |scrutinizer| |codacy|
* - package
- | |version| |supported-versions|
| |wheel| |supported-implementations|
.. |docs| image:: https://readthedocs.org/projects/aacgm2/badge/?version=stable&style=flat :target: https://aacgm2.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
.. |travis| image:: https://travis-ci.org/st-bender/aacgmv2.svg?branch=master :alt: Travis-CI Build Status :target: https://travis-ci.org/st-bender/aacgmv2
.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/st-bender/aacgmv2?branch=master&svg=true :alt: AppVeyor Build Status :target: https://ci.appveyor.com/project/st-bender/aacgmv2
.. |requires| image:: https://requires.io/github/st-bender/aacgmv2/requirements.svg?branch=master :alt: Requirements Status :target: https://requires.io/github/st-bender/aacgmv2/requirements/?branch=master
.. |coveralls| image:: https://coveralls.io/repos/st-bender/aacgmv2/badge.svg?branch=master&service=github :alt: Coverage Status :target: https://coveralls.io/github/st-bender/aacgmv2
.. |codecov| image:: https://codecov.io/github/st-bender/aacgmv2/coverage.svg?branch=master :alt: Coverage Status :target: https://codecov.io/github/st-bender/aacgmv2
.. |codacy| image:: https://img.shields.io/codacy/grade/2b9d243afe654cb0a70c31544444c774.svg?style=flat :target: https://www.codacy.com/app/st-bender/aacgmv2 :alt: Codacy Code Quality Status
.. |version| image:: https://img.shields.io/pypi/v/aacgm2.svg?style=flat :alt: PyPI Package latest release :target: https://pypi.org/project/aacgm2
.. |downloads| image:: https://img.shields.io/pypi/dm/aacgm2.svg?style=flat :alt: PyPI Package monthly downloads :target: https://pypi.org/project/aacgm2
.. |wheel| image:: https://img.shields.io/pypi/wheel/aacgm2.svg?style=flat :alt: PyPI Wheel :target: https://pypi.org/project/aacgm2
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/aacgm2.svg?style=flat :alt: Supported versions :target: https://pypi.org/project/aacgm2
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/aacgm2.svg?style=flat :alt: Supported implementations :target: https://pypi.org/project/aacgm2
.. |scrutinizer| image:: https://img.shields.io/scrutinizer/g/st-bender/aacgmv2/master.svg?style=flat :alt: Scrutinizer Status :target: https://scrutinizer-ci.com/g/st-bender/aacgmv2/
FAQs
A Python wrapper for AACGM-v2 magnetic coordinates
We found that aacgm2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.