Skip to main content

Decoder for raw Velodyne packet data

Project description

velodyne_decoder PyPI Build PyPI - Downloads

Python package and C++ library for Velodyne packet decoding. Point cloud extraction from PCAP and ROS bag files is supported out of the box.

The decoded point clouds are provided either as a structured NumPy array:

array([(8.327308, -2.161341, 0.3599853, 85., 17, -0.04960084),
       (8.323784, -2.9578836, 0.27016047, 102., 15, -0.04959854),
       (8.184404, -2.845847, -0.8741639, 39., 2, -0.04959623), ...,
       (8.369528, -2.8161895, 2.307987, 17., 31, 0.00064051),
       (8.377898, -3.2570598, 1.7714221, 104., 30, 0.00064282),
       (8.358282, -2.8030438, 0.31229734, 104., 16, 0.00064282)],
      dtype={'names': ['x', 'y', 'z', 'intensity', 'ring', 'time'],
             'formats': ['<f4', '<f4', '<f4', '<f4', '<u2', '<f4'], 'offsets': [0, 4, 8, 16, 20, 24], 'itemsize': 32})

or as a contiguous array of floats (default):

array([[8.327308, -2.161341, 0.3599853, 85., 17., -0.04960084],
       [8.323784, -2.9578836, 0.27016047, 102., 15., -0.04959854],
       [8.184404, -2.845847, -0.8741639, 39., 2., -0.04959623],
       ...,
       [8.369528, -2.8161895, 2.307987, 17., 31., 0.00064051],
       [8.377898, -3.2570598, 1.7714221, 104., 30., 0.00064282],
       [8.358282, -2.8030438, 0.31229734, 104., 16., 0.00064282]], dtype=float32)

The layout of the structs matches the layout of PointXYZIRT point cloud points output by the ROS driver.

Installation

Wheels are available from PyPI for Linux, MacOS and Windows. Python versions 2.7 and 3.6+ are supported.

pip install velodyne-decoder

Alternatively, you can build and install the development version from source.

sudo apt-get install cmake build-essential python3-dev
pip install git+https://github.com/valgur/velodyne_decoder.git

Usage

Decoding Velodyne data from a ROS bag

import velodyne_decoder as vd

config = vd.Config(model='VLP-32C')
bagfile = 'xyz.bag'
lidar_topics = ['/velodyne_packets']
cloud_arrays = []
for stamp, points, topic in vd.read_bag(bagfile, config, lidar_topics):
    cloud_arrays.append(points)

The rosbag library must be installed. If needed, you can install it without setting up the entire ROS stack with

pip install rosbag --extra-index-url https://rospypi.github.io/simple/

To extract all VelodyneScan messages in the bag you can leave the list of topics unspecified.

The header timestamp from the scan messages will be returned by default. To use the message arrival time instead set use_header_time=False.

To return arrays of structs instead of the default contiguous arrays, set as_pcl_structs=True.

Decoding Velodyne data from a PCAP file

import velodyne_decoder as vd

config = vd.Config(model='VLP-16', rpm=600)
pcap_file = 'vlp16.pcap'
cloud_arrays = []
for stamp, points in vd.read_pcap(pcap_file, config):
    cloud_arrays.append(points)

config.model and config.rpm must be set.

To return arrays of structs instead of the default contiguous arrays, set as_pcl_structs=True.

Configuration

The main parameter config.model must always be set. For a list of supported model IDs see

>> > velodyne_decoder.Config.SUPPORTED_MODELS
['HDL-32E', 'HDL-64E', 'HDL-64E_S2', 'HDL-64E_S3', 'VLP-16', 'VLP-32C', 'Alpha Prime']

Note that timing info is available for only a subset of the models:

>> > velodyne_decoder.Config.TIMINGS_AVAILABLE
['HDL-32E', 'VLP-16', 'VLP-32C', 'Alpha Prime']

Other available options are:

  • calibration_file – the beam calibration details from Velodyne are used by default based on the model ID. If you however wish to use a more specific calibration, you can specify one in the YAML format used by the ROS driver.
  • min_range and max_range – only return points between these range values.
  • min_angle and max_angle – only return points between these azimuth angles.

