Skip to main content

MGRS coordinate conversion for Python

Project description

mgrs: Converting to and from MGRS and Decimal Degrees

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.

ChangeLog

1.4.3

  • Wheels

  • black, flake8, and isort linters

1.4.2

  • GitHub Action builders needed to be changed to push release

1.4.1

  • Fix install requirements #34

1.4.0

  • Alias and deprecate RTreeError #33

1.3.9

  • MGRS now requires packaging library #31

  • Fix wheel imports of shared libs

1.3.8

  • UTF-8 encoding for all strings.

  • Fix #29 implicit tuple on return of UTMToMGRS

1.3.7

  • automated building of osx, linux and win64 wheels

  • Migrate from TravisCI => GitHub Actions

  • Warnings cleanup

  • flake8 validation

1.3.6

1.3.4

1.3.3

1.3.2

  • Better Windows support

  • Bug fix for 3 digit longitudes

1.3.1

  • Python 3.x support

  • Allow user to override precision in UTMToMGRS

Usage

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.

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

mgrs-1.4.5.tar.gz (31.3 kB view details)

Uploaded Source

Built Distributions

mgrs-1.4.5-cp310-cp310-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mgrs-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

mgrs-1.4.5-cp310-cp310-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

mgrs-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

mgrs-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mgrs-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.5-cp310-cp310-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mgrs-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mgrs-1.4.5-cp39-cp39-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

mgrs-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

mgrs-1.4.5-cp39-cp39-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

mgrs-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

mgrs-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mgrs-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.5-cp39-cp39-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mgrs-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mgrs-1.4.5-cp38-cp38-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

mgrs-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

mgrs-1.4.5-cp38-cp38-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

mgrs-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

mgrs-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mgrs-1.4.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.5-cp38-cp38-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mgrs-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mgrs-1.4.5-cp37-cp37m-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

mgrs-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

mgrs-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

mgrs-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

mgrs-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

mgrs-1.4.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

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

