Skip to main content

Python binding of the OctoMap library.

Project description

octomap-python

PyPI Python Build License

Python binding of OctoMap, the 3D occupancy mapping library.

OctoMap builds a probabilistic 3D occupancy map (an octree) from point clouds: you stream in sensor measurements and query whether any point in space is occupied, free, or still unknown. This package exposes that C++ library to Python with NumPy arrays as the interchange format, so point clouds and queries are plain np.ndarrays.

Install

pip install octomap-python

Or with uv:

uv add octomap-python

Binary wheels are published for Linux (x86_64, aarch64), macOS (Apple Silicon), and Windows (AMD64), CPython 3.10-3.14. Other platforms build from the sdist and need a C++ compiler.

Quick start

import numpy as np
import octomap

# Resolution is the smallest voxel edge length, in meters.
octree = octomap.OcTree(0.1)

# Insert a point cloud measured from a sensor at `origin`.
points = np.random.uniform(-1, 1, size=(1000, 3))
octree.insertPointCloud(
    pointcloud=points,
    origin=np.array([0.0, 0.0, 0.0]),
)

# Query a coordinate: occupied / free / unknown (never observed).
node = octree.search(points[0])
try:
    print("occupied" if octree.isNodeOccupied(node) else "free")
except octomap.NullPointerException:
    print("unknown")

# Bounding box of everything mapped so far.
print(octree.getMetricMin(), octree.getMetricMax())

# Persist to / restore from the OctoMap binary format.
octree.writeBinary("tree.bt")
restored = octomap.OcTree(0.1)
restored.readBinary("tree.bt")

ColorOcTree adds a per-voxel RGB color on top of the same occupancy API:

octree = octomap.ColorOcTree(0.1)
point = np.array([1.0, 2.0, 3.0])
octree.updateNode(point, True)
octree.setNodeColor(point, 255, 0, 0)
octree.updateInnerOccupancy()

print(octree.search(point).getColor())  # (255, 0, 0)

# Color is preserved by the full map format (.ot), not the binary format (.bt).
octree.write("tree.ot")
restored = octomap.ColorOcTree.read("tree.ot")

Examples

Runnable demos live in examples/; the teaser above combines insertPointCloud.py (pointcloud / occupied / empty) and insertPointCloudColor.py (occupied in color):

git clone --recursive https://github.com/wkentaro/octomap-python.git
cd octomap-python
uv sync --group examples

cd examples
uv run python insertPointCloud.py

insertPointCloudColor.py is the same demo on a ColorOcTree, rendering each occupied voxel in its measured RGB color.

Release

Releases are published to PyPI by the publish workflow, which fires when a GitHub Release is published. It builds the wheel matrix + sdist and uploads via PyPI Trusted Publishing (OIDC, no stored token).

To cut a release:

  1. Bump version in pyproject.toml to match the new tag and commit it.
  2. Create a GitHub Release with tag vX.Y.Z (e.g. v1.8.0.13).
  3. The publish workflow runs and uploads the built distributions to PyPI.

Acknowledgement

This is a fork of neka-nat/python-octomap.

License

BSD-3-Clause (LICENSE)

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

