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.6.tar.gz (31.2 kB view details)

Uploaded Source

Built Distributions

mgrs-1.4.6-cp312-cp312-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

mgrs-1.4.6-cp312-cp312-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

mgrs-1.4.6-cp312-cp312-musllinux_1_1_i686.whl (47.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

mgrs-1.4.6-cp312-cp312-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

mgrs-1.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mgrs-1.4.6-cp312-cp312-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.12 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

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

mgrs-1.4.6-cp312-cp312-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mgrs-1.4.6-cp312-cp312-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

mgrs-1.4.6-cp311-cp311-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

mgrs-1.4.6-cp311-cp311-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

mgrs-1.4.6-cp311-cp311-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

mgrs-1.4.6-cp311-cp311-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

mgrs-1.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mgrs-1.4.6-cp311-cp311-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.11 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

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

mgrs-1.4.6-cp311-cp311-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mgrs-1.4.6-cp311-cp311-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mgrs-1.4.6-cp310-cp310-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

mgrs-1.4.6-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.6-cp310-cp310-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

mgrs-1.4.6-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.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mgrs-1.4.6-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.6-cp39-cp39-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

mgrs-1.4.6-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.6-cp39-cp39-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

mgrs-1.4.6-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.6-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.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mgrs-1.4.6-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.6-cp38-cp38-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

mgrs-1.4.6-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.6-cp38-cp38-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

mgrs-1.4.6-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.6-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.6-cp38-cp38-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mgrs-1.4.6-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.6-cp37-cp37m-win_amd64.whl (24.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

mgrs-1.4.6-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.6-cp37-cp37m-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

mgrs-1.4.6-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.6-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.6-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.6-cp36-cp36m-win_amd64.whl (24.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

mgrs-1.4.6-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.6-cp36-cp36m-musllinux_1_1_i686.whl (47.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

mgrs-1.4.6-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.6-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.6-cp36-cp36m-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mgrs-1.4.6.tar.gz
  • Upload date:
  • Size: 31.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6.tar.gz
Algorithm Hash digest
SHA256 c9489623eab97a9d38eb2fe563a3e9e813694760ea240d055c49b18ed30a7676
MD5 0e7198fc49fa94242276d31e88796a07
BLAKE2b-256 22a13b307ed515cf66ab5487b9d5c20ac600da05c8ea753d949f8c6559027409

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34fe8e66e2c85ee638605d0b21a73413f9c78af14c3345aef3d3fadba6975ad9
MD5 5cc53e4ad05b8e88625358856956240c
BLAKE2b-256 7f2b1d015687c384639f2922bba0fe1bfd32a9cb5b2d11bae50a200e8cceaa27

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 671ae65f68bc3ddb899cc41bcbcbb1cf126ab474ea6a71087f6bdcc350bc223c
MD5 a3b94a24b065e1650f1c334a7a00baaa
BLAKE2b-256 15ba0e76f502e38bc53bb28d384580ca358e772a98962a99414a97eb6c9eef2f

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08b587ba3e54f91bde1579ba78e35068815abc026ccde80b26ba90c4755ffa73
MD5 578593724e81600ab9c216ed983eedbe
BLAKE2b-256 d2af8d56e26b14f7c36079370df61a39c5ac280a77b00d96dc6c0bec6536c4ed

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a2f2c928436be3a7e3409dae9be29f0d74abdbc43556b250a74155cf93d750d0
MD5 b43b21dd80ffd00fe248c7f1ece2d384
BLAKE2b-256 f94e97f7fb657464515e15535ae34d7dfce6ab7b3f13d6755de2f5049815c239

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4a06aeff6195d2a2b9b127d7731829728189927a1e5464bed3f69946d4f7ab9
MD5 8a626ecb410771425cba85e301e897ad
BLAKE2b-256 a7f915738dd7e93ad80d63e5561c54b6f4ce6bd02fce4da8c5e4b704c64b9b83

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-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.6-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 069629f7af6838bdac0496d6c99d1eb8babfdd65ebcb4a8f9fa93d66225e4567
MD5 d086dfb6ccfa29341b1819c3896aa19b
BLAKE2b-256 bf788257801cc24102a4368c311397e3418e4e4b5014c79e18b82ad1065a901e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5cac1f0241f95e87a1bccf64875132775d35f34a42ec7e77edc051210a45c6e
MD5 b6b4ab2d96741b067519ae2e36acd7d7
BLAKE2b-256 023011f1e6fdfd579c756edeeade269b18af8a4b8610763c1c04bfcfa4751eca

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb3d3ed7b62b09b5b374f7734bcc29e98727df7d439bb9d5840c694ed40f0cb1
MD5 65082af71d4b52437e96d8a9b01bac82
BLAKE2b-256 e248d38ca0abc7e95a42c5cfe44f065dd42fa27749ee65fdba9ce78f8ab48a35

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea0dbea6e32fa5aa3d666046fb2c75e35a853597d27dda0381450863da9d814b
MD5 45d5092d1b7b41107cea3dcf076dffd5
BLAKE2b-256 d90e2d7b16ce42b1f108b5c317627bc39191000314d945ed1c21745bbfc7f53b

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40b576b91e8509ba541a6b17cdee570677685d2eab706ce4a8129fd55ed1208c
MD5 3acd0b807a5e55b02a7b08fcafa5af75
BLAKE2b-256 d69ed0bb975eaff56767505205eedf1081d73889d1d85aba6378d92a84436b40

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b79bb9b235888afd711c733dfa62d90ae698feff5eda082c9f8938ff50fb2071
MD5 d684b74cb88b252ef86db46f9d703008
BLAKE2b-256 5819daea24f1dbd70776c7702521a5182b5d7be73d62964feba72a9aec914edf

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac7e7cb67bb2d4dc719529b9a5b6383f1ac958d1766036f43a06271b6fb32502
MD5 c975ed5174e45f94444392d56050e03d
BLAKE2b-256 79384a5330f22c45fc8a5d46101ff0b39f95c4cd23429057ec808cadc764a727

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 339ca001cfbb3c0fa4aae5c63a3505670d1209088e400b40041a84321ef29792
MD5 4680fded0793d091a55e2d1059e8b428
BLAKE2b-256 4771d3269b49dd4cd0ca7455ab5a7c3ff26e40d47affd7f8844f3c7af1f41b52

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4fad0cee7e86ff67ecaeed13fb039adbad20dab423c82c3a48814b9512a2b44
MD5 ffecefd861e01b51a7c17f26d506773a
BLAKE2b-256 91d597ca360976c35161f4f49a0835fe4560a8ed3b0b01114917f2cebf5e0e34

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-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.6-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37f850fde242095c6ecec6f5697320cbec6baa058f1f06ef2045882aa697cdd7
MD5 550ccecea71e9bb54938bbe650843c4d
BLAKE2b-256 3d11b9efad774310ab7a6a0b98c6ec0334a9b485b4a6ac59242e0336db898208

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01a2336e143345b9f6c8eef08759aa5aefd5c1f12d9775315ed4d91d71d5d04a
MD5 3b5ec9c85636afecb5fc41e99a511f49
BLAKE2b-256 2e4ef915733511e8dba68eac746e8e98401c3fb5058eb9ab8e7060af6618e0d2

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebb8aefde8266d15038471d82c1bd91c8fcbe36e6eb5d05560bc475008bbd2b0
MD5 46ceb535958f009bd508a7f249b49653
BLAKE2b-256 95646b2f560414ae618949133f86bf7ae112918135931aaa519618391c5b01a5

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f2369bb545a598b1e75261cf79823f0daf0d6842c7df036d389bb832a2bcc83
MD5 a8c742c9e160eacfdf97e6caf17612ed
BLAKE2b-256 bedaec4dd6c7c277e6f8ef2f200f6838330b674171e834e14d45585ead0a2ca2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mgrs-1.4.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1be211a198faf6a12993926e1f292166ab40601c07b70827b0d90ae55b4fa4fe
MD5 99c80fb51b07b1fb311ebb11c2e7f7c4
BLAKE2b-256 abeeb1d025a645c61887541f526a52d82c54fa3cad04404b39133dffa7fc277e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 876f6e4de1dd744591a56417bfa1afb77935d7d38fc27cb36c3387f70eed6c31
MD5 3829d7e97b94891f5c21c8a56e4ec84e
BLAKE2b-256 7d1566b4293208f1c0cd11ed3e8010c118dc82ae38ae7d298072020a19d4efe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b1f42cf21e3f343ac8c1e3e7349f17843622ce4d63381a9a96d6813f6f59da84
MD5 434e12b269ec1ecfaea5a7887c560e07
BLAKE2b-256 ee2e147af410ae132c019ad55ef27d438f0452d52c3ecccff1ed177cc8002355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d16cbbf940027f8a7318f9a7afb801887b0915f61353ca6f8f085911caa7b56e
MD5 e328d1dc6ae46aba00ccda2dfcd3ce85
BLAKE2b-256 325935d1362d351c2d499315f02cee789fcb3acdff5083ad785dad90af4e1559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 002568c145b0da9330314b17846b5d424131c5ffad5137951d6eb7eadd4d53be
MD5 afdbab17b8de3b6a22ec6e1b09995753
BLAKE2b-256 a3146cf47eecc1d2d6a913e7c2459f10c0b56c8f6932f37765de08cf172cc605

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-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.6-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de12498a6ac06c59ba724223208aff786154c4efc1ea31ce62d6352e9ecf4c9b
MD5 dc35506fef5dc9d9c6895681350200c4
BLAKE2b-256 5b4a59e89cf34c4a6777397f0ae11716256794d3e1bea652fd1fc655e31cb7ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1179dc9cc585de73e719492d0bdda9bc340a5361aea8c75dbbfa2785928dc9a
MD5 a4da20d05a023ce25b9756dd92b1b022
BLAKE2b-256 e15fa7ae1542e0c5e818c3044832276376a6f37fd768433b58a456bbe2f47785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23bc65fe870f905e16c36b26874c9d12c529662d12ffad128b06da595f2f9dac
MD5 d84ff68035f43225fff95c46a3fe6a3b
BLAKE2b-256 10788d682164da883209d2e94ab1c6fc320b56ef12ed13d967d380d353e91b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c723a59d08e184018ab673ffc009bb8725d7e147d80dc686c122cf6779c9f29
MD5 36a9532746efb4c42e13b09b42e15eb2
BLAKE2b-256 bada94e378c6003f943aad65b7a8a63d8fa37710b8d00c7b0ff9ffcc06e5f3f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mgrs-1.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3317917aca8d0e4dbaf83effb029d12b733aa25d0616d5a4796032fe0a7662ca
MD5 859abea69971a225283f3f92a383aeec
BLAKE2b-256 2569ca85c7f54004a4f8188bcbbb8c4237346d3b87195f0abfcaface0e68bd26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82700f1d5e2fa170abf6ecd4e46ae52870cf192ee1d782d8140c5c1d7a78141a
MD5 0d42867693a9208af31b09c24d6ea8a4
BLAKE2b-256 b07064c0ab1aa91573c53442b40e9591e505a557b627594f5790007011ca682d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe7a573ac0f720e95c4c697357451c10b892469abc177799cae19bcdf802190d
MD5 6d73ce9e7b11876ac2ed88ee8684a640
BLAKE2b-256 9adb0b49bcd452fb563d04f5287092ae37e07b1759b113e78e8229c785af14c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f74ee6cdef2a3f63116165fbe6d15c5285c95b38f56bff33d8d4f9aa0cef2f83
MD5 927da6e693539bfe2ad1261d16a255ac
BLAKE2b-256 59c6666481cacfe59c6905a6eb690c65ea032af29b5ef752cbf20ea9331ff25a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5a4ddc8aeded32e12d485159d54d8c13dd28a07b21f63af3961cac29d38ae1a
MD5 61716cb73fb2a33bfd40ac85d26b6194
BLAKE2b-256 98e210751b91ff9818fd5eede8d55b366e4de43a292f2b7d4e023dac2de1a92c

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-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.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1292e57972a094cc16b0b9c2ada53caa37bfde11b8df8934c4a0b1a5297c2403
MD5 6fa3a54313f3244214513cece7596cac
BLAKE2b-256 3b61557e6a48fbb948d0f0865ae25c420db5632d1adecd3417e4cfadaad51f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd4a993642291dc1f39d5125b8d05eefdd242923014cba1c4ffc5ea1940a647d
MD5 c0bf8704503e5201ff111df495a35351
BLAKE2b-256 382736f4b4edc40a839d70dba0c89a19da29e93d682745a05d2a8ba9e43b6857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b04f97b39873916e101e4faec5756b5e813a17b96389dfb752bbd149e4c07cb
MD5 d266e5d3553830dccebb632607456c10
BLAKE2b-256 5fe43af356301444cae7e191785ebb876bc11fe0167c5ef5b82faec308766f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 426ed7880254d1d423b8559ca368117122f79822bb2b4034b5bbb7338362b85d
MD5 4ad53996aeae0a31e567a27f800c7dad
BLAKE2b-256 9940e57e7e20d867978d96259a170b0b6820e9e37d515cc7e1232653922267d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mgrs-1.4.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 872cf181d4d206f77f7a91faeeeb439b44a531b04e21bbf859ae530ead2e4c57
MD5 4b41a2be766b5743cbafc255082eebd3
BLAKE2b-256 5499f81caf5d0ac6f3330cdbf305c52f5cd177823c8b174806663da681abfae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5933cdc53efd78f9024741660890485f6b3a17b54a86a27d01822ceaae1a4282
MD5 e2426c2c3a7f335e49574abaeaa5ef1f
BLAKE2b-256 06e4e523d01d3af3b862b7d81f09adb4d684b1783a735558e1be1cce1617b13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da2049d664b63df7a379eac99319739c4da83496795d4fc71788dfd387a8b7b9
MD5 0d2528d15af010e6ec2882516c2c436f
BLAKE2b-256 3a8c70dbc0b80411b1255b09ed82c4bc1f624b3b97fd32457be2e9f9d9eba05c

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-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.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b944dbdbfaa312105899ba0e546e6d7364581243129023839c55ba2c0fa63fa
MD5 b56f1afe504734105cef89a13c0522cd
BLAKE2b-256 9501893e8257d93dcaa23e85a98c62eb1689dd286126467df05086f86bbc6481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3be07c2edb89b0fb5e234e1aa84f7f3bef219daded3d759ad438e53e8fc4453
MD5 c2cd820c99e7fc9c4c532ec19b485fa2
BLAKE2b-256 8deca6789a5168db09f6f6826873f9ac7f639ca4207ff7da1fe3e2f7d5af349a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce945f7a9a43022b8ef858143580904455c550ff5094b4486d0569c6f7d74d2
MD5 dc58fe494dac33143e2503a382bcc344
BLAKE2b-256 f55775889ccf6fc3229b0dcb4439ed87b2388e93dca5071372aff9038ee3233f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e593ad33bb63ec6f36480f4eb3b1549d6a58eb6d55c18d1e5f7a46b609c6e70
MD5 9f1c461a39a0d410ee8eef04a2420486
BLAKE2b-256 8a68796af6a867ace46b6e7f2a8fd2386acb2520fd4435335736ce097faefe41

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mgrs-1.4.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 afcdea7da43602b78271bb5896db2b5279c6f397e7a8d58a2e03f75de77c66ac
MD5 45e5b4540bbe901167909231903a14e4
BLAKE2b-256 50f45fd39dec57a68b0ba786ffb037f4c24c47c0d2bc9bf0615bf2c398c792ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ec13977408e9dd4af4aefd53853a5b697f52e62f65ea7213ee9d8947bda561b
MD5 2fd20c648760070a070c20923ac5d2df
BLAKE2b-256 8800bc47b72fdc054797693356cb83cea19ce635a5482c7e09349a24acad81fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 532b4e4de91b04876a0a769e775dd1a8c5f4c93e0dc7647eea8e29c76d7e5477
MD5 43df2de2ebe0ceb7ea67f42995a2aa9c
BLAKE2b-256 4a70083ef61e524eccf105e6be17910c6f5d096f9575df3b5918fe46c7852bf2

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-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.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4c3a702b44f84afc23ca5cb52f2a5530b859dd224119f55a7417e502bbc180c
MD5 11da9a035495212a40ead0c8c2eb3ef9
BLAKE2b-256 6f3bd99a92e732d2c868a24d2db64751f0f269b0bf1b9d2d2c848d5bcb2578e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 841bdcaa1017069d38b72b4ed8f398d9c2a77dd4715c1ba90921109554e9aac7
MD5 38482aab50ea53e8373bd7c1f06ecaeb
BLAKE2b-256 3b0c9eb45b5c852a435b4fa3c31a922e2290f89c35da53a25c9cb8fc1193cd74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fad4685a06e6b1cec680373c02d0966fb2d11efbbda2b42a916f7ad6134d1662
MD5 a6fc03f33190bea785deda82a5f9e3ad
BLAKE2b-256 6a80e3334b397e229201dbef130e1f7d63b6c35801e804154272958d8c9e76ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mgrs-1.4.6-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.2 CPython/3.9.18

File hashes

Hashes for mgrs-1.4.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 67f52ffde8d269d843297f470ef47d18e368b623e123f58705f30349daea2f65
MD5 b7e8c1b6efd4ae65f839a68e6433095e
BLAKE2b-256 0d642bd9321807b8f9f432f5fa73f7e1613b5b6144a3dcbd75066cf4cf0297a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38861057e5f72970f31400ee54b29dc5128444aa3edd2581a1e7285ebee60a94
MD5 24231ab94c223862f2cef428519ad9e9
BLAKE2b-256 68a55a2e6ee49ffc94f0ba310b72fba39f0d6c5a464738d418bb2abd0bfd9262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bbfc150e751fb4cc000f3da55f2a50c591395a3548e9420e33e34c29d244e41c
MD5 20583e2e408d7c8033e019f42480d72c
BLAKE2b-256 f08cf2b6f8974aa78c1e49047729b6d8ad1070110f0b291b61b6b741b92c93f1

See more details on using hashes here.

File details

Details for the file mgrs-1.4.6-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.6-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7711d254422851ed595c264477411ee232780c34c3523ba2d8a7796682879855
MD5 ce23d00d307f9483731a7ba72ab5e4f4
BLAKE2b-256 fa9f4457f3563451c6a4b15b8231224e90e6f67ed25e1238307921677030c449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7300384809cc9d5cdbdb7a0b853f2ad8511a1d4f38539ac361c885fdee26d3c8
MD5 422179a784decf8af21ff235f3660bd5
BLAKE2b-256 e3ff71f5e64e4183c38dd74a1493a3ff7a60b2c7eaa18303f8b96de288e57050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mgrs-1.4.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536b4f5d244eafcbcb1f77a2a8f02b04a4fbe1a2157986c7e28a24ca75d2711b
MD5 537df414f2953ba734b21d5b799422c7
BLAKE2b-256 6157b211ac7e62c9df8f1ae54d80c9d0eda9551a943ecd485df483045a942eac

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