Skip to main content

Simultaneous localization and mapping (SLAM) tools in 3D

Project description

slam3d

Simultaneous localization and mapping (SLAM) tools in 3D

Python Wrapper

Currently implements particleFilterLoc. Supports Python 3.6+.

Installation

Install the slam3d package from PyPi:

python3 -m pip install slam3d

Or use the source distribution or wheels in the latest release.

To install the latest unreleased code, download or clone this source repository and run the following to build and install:

python3 -m pip install .

Example

import numpy as np
from particlefilter import ParticleFilterLoc, setSeed

# If deterministic tests are needed, call this before anything else
setSeed(123456789) # Argument is np.uint32

pf = ParticleFilterLoc()

pf.depositVio(t: np.float64, x: np.float32, y: np.float32, z: np.float32, dist: np.float32)
pf.depositRange(bx: np.float32, by: np.float32, bz: np.float32, range: np.float32, stdRange: np.float32)
pf.depositRssi(bx: np.float32, by: np.float32, bz: np.float32, rssi: np.int32)
pf.getTagLoc() # returns tuple: (status: np.int32, t: np.float64, x: np.float32, y: np.float32, z: np.float32, theta: np.float32)

Development

To install for development, download or clone and run:

python3 -m pip install -e .

Source found in ./particlefilter/cython.

C

Source found in ./particlefilter. A bundled version of MUSL rand_r() is included for Windows builds. Force it on other platforms with -DPF_FORCE_MUSL_RANDR=1. Precompiled shared libraries can be found in the latest release.

Shared library