mgrs-1.4.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mgrs-1.4.5-cp36-cp36m-win_amd64.whl (24.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

mgrs-1.4.5-cp36-cp36m-musllinux_1_1_x86_64.whl (52.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

mgrs-1.4.5-cp36-cp36m-musllinux_1_1_i686.whl (47.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

mgrs-1.4.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

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

mgrs-1.4.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.5-cp36-cp36m-macosx_10_9_x86_64.whl (21.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file mgrs-1.4.5.tar.gz.

File metadata

  • Download URL: mgrs-1.4.5.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5.tar.gz
Algorithm Hash digest
SHA256 99e0007d417042009595665c3ef2214bb51b07aefd061071ea101e9bed6b6d01
MD5 736cd4d521e92b6d519476f7b561b6a9
BLAKE2b-256 dd55b5a775225d4994901f5d2878408b32de0ba7cc52896d2e6e5409e2cb4170

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fcfa7295a64251fc116bb51170468b77d2da0ff523df8867df89ffd67cb0e90
MD5 fee51db374bf52afca810cbaddaed4ad
BLAKE2b-256 52d45cca2f6ac348c016eb8d6640592eb8d26ff4f35208fdb7f94935307b4559

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6c90bdbc252d56d048c23b143ac0a5650420942bf39c74d005c0582c901e448
MD5 b6a104125f779da438cb78e82fbc81b2
BLAKE2b-256 5f7e8c6396d194ab6f58a1d010eb21266900b298af9d49f4420f5c7eeec2fb4c

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 affdab5922d76ad61288c843ae3c67f80bc84858f97b03a589ee9fa70a334bba
MD5 07520412df067f255322e72aa6c1b0a8
BLAKE2b-256 0dc38c56e609e47e0e3573f670e770dab7324d81a1e270f42f207a90a3f3d692

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75d7724f6ad216c8e4735ef9a5829cc34452732d26fac97f4b8487492c35fa29
MD5 f12e0f1bc70aea49db6377347e97593c
BLAKE2b-256 0eb1e66aade086710847243c97bebe5c841707a82b7c9c6dc8ca734b065a3048

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79f6e886fd57b6ce50f5593032a8a31a1782643ed6610a038c83b8427ae418e9
MD5 0e137177e4eb7c71fa29e696cde27b86
BLAKE2b-256 ac529eeb80b5b64010ce014c9ef623c73c1bc44ed6494a2126f90bfe0a290375

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71c1a997563aba770c848d3adbf0bb5428854fecb6f828ca934983b028d289f6
MD5 eb1785c1447a702db3db8bf7ff1cfc2f
BLAKE2b-256 09902788afbd4b539a99fad66d8c2dbddedf0dac0d59df4b982d07aaee1d6e0e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05427c0039ad11736e8e5e575065a477e8ed7e888ccc591a02a74e1766bf22d3
MD5 eacca3b39690db74463dae16ddebc6f7
BLAKE2b-256 e6366646049c21a389f0dd987901337124aa8c681c06a6119b89f105106a5a6d

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 785e4dfe8f0919cd2b0794858b588144eab0f7f9238bc29255b8255bac7fe41a
MD5 fbdf5bff916891b4205a53df05ee6872
BLAKE2b-256 0a9dd356eb3f5d2b6e30c320df0c77158ea786aedcb5c3bbce1e84436b5f27eb

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e4b031c0efd58c29cb0d8bf9629b86c1dcfeeabc46d891318f16bb6fb50b607
MD5 338dd3efabb2207b2032e562347d1744
BLAKE2b-256 0eb4ae808e7c2a87a1aab46ad8f40f6728f47a2ffa9eec8cf0162551f7135eca

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9b5795caf4d58f54feb3f795178a2d3e07d152da04cdc1c53b57d86ee098627
MD5 f7d5ba7d66c238b23ed21a0e9d4ece2c
BLAKE2b-256 0071324c6bc23f33ef90bbfecec614aee23c1855e433a7bcca2fe4efc66b4a98

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9ed46fe1ee8b3b906bfdea06ff3239a996e21ef1b6f4fea10787bceaa7d2545
MD5 313620811b5787c4126b24ac19b9b6d0
BLAKE2b-256 c0133a84762d2b3a3e5f7e54a37cc651334fcc8dcb19d7725015c771e48ae4ec

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8c3a3c936195d05e4621487855e1c61e55ef52eb66df1539af8c140c29b585fb
MD5 9bfa34ef53d0b93a821471d4092d55eb
BLAKE2b-256 11e28ad97959c22580b1584bb50dec4f7d454b2190d725af991979d716471be3

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f32a6978d9cd00d47b20402147887f56327c680a18739afc6a0812199ef76550
MD5 f434b647882530a86780697dfe7b8a2c
BLAKE2b-256 f3e6e39ebfeadac136bd650d689bae0864f550de19bc8c7b14648803f7a0c1d6

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2531cb99151cdb126573ace69f5f40e00e634b8fa472b43903b071b0cb5ac1e7
MD5 bd1bb9ec1159b0d32f78df66b9520998
BLAKE2b-256 abfeedf2c44c818386b281040e8c1488ddebfcb978a0c5a03ae620523e14c85a

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d360cdd2e4fe1cbe2910ffaa4347e55d92e16e470726160de2aeb7b0322ca254
MD5 73b1b869f7e70fef1ebb9c8848e3e7fb
BLAKE2b-256 1a70570344c2c09c920ca62d94caa2dc4d919912cb9830ace7b451c76cd75d92

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c625393d1f3db78c95eca17aae0c8b6090c960a9578a2e0d97c2856b27c82562
MD5 231d55235ca6b7b24c6b488b47b739c1
BLAKE2b-256 0987d0b3fd956bbebc32e55d7102e14d2671427d6c3a0ae64e21b1fc6125552e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b70ec0d0b90a8e78603acf208166e20e31ae7f5bb07af1d23b69709485f352
MD5 64ffc700e880c4320bdbdc65a84362ab
BLAKE2b-256 0ca96a6b9ae070ae90715ad25a3979fad478121098e1a9a5898c306b1228ff18

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b76ebc3fc8db1b38c4789473664bd57fe1de045f18398a5f7fcdeb55c7807b85
MD5 e5c89c7b59fcacdc85471c3cbc8bf52e
BLAKE2b-256 bad51eb974a492d21d8bcaae8cc8f96360922b81dfb79ee23685c70c637150ff

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 80eb1ced499511ca010b079cb9ccedc0f903532f699a912897de456217fca3d6
MD5 b0125f34da99b7464b3b725051a22376
BLAKE2b-256 344f72734f8f616bb778e4b7dbeca16ec45e896ef73a082f947fd3188b3a933b

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 721e0283b5f6d4c4fcede9810fe5ba266ed603e9323b89cf29e4a84b5c31c7a3
MD5 1afbe70b31983412d0c289a38d6336b9
BLAKE2b-256 17ee77e38a3f0f20342561d41fc0ee8046f9c40f217db8ebaee848a2e75e3ddb

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3b4ce9fe6059a917f25e029ffb49dbd020a48060155a82c3aec161cd66f4ea0f
MD5 d0cbb37d57acf16c121fa8f172080f06
BLAKE2b-256 abc879f862eff200781a087ccd3efe3fe956689511fffad3971a1d702caa78c7

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6f83cae1dc635781980fd298253e5ac1b4b3d9ce8ec4c392dece68cfa4db32d7
MD5 38928453ae4cdfaf47e02a1a428f73e0
BLAKE2b-256 8a5fcb791a497f946984034279b5b2b617fd507a5615ea8a3aa46577baedc057

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ce75b20dd247304b053559d231c31eb60216363ea32d46f0b7903a7865938bd
MD5 529c2bffe2dc9758db31020a48789ec6
BLAKE2b-256 a88915e6a628eec9473e2e9e8610226e129d4f2dd95b62626a1ed44374237487

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19928eadc0436dc772a0600632f9fd52a00b11f4b4873b8a5594e09ec9bef061
MD5 ffea35f35c523054d4da7084e79db6e1
BLAKE2b-256 6df0142d6beaf3d853d5b7e5b441c6daa636e6ebaf38fd6b5026f0414bea60d7

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4692d3fae00dc8eead23007dab160a10e824fa145c3bcdc43032b436b7af5a2e
MD5 3cc142f85dffee79088c76c5edbb12f7
BLAKE2b-256 c01bb4ad194ae6c92d17cf47f2a6c5d6180072ef46bfd0d094d8d178b3e683d6

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f255298d1a1df02db845fbb8468b8d0c71431129dddb0df11baebb2233154958
MD5 020b5531a0b3b1c47c007bc90fb9bec8
BLAKE2b-256 f54aa2e97db96ad62c10312ba53f92a65779b58bb3eabf6cdb30396a095c33c5

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d37d554df8b47caf3dc1579e7a03e6ef2f4daa802cd1792bf20c33181c9b4605
MD5 8e7295299d80e98ec6eb564e5adf2d8a
BLAKE2b-256 1feabe6514a5de29a7edc28750aad5b81a7699e8169bbfea5b699707b29a9ee6

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0803afe799740402c2c4d69791d91fead87d3ddd5aa8ae7f9fbbca11db1fcf36
MD5 2e198ea0f3cc5e7791a8a28ce0ffd686
BLAKE2b-256 6ac0462c2abbebbf7df87bd34042917a99473005344b6ea9e0463d3a326ca632

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66792ba3edb94054a9f3d1f51d2911e225bb6f1c1e938f85768f4d4b2d78f7ba
MD5 a9688a082beb213b13c635d941eb17b4
BLAKE2b-256 81abed1ca4c82b9eb6663ae733a5d57b0bbf63910dc843bf94f0cfee97fe0017

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3c420da9ab4d47ae57ae3fe045c46dcfc35dd1dde5f9f38af2b1b758c9ae15e9
MD5 cfb8064c79ee34000acb128dab7f46b8
BLAKE2b-256 97eeaa59dadd2066da8248c01693049ddcc959c47c43c34d8d66f8b8728a8ae3

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20bb5a891d04948f680a354f909788accd60c841d83b3bf94dbfd50002604278
MD5 5e3cd1cadf148bed067e2e4257bf3a5b
BLAKE2b-256 c04594961328c59acfef7b6601518739a4376ccd19c295379aacb6f0a627f7f3

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81816038c1caa2b48a627764084384b18ea915106c835c2444c1472d2b25db36
MD5 f0211d80d765f0aa1313a54f367b2ce7
BLAKE2b-256 ac8438234c192249b90a0668b588690979ffedabb7dacdfe0f900758c8bc8825

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87e5fc09bff644afbc1c256f138197dab3c557de9d99d1c7385289041a931a4c
MD5 c73da3f85ae43df5acfec8a4a66d2ac5
BLAKE2b-256 d44d5c6b8e824554727c8ea554484a01b12b1102415209e7bc68f6f8810ecfa0

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11e562e8dfc3eb8cf04aad30f85dbc6bb89624496376d02bdf1ffa50a7008efa
MD5 bfd1c6afc57b3a9541f71a0b8fac7038
BLAKE2b-256 9cabf19414d43dd93a3bf8360d81ff80d9006fdb857fad1874a36820c24aa2cf

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e53217ae8a2cfc457cefec494407c20ddac0f9ec0f2e202c85799428f0060586
MD5 03df37e06c6d396af427aefdcb4ba3d6
BLAKE2b-256 47f07fe1c6cbcfd74752f82c42ccea8b008c2f8062513681127fe230407dc3a0

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 08117f4b746a2f0a933b06e151950e9fa9315c05a1cd4305a21da499cf3051c0
MD5 f3303863e12e55799627f125e9b3da6f
BLAKE2b-256 98558c1923d9bea541a5594b14b053f689689d3564b45a3e23b2f834d100ab06

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e1354b9ac4c40166c4c3877806ce5aa771f3037e016a1cd51cf2ef6019ce019
MD5 8452128fd1ed1bca61b138affbd07a61
BLAKE2b-256 8c5d7b632c589c20617a5b878d620b1ca452d7bd2c220f28154aa03bdcc69fdc

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a089f5f1d6e956431e68d85e41cbf2ac1e8cda294cd90e1019ec9c96ca045db3
MD5 3dd0057525c3b66a047e24e3cb5b93a9
BLAKE2b-256 7953f20fb40d1ffac0805fa66ea3cbdbd7efde327ce68489595eeaf93fe245d5

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d71aed1570fed476d3b932327ec024eacd390ce1138c14cbb0b43bfbc9a9ccc
MD5 f1748e66efa97c3d6e374e34c2e166ee
BLAKE2b-256 9b3f7c3708aa124539ef3264e6470352e6dbbb55aff4a806625b946ad7b35a1e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a59f557a104802b9bee97f78ddae453336d1d3c9125eab0c36e67094a79adcc
MD5 3461682acdfb20cd369eee43f7abb380
BLAKE2b-256 16ade7bc09d8c922c5b2721e7e982cc66cbb2a674243b692609502992f91c20b

See more details on using hashes here.

File details

Details for the file mgrs-1.4.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a63c32e1fecc58fb8af658624a3ed64d42291105be1b5564de6c5ce42c96431
MD5 eaceebe28e40acc395e6b08d793253ae
BLAKE2b-256 0806b445ff626a3fa13c133660ed3814d9afb53bf5b5c2897dedcf62b80f4c62

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