Skip to content

Commit 6660bf2

Browse files
authored
Concurrent lidar pcl fix (#423)
* don't overwrite LidarPoints with 3d * bump version
1 parent d4e20db commit 6660bf2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to the [Nucleus Python Client](https://github.com/scaleapi/n
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.16.15](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.16.15) - 2024-01-11
9+
10+
### Fixes
11+
- Fix lidar concurrent lidar pointcloud to also return intensity in case it exists in the response.
12+
813
## [0.16.14](https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.16.14) - 2024-01-03
914

1015
### Fixes

nucleus/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,8 +1119,8 @@ def download_pointcloud_tasks(
11191119
sample_point = points[0]
11201120
if I_KEY in sample_point.keys():
11211121
resp[task_id] = [LidarPoint.from_json(pt) for pt in points]
1122-
1123-
resp[task_id] = [Point3D.from_json(pt) for pt in points]
1122+
else:
1123+
resp[task_id] = [Point3D.from_json(pt) for pt in points]
11241124

11251125
return resp
11261126

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ignore = ["E501", "E741", "E731", "F401"] # Easy ignore for getting it running
2525

2626
[tool.poetry]
2727
name = "scale-nucleus"
28-
version = "0.16.14"
28+
version = "0.16.15"
2929
description = "The official Python client library for Nucleus, the Data Platform for AI"
3030
license = "MIT"
3131
authors = ["Scale AI Nucleus Team <nucleusapi@scaleapi.com>"]

0 commit comments

Comments
 (0)