octomap_python-1.10.0.0.tar.gz (692.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

octomap_python-1.10.0.0-cp314-cp314-win_amd64.whl (421.7 kB view details)

Uploaded CPython 3.14Windows x86-64

octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (378.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (336.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

octomap_python-1.10.0.0-cp314-cp314-macosx_11_0_arm64.whl (245.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

octomap_python-1.10.0.0-cp313-cp313-win_amd64.whl (406.4 kB view details)

Uploaded CPython 3.13Windows x86-64

octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (375.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (332.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

octomap_python-1.10.0.0-cp313-cp313-macosx_11_0_arm64.whl (244.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

octomap_python-1.10.0.0-cp312-cp312-win_amd64.whl (406.0 kB view details)

Uploaded CPython 3.12Windows x86-64

octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (376.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (333.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

octomap_python-1.10.0.0-cp312-cp312-macosx_11_0_arm64.whl (245.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

octomap_python-1.10.0.0-cp311-cp311-win_amd64.whl (410.3 kB view details)

Uploaded CPython 3.11Windows x86-64

octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (381.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (343.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

octomap_python-1.10.0.0-cp311-cp311-macosx_11_0_arm64.whl (248.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

octomap_python-1.10.0.0-cp310-cp310-win_amd64.whl (410.9 kB view details)

Uploaded CPython 3.10Windows x86-64

octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

octomap_python-1.10.0.0-cp310-cp310-macosx_11_0_arm64.whl (248.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file octomap_python-1.10.0.0.tar.gz.

File metadata

  • Download URL: octomap_python-1.10.0.0.tar.gz
  • Upload date:
  • Size: 692.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for octomap_python-1.10.0.0.tar.gz
Algorithm Hash digest
SHA256 39768a16a25509633c3fd10e860a1410f350178cd3771ce39cb48f56bae8e6d6
MD5 95fbba5441122bc3059f54f4f75ad9a5
BLAKE2b-256 f8c98d047df025355241c30d774929ee0ca1ea9c4edb54f518f3975104394e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0.tar.gz:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc30062eb2fca2cda14eb86ec859f0d998e71735b41d6e03f32e03199a5c88cd
MD5 526d65f9817dbc5715033ec70bcfc13b
BLAKE2b-256 b0e860cb8dd1303a2d9271fcbdbe34d1586e1de29984bd1ff2f9a2ef841fbd60

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c908dd819cd1cd17331294cda9f1f275ab86f8de4ed961164bc62f47afd45807
MD5 7dc4d22a0f73bd9841b1f0ea465a3cfa
BLAKE2b-256 7f479a5e558a32bea68c8b02497db738c973927b7710b8cfd72b523d9650af95

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5109d50875ac7ab57796ef44abac5ca9d84624ce8a4f37ae81b36add5634b5c7
MD5 ed47edda319fb696ad6e5d8e8c26cc48
BLAKE2b-256 5283d8c77e5587489810cc464d1dd10ba6b89ac4c52fea582949e28181ac3024

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e6781e36bce210f708febea3ed51e1be4128f7c769cabb79d52cc474098b4b9
MD5 12db044895ff1dd80dfc841aad11e915
BLAKE2b-256 aface3ce51d682b51ac47defcb2628837289d23478476edae8e1cc0d8f6ebb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1db412718686566b71b6bbd5bf64c4768383138bd0b32a1dd9484f2860755226
MD5 5a4defc7c537ef7379ef8041ea3eab7c
BLAKE2b-256 88eec50ff8a7e103016ec38f2d0902e3e9997b2c6be948d15a77f90861bb0f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb9490537f00e18c5db85791fcc694bf92321537b95ce239d4d4155996246682
MD5 c53888c09f7e6a7e4c631bc17f7d3e7a
BLAKE2b-256 791e13bdf3b2e00afcd9d14f6d92cdfb62331c5602366b14d8abf453beceacaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b9a6850009d895301f68b9e0fb0aeaea4c959332d7e5ee0c0191662833282f7
MD5 75f9aa4c24ae5b53fe2980395a2e8f06
BLAKE2b-256 9d80c4d71bb8d126385bbc13c30fc4c64b8bcea3b1f9e62ae64ec09522d7848f

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32404ee58545b6e3d7c08d345e6edbc74dd5cb4f4e8929f61bd24d4ec923c1f3
MD5 22c79924b09ea542c824be1ca337fcc1
BLAKE2b-256 f65b4a2e60eaf7d2ef0c97f048350e4a606f4214a0aa526c28f0f9beb0a0b093

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5cbf1b7f0386eb344891968e14f4ae4f5b64983dab0506d92f66fb06b8104ab2
MD5 81cefaeb508b1074392811c0e287b4ee
BLAKE2b-256 d733574b183089c48b270d9c9286cc0d072c9ebba17880a215c7355875d9249f

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 684ff21ed1621ac737279146cdb1dc099f02c913d1f89e619251c147054dd4fb
MD5 d0f097f6dcc645086c26f92a36b59cb3
BLAKE2b-256 ed3a929101a05db6e4727a7f3fd5b78ad919f056c9294d673035c659b2dd9680

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80d5687e515056bb1d1ce452de6bc074dea1437547cb17ec6e19e9aa15754f34
MD5 4fd89f1d59c949cd0796db9544424246
BLAKE2b-256 d1149e7a03a8479f96cc0898dea75643b835dc8184a0f03acb1db4bc5c35fa58

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad58da67c54e4af07304ea58096dbcff606c0ab02c0db5107ec5c3085df8af36
MD5 24ef4795955218edc949b0ad94eac846
BLAKE2b-256 7f1e8a0056312ac4672a049c31ef71f689d7958a249ff421e7c4165c04e6c5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5484d4f8c7466777ec8a956d65f232248c363a474593e578ade1f26623c405d6
MD5 8b8be9cfc625eaa28685f585a3f8d0e6
BLAKE2b-256 25b282c47580b987692618468005359d019fdc5787edd351742069fa98504418

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efc4cbc09b8a689264be32ab4d1ea85c000bf8fd2110b934ea61e7e87bec57c2
MD5 47b8a8f1da8e6d68449e0582fc448790
BLAKE2b-256 ba761b276599909f66427ec3a18bd22531a19c53f89ad753098c832d29154542

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28902623d6996c629b9d964b2f9982009cd909b084a520213d8de97ac3e50e2e
MD5 fa264fdfce67001d184e3f52e43f5ac1
BLAKE2b-256 fb717d661f4673af8e78fea6c7e63d1bec2700fb156dd1683ade3d54a78f00af

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 754a3d037b39d37132043ed1e7409c7eec2da9dea4cb93355577f6cf80d6f6a6
MD5 610f7a9fd635cc9157dbf184760e4230
BLAKE2b-256 34fe98773644d1552c81bce5b6ac1cd8e9067559b280c504c2b94c5b3842d28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3104bb267ccc8932c61c141c9cbb29f3940350cedc6db9d65921c6bb4c93f52
MD5 5f1582d3fa9c88e6f1bd91e350942934
BLAKE2b-256 544ee0b7cf73a789fb6d57b72471eaa6a79ea8340d1174504b54c54bb371ef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b91dde1e7898da909fd8ed10e98b884f21f3d890f93057052071526b13c2778b
MD5 2c33bac4d446c42d6a624e13eaf56244
BLAKE2b-256 09f5d12b147dfddaa56e10d65141cd71947bb7d06900369f474c50e435550cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 844ce448cf8f84ec3aae4a1bcd2239ae5cc9799e296ad0ae96729daef6cdf0f7
MD5 cd96ebca6fdc990d34dde020d5c4c8e4
BLAKE2b-256 fea6aa20a351f18a79929e9a2df95bb2588b0f0c5b55a37b59d3204e0bf6be5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file octomap_python-1.10.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for octomap_python-1.10.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a8cd24b46a3299e54947938230cbbaaac180e8fa8a1c2ce207f7abe50605014
MD5 b38f0f156d4aa7375d55de1ee3b3747e
BLAKE2b-256 70fcd785c0d3feb7c41d5ee35d5bbca64964b1197192d4af396d0a36e5ed90c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for octomap_python-1.10.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on wkentaro/octomap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page