Metadata-Version: 2.4
Name: mgrsconv
Version: 0.0.6
Summary: Package for dealing with MGRS coordinates in Python
Project-URL: Homepage, https://github.com/nousernamesavailabel/MGRSConv
Project-URL: Issues, https://github.com/nousernamesavailabel/MGRSConv/issues
Author-email: Jared Polack <jaredpolack@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

Python code for converting between decimal degrees and MGRS. 

Functions:

  dd2mgrs: Decimal Degrees to MGRS

  mgrs2dd: MGRS to Decimal Degrees

To install:

  pip install mgrsconv

Sample usage:

  from mgrsconv import *

  mgrs2dd("31N AA 66021 00000")

Sample output:

  (True, 0.0, -3.976393174348989e-06)

  "True" in this case means the conversion was successful, the coordinates functionally represent 0 degrees latitude and 0 degrees longitude in decimal.

Package available here: https://pypi.org/project/mgrsconv/

GitHub: https://github.com/nousernamesavailabel/MGRSConv

Planning for next version to include DMS coordinates. 