gcc -fPIC -shared -o particlefilter.so -Iparticlefilter/include particlefilter/src/*.c -lm

Or on Windows with cl.exe:

cl.exe particlefilter/src/*.c /Iparticlefilter/include /MT /link /DLL /OUT:build/particlefilter.dll

Development

Compile tests with:

gcc -o build/test -Iparticlefilter/include particlefilter/src/*.c test/test.c -lm

On Windows cl.exe also works (from Development Command Prompt):

cl.exe -o build/test -Iparticlefilter/include particlefilter/src/*.c test/test.c -lm

Compile and debug tests with:

gcc -o build/test -Iparticlefilter/include particlefilter/src/*.c test/test.c -lm -g
gdb ./build/test

Tests

Both test/test.c and test/test.py implement mostly the same test.

test [--nofail] <test folder> <output file> [expected file (required without --nofail)]

The currently provided test folder is ./test/data. --nofail will cause the test to always exit with status code 0 and allow omitting testing against an expected file (by not providing the last argument).

When running the C test, some expected files are provided in ./test/data for various operating systems and compilers. When running the Python test, you should test against the output of running the C test on your system. The Python test will also for some floating point precision deviation. Since the Python test tests each value individually, it is impervious to CRLF/LF differences.

License

Copyright (c) 2021, Wireless Sensing and Embedded Systems Lab, Carnegie Mellon University All rights reserved.

This source code is licensed under the BSD-3-Clause license found in the LICENSE file in the root directory of this source tree.

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

slam3d-0.2.0.tar.gz (6.8 MB view details)

Uploaded Source

Built Distributions

slam3d-0.2.0-pp38-pypy38_pp73-win_amd64.whl (23.3 kB view details)

Uploaded PyPy Windows x86-64

slam3d-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

slam3d-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (24.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

slam3d-0.2.0-pp37-pypy37_pp73-win_amd64.whl (23.3 kB view details)

Uploaded PyPy Windows x86-64

slam3d-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

slam3d-0.2.0-cp310-cp310-win_amd64.whl (27.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

slam3d-0.2.0-cp310-cp310-win32.whl (25.0 kB view details)

Uploaded CPython 3.10 Windows x86

slam3d-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

slam3d-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (29.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

slam3d-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

slam3d-0.2.0-cp310-cp310-macosx_10_9_universal2.whl (56.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

slam3d-0.2.0-cp39-cp39-win_amd64.whl (27.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

slam3d-0.2.0-cp39-cp39-win32.whl (25.0 kB view details)

Uploaded CPython 3.9 Windows x86

slam3d-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

slam3d-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (29.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

slam3d-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

slam3d-0.2.0-cp39-cp39-macosx_10_9_universal2.whl (56.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

slam3d-0.2.0-cp38-cp38-win_amd64.whl (27.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

slam3d-0.2.0-cp38-cp38-win32.whl (25.0 kB view details)

Uploaded CPython 3.8 Windows x86

slam3d-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

slam3d-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (28.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

slam3d-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

slam3d-0.2.0-cp38-cp38-macosx_10_9_universal2.whl (55.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

slam3d-0.2.0-cp37-cp37m-win_amd64.whl (27.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

slam3d-0.2.0-cp37-cp37m-win32.whl (24.7 kB view details)

Uploaded CPython 3.7m Windows x86

slam3d-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (127.4 kB view details)

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

slam3d-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (30.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

slam3d-0.2.0-cp36-cp36m-win_amd64.whl (32.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

slam3d-0.2.0-cp36-cp36m-win32.whl (27.9 kB view details)

Uploaded CPython 3.6m Windows x86

slam3d-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (127.3 kB view details)

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

slam3d-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (29.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file slam3d-0.2.0.tar.gz.

File metadata

  • Download URL: slam3d-0.2.0.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0d4e72e0c4fb438eb5724b1c4f9d632f8583ed16fbb55dd8161c03ca9f630330
MD5 ff0eb9060f10ea0b67954054a83cc3e7
BLAKE2b-256 a20128e58b557c42e1e8881f69efc886d971468ef498ef2594a6eb8cc833b767

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 be071b5a1b62921da86b377f10718e77fa3509f8432cb2cb5ffe0bfe96400441
MD5 0fc9141dd1987f433b112aa3c0113669
BLAKE2b-256 be84837ef2a2bfef52406b410f5f2f7ba61f1e2456dc69cefc9e842fb4bd9fed

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23b151ec8add60cf3d75b3f17a591fadefcd2852e51d78996c1cd13fc8ce3e36
MD5 be24c96ba5648a066ff19deaddbaa390
BLAKE2b-256 93b219793d3821ed6ca8138d8a21f5f840e428723dc336c63b3d65c4eba631d6

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f16fc1a81cc590ac7a6bc2912dcb39bce9e0eec769a8ed8bf9932c8fdb49ae0
MD5 615b770292868cefaa8a72da99f5db0a
BLAKE2b-256 a74d556f208ea79793da63d045cdc88d890df53ed483123aeb7c164d550260f7

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 173eaf244ad942ce0d73a1d60bc0af6a76388c47a32bc820a530b8460a6fca90
MD5 eb58e6600f276bb2d9801a15b2be2dab
BLAKE2b-256 d2c33ed82a4774bdb028a433c83cfb587923ce594514c010cf042cded19af049

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6fa99bf47aafb7086fe35c340cdfa2a825fd76be559b419fa468f2e39bb5c1c
MD5 5ff07ab168e919568aeb6a760023943d
BLAKE2b-256 bcb8b30a4c1379df54d5d1ce4107b03526b53b036bfda2089f6d2ebb4005892c

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e0b5fef9ae40e80dbf1e1ed088ed8de22eab3f6e77c4a8ce62fa2ac42c9f7c0
MD5 4a07e8dc3dbf991a84a938a3dd0ee549
BLAKE2b-256 5e581e28af5dd78667c26a861f0d375ddee822c00787db5b784b219158e5f419

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9d01e85f6b623bf244c6efc689f1c4bb04cfa57d09f7d6976e38149fbce3dcc6
MD5 733f6ddcbbc713df45ee2b6d2f6b20d8
BLAKE2b-256 21833f2b6100d0cd8672557a03399c93d8ba5e7d9dff96e0792ca2dec9302cd2

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0082384f2c8e24e7019bbe4a50dcc98def58bc3d70560bbf353a42b111e7e302
MD5 151cd68fc8178678323ff27fba35e72f
BLAKE2b-256 3e0d735b183454867ef52de3756f43afcf66815bd581f122b51376b1dca9917e

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be035f1b36c26a6f29f7018aad2401d93f2ecfd5587c13a9e4e4136cd8201a86
MD5 944b5c2e08be696be00b6363559b537a
BLAKE2b-256 8e3149c48a77ef057ad5a5439847051cc418c1774ccd1d5eec1c5d9b34c15768

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3bc89d593360fcd4866f03e46ff3abaf33705b036ee05bbae33d70fc486ccf6
MD5 deb374d5b32e6adb89af7a7753229aa2
BLAKE2b-256 26316ba50c4186f811eebe21027472ecfd26785adcef63391424fd7b93d7a312

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 56.1 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b662f6d7cd73bcb9921614d379c1ba40ba2c79fd97c6edd928df8ba3c19f0670
MD5 25b203d7624c7bd13b5cda78c8078cac
BLAKE2b-256 cb44ef0467901e168fe4ddd424f36d51a1c6c88c0eebd2728f41cbd764929cfd

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92c56acbb551baf217d2202031728d31f701efb64946115f5a6dc1cc895364cc
MD5 6a7bb12837cbe1234361812b11d4fb3b
BLAKE2b-256 7e7e1597f23e87d08a1a76dea5102866bc5aec8c33114c34a9193614de592ee1

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6e712826d2420faaa4afe129b3f81a548a4a4060562c60548eb716738cc99158
MD5 ff05235fa681a127fa8bff9a865aa916
BLAKE2b-256 74e967f6e0e2b6a6c719989e88df7a3270b9db90e04f3f5856fd9c6e37d25a43

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceeda802c603666d62ba1d6bf5ca7d95a439a10f1d9ef7b5c317db95c22f2d03
MD5 87455f56c328d60519e27794bb35b15b
BLAKE2b-256 7eea42dab4d0ef2c96af4114c55e263e828ad9bceda184bf409f4f34ef44b21c

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 484458e20e5361215aa03eb154bc2f4906443e04043b6f03a733a625e9f3c329
MD5 69c1a9339af797d0ae5da79515d23a0e
BLAKE2b-256 4b94f1a4cfd53f39cce024e3dd6d53e6e8599df1b2c1d11587d10d3258b1f3c6

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afc309b8c88ada294cf8fa98f6df888910ef410b6486ba29c8dda5c535dc32d1
MD5 10053207de51fbeb87d304f497448a50
BLAKE2b-256 f719272c64dc118638145e3f7c22b72aaed1089195d6f01855717467dc63b3ee

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 56.1 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6366faa38f701eccf08c249144f31fb1f0bf5df97ca131cff4b38c8c52109c61
MD5 44f5499da160e2fef15de7ea9f5e8e32
BLAKE2b-256 df5c294464736f60721b12450e80149c2d45f1cc8ece5b38e5182a24d312f32d

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2145353593beb796d9d32da466181f7fdf831bd71074a7f6f0820ab3f457900c
MD5 7c1cc5c37f63accb6f869bf20bd10060
BLAKE2b-256 a75cac8410685d467f7980de6381773333faf8665f0b202ae6e2683c91a34310

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8fc78bf688410724c8e05bac0e49b245b63d034a50321aeb91bc758f1b8bf452
MD5 b674ceece79b4df4138e909b28ae8ea3
BLAKE2b-256 72ff1d34efeef0f214e7b7ed832b1db3f29e91119d6582486882ddcb55987c23

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a3df6c8ca5d907a4f9edfdb8c840b13d5b34a84f84401bbdeb67cc0fb66b995
MD5 13a6a3f2cd90a39c2f6cc7c458929182
BLAKE2b-256 14fc04ea32b466e9c69757b633895159af97b458eb7aa5d5dabf1ebb3c389b24

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.9 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bafe5d14858a39c82e259a1fb3eb31b60bd320cab108e43c72977105241a626a
MD5 0850dd6167d859ba6d4c2c4a7b25ab1f
BLAKE2b-256 b062c1529e3e1e4a57fff36dce9631fc7853807e34bdc7dd812db884203505fe

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2eebd7dd73525f8861b597bb52343527d4a4c45284cc93f6288ab15e786de89
MD5 2b171a17ae9696aaf216ba8138a85d6e
BLAKE2b-256 4d717bffbfa5ef07e37211455be29a47ac474c0fe33cfa603ae739764d5e7d9c

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 55.6 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 59ee06eed83795c8689143a26aebe7b962455fe2a76f01ce216af9546614b98e
MD5 506ff02985cb09fa87aad5a65e8cd687
BLAKE2b-256 4d07857e24da1228497fafa579111675553bff9601d7396138ce9dc13a6004ab

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dc437d67282e1f4abff8986c62e6b4ef5ab4632c5de55ab9b4a3b32f6e254d7b
MD5 e278067aabf7427f28f20bb8f3bd1a96
BLAKE2b-256 f8747a51eb4ade856cdfae83b33ca5796da203ad1a61b39e629db55d9e0074c8

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 24.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 687be6bcab0bbcd8408838cbb47ccdf972dee4472d22b9094dc7bb8c9edacb4e
MD5 c4229fea5cef7c442c728ea41b3b9a6c
BLAKE2b-256 36f6c7ae9a255597a8c9c6b14982d69766b59c6bdccd6a7653c9571888005c12

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20df1874e128138295fea8be3feddbfb0fe05a9e9630ca92e8c32e30c01adb26
MD5 a9f771f5320e1f3247ee6dc3aa2cca5f
BLAKE2b-256 301c8d9b31b536f36c5cff4e48d115d6376d74383cf018779b41950954b5d048

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7441bd67da189b675994ab6f7ad8026c4b1859437e543c6106a092c2890363fc
MD5 9f54560c0f08e4077323ef397dfd5880
BLAKE2b-256 02e5664078bf506fc2427cb099d2e9dca2c39082da994f3f8aa89aace7f0c470

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 afa523976b151d6dcce497c390c45fab8851095f0398c868a30a7867a47b3472
MD5 287c8c728d77d9163450578b4f2219ce
BLAKE2b-256 0f7b3956b1c0392c44eeded389a755bdb9e15f8fea43b131c67851cfb30c283e

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c8a555d41f70a3622ebf4505f74b7abb6f00deb97ce9377a8735bd1f6b447a10
MD5 2bed86017e3cd4a635210326a50adaa5
BLAKE2b-256 b5b17bea2ed7dd2af076748d6bf8cd7cf1988e4a54b3506e90f0d7a17b776385

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slam3d-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36be8dc4f62c8289753c4259149e5eb222ca22ef309d585e51d4c2c8e1e10db9
MD5 9efffbafdce3727ed3ffb302d43f645c
BLAKE2b-256 aeb696212142c0df065b76c8d8bd2a36dffbd1ba822e8cef4404b68fa71c543f

See more details on using hashes here.

File details

Details for the file slam3d-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: slam3d-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for slam3d-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6735a17ed69f309023fd7c241b8bbc18a5873519ced0f71fb74f00686058d70b
MD5 c65ab694897f1e4aec27281f41821875
BLAKE2b-256 f9727dc3a338dcff90da0bee02a63f45611020280e0e14d658fae12f160367b3

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