Options only applicable to PCAP decoding:

  • rpm – the device rotation speed in revolutions per minute.
  • gps_time – use the timestamp from the packet's data if true, packet's arrival time otherwise (default).
  • timestamp_first_packet – whether the timestamps are set based on the first or last packet in the scan

Authors

The core functionality has been adapted from the ROS velodyne driver.

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

velodyne-decoder-2.3.0.tar.gz (18.6 kB view details)

Uploaded Source

Built Distributions

velodyne_decoder-2.3.0-cp310-cp310-win_amd64.whl (208.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

velodyne_decoder-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (868.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

velodyne_decoder-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

velodyne_decoder-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

velodyne_decoder-2.3.0-cp39-cp39-win_amd64.whl (205.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

velodyne_decoder-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (868.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

velodyne_decoder-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

velodyne_decoder-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

velodyne_decoder-2.3.0-cp38-cp38-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

velodyne_decoder-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (868.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

velodyne_decoder-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

velodyne_decoder-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

velodyne_decoder-2.3.0-cp37-cp37m-win_amd64.whl (209.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

velodyne_decoder-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (874.7 kB view details)

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

velodyne_decoder-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.7 kB view details)

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

velodyne_decoder-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (256.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

velodyne_decoder-2.3.0-cp36-cp36m-win_amd64.whl (209.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

velodyne_decoder-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl (874.7 kB view details)

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

velodyne_decoder-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.7 kB view details)

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

velodyne_decoder-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file velodyne-decoder-2.3.0.tar.gz.

File metadata

  • Download URL: velodyne-decoder-2.3.0.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne-decoder-2.3.0.tar.gz
Algorithm Hash digest
SHA256 a9fabf70c5750f8cc20336ad0c255c04785b64065f23857ee4c7fd1cce2dfc1d
MD5 e8def84423d5d1a95f88c489ec6d8a77
BLAKE2b-256 abedf0d40b99665165aa0eb96c32824c3220e19af3de71c8ce450a78f9300b03

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c107db20ffa920caeba6cb5ed47d072afc367e65854df1be393c87ae83c424e
MD5 4598bbcd2946fa4fa89c7427ebcf9298
BLAKE2b-256 08999c6e1399d27829f61edaede54413460ce4b5bbbf22d2e3f2b6573cc73ff9

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 868.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff4503e087262b38046ce22c4abee2c82c20ab960640f5d797a5bc7c9efdfdb3
MD5 2f4a8898d0e0c42cda7227db560a541c
BLAKE2b-256 f8b9da7d245c728717583614ba0340a8585d5fc0ae3e8eaf796d7759717a8f50

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 384.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a99ca44508020e59c4d37b5a6830d7ab0e51a95f2773d680397163d038c1e63b
MD5 340ca73d433813bdc617b28125184447
BLAKE2b-256 c789afe9f9e0a758005179644cbbec1dded562ddd13aa8e4786465dd6db2369e

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 257.6 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 203c803feeebe59d28d01a1327ab13ce5695417ae39bfe072b2cfa1178a60d23
MD5 14575e86bd3afd0c4471400dce462836
BLAKE2b-256 6697d1480023fc1db5683056d3584f1db20e7898eec3958bd2f5b3aa77415d28

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 205.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f60b1fad1bd6305d80abb2829e4091991b3c59952ab9b1fd733c0a0f42572b8
MD5 a8368514c87644fd87b1d5e63ef718fb
BLAKE2b-256 b7dc73a53abd7b519210f804aefacdc382524348512448fec5ab4d63dc83834b

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 868.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 391a9f7a1f9d9b426a8c78f8f11cec278c19ef1341ecbfd4024888988089cdac
MD5 7f6b31873147e206153af1f73f6ea56d
BLAKE2b-256 cd783b7d582b1391a899afcc1eadf6c044decedac8d6b13ddb658f0264506774

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 384.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf6e14e13c5f2130dbe69a7d782c8c8efbd2611684a5753f95ac05c9a997d16c
MD5 ae9db3cd52913df01ceaf583adf52d5d
BLAKE2b-256 ed7cc294f2cacdf38f0966fe56e04df348d81fa640b7ed8c6ae26cf7b7c1e1d2

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 257.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10257d918a5b9e6a600e91fdb885ac4dcd83c3a43f79b46e8bce80613deca151
MD5 c7bbe602ba4ece6fd25e6caa7f30b693
BLAKE2b-256 bee2e6c2c2f7b75e8249167077c6e1ae5f5213af138762f45cc9083228dfac7b

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 208.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4c4205589a449d2e1e8f5c35616207ad795647713f74b1c0a9e773b622e6398
MD5 5bc7c91e6437746bc7d25f64547c8b88
BLAKE2b-256 b690dc67f2650d11bf2fb302097744326877b96748ca990fde210d1d4b37ea46

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 868.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7260e29e10884442907df23c4a790e6978de5828e9085fc7ac607d26ba53623
MD5 bbf1ba7d291f351cccb0afc3190c1c18
BLAKE2b-256 51fcbe3cc678ec83420b5511639a2e2f066ee7a7f2236ec52fe785e789ac07e8

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 383.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e40903a94f426d56f2f3c5b79367d8146b45df7ce3e1bda3d05e804ce65af9db
MD5 3bb94efca6e2d43bc50419295556dd35
BLAKE2b-256 997d8ab56b3e3f2fd82635fe40f8594a6b02d5ba1c74020756f2c1be3a52141e

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 257.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bfd93aebf8704037ffdeb6d78180f24727d664a25fea983cc746d36a2203f84
MD5 3122bdfa72ea9f95c0919af569d94b1b
BLAKE2b-256 5251596dc2a4561e78339d56f1bb61d87c9b3c0e7fef2313056c8499aa27e999

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 209.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 00a7cd6c3533e5301185a921f549518157a2d3d82c1d83e103638e34b93e8f39
MD5 ad9349584d46327b05ecbea6b59a7a4a
BLAKE2b-256 470a3f2d0e211e4a1bf1f3c1f2272719d793cd410715d183f78263ca87da1f06

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 874.7 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9b4b6f74fb8636b80f5771abf1ea24df0ba44d17db9e206bd7087b599faba79
MD5 cedc32401165e6fe4911771f1b195a75
BLAKE2b-256 68db9241c6be06b0e670c229877e67d58c12fb353170fd0b167b55992f14a759

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 387.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7b4565e9fcf101bd73a1c5f77d48db5cf03deb1b25a2ae8686adac33f9be504
MD5 ec4b1c4f8540258b0b391f369f0a5fde
BLAKE2b-256 d566453038069800b14c516b7756c55d55e4da9323297b89ded4c0f7b89073bf

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 256.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e05ddb5f2925620238691661af6b6e9867eba688eeefbf7d3c3559c3669f9e41
MD5 980a1ef136c98ac27e9f1fe4eaf20524
BLAKE2b-256 6469816ebf5faadecbb9ecbaf567dcdadab4161b77952c3af0cc2eb9795e56d7

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 209.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 62950c8a28ceb8e4c539137671bf4b0eddf186aaba0a25e324d62e49655fb6bd
MD5 913160d341050c6e86103825082cd629
BLAKE2b-256 8c9987c82a3304e5ebbe7e571266bbef3215bd7bc2f68e16fd77fab5aa975fb1

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 874.7 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 684af156f759dbb3e8f2dc1d233c8932871564cb151ae3fa89f4f2cfcbda6969
MD5 af45f3e6950fc02d9d2642dbc70495e2
BLAKE2b-256 68313acc8bff5a1fc7b6e54adf1b6af2af8844e44ec386a4f299ec3fac1390b8

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 387.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35425ee5de90a9e0b21f334eebe2eb3e3cd8a81f377e8aa9385ab75bfbc3ef59
MD5 a12b8add8774c703c20bddccbc34eb92
BLAKE2b-256 d3dbe6c3aa6caf7b55b9427c9133c5235922017504cb0ce3a8938df6f6528c7a

See more details on using hashes here.

Provenance

File details

Details for the file velodyne_decoder-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: velodyne_decoder-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for velodyne_decoder-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e49c0d192f07f06e1a27f8be49e5fe43d9877209754491f9c600d556a6e246a
MD5 3472e04fdc26af1cf97c8897a0da3ad0
BLAKE2b-256 7852f3e19561a8c0040f309a66dbf5fc5be41189c4ed072f94a0f7a1bc8210b0

See more details on using hashes here.

Provenance

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