
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
.. _home:
GeoTrans_ provides C code for converting to and from MGRS, but well, it's C code :). This is a simple ctypes_ wrapper around two of the MGRS-related functions in GeoTrans_.
This library has an internal copy of some of the files from GeoTrans_ 2.4.2.
.. _GeoTrans
: http://earth-info.nga.mil/GandG/geotrans/
.. _ctypes
: http://docs.python.org/library/ctypes.html
1.4.3
1.4.2
1.4.1
1.4.0
1.3.9
1.3.8
1.3.7
1.3.6
1.3.4
1.3.3
1.3.2
1.3.1
In a nutshell::
>>> import mgrs
>>> latitude = 42.0
>>> longitude = -93.0
>>> m = mgrs.MGRS()
>>> c = m.toMGRS(latitude, longitude)
>>> c
'15TWG0000049776'
>>> d = m.toLatLon(c)
>>> d
(41.999997975127997, -93.000000000000014)
>>> y = '321942.29N'
>>> yd = m.dmstodd(y)
32.328414
>>> d, m, s = m.ddtodms(32.328414)
>>> d, m, s
(32.0, 19.0, 42.290400)
You can also control the precision of the MGRS grid with the MGRSPrecision arguments in .toMGRS(). Other than that, there isn't too much to it.
FAQs
MGRS coordinate conversion for Python
We found that mgrs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.