@@ -383,8 +383,13 @@ class LidarScene(Scene):
383383 added to it, but must be non-empty when uploading to a :class:`Dataset`.
384384 metadata (Optional[Dict]):
385385 Optional metadata to include with the scene.
386+
386387 Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
387- These values can be specified as `{"lat": 52.5, "lon": 13.3, ... }`.
388+ These values can be specified as `{ "lat": 52.5, "lon": 13.3, ... }`.
389+
390+ Context Attachments may be provided to display the attachments side by side with the dataset
391+ item in the Detail View by specifying
392+ `{ "context_attachments": [ { "attachment": 'https://example.com/1' }, { "attachment": 'https://example.com/2' }, ... ] }`.
388393
389394 Refer to our `guide to uploading 3D data
390395 <https://docs.nucleus.scale.com/docs/uploading-3d-data>`_ for more info!
@@ -455,7 +460,15 @@ class VideoScene(ABC):
455460 List of items representing frames, to be a part of the scene. A scene can be created
456461 before items have been added to it, but must be non-empty when uploading to
457462 a :class:`Dataset`. A video scene can contain a maximum of 3000 items.
458- metadata (Optional[Dict]): Optional metadata to include with the scene.
463+ metadata (Optional[Dict]):
464+ Optional metadata to include with the scene.
465+
466+ Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
467+ These values can be specified as `{ "lat": 52.5, "lon": 13.3, ... }`.
468+
469+ Context Attachments may be provided to display the attachments side by side with the dataset
470+ item in the Detail View by specifying
471+ `{ "context_attachments": [ { "attachment": 'https://example.com/1' }, { "attachment": 'https://example.com/2' }, ... ] }`.
459472 upload_to_scale (Optional[bool]): Set this to false in order to use
460473 `privacy mode <https://nucleus.scale.com/docs/privacy-mode>`_. If using privacy mode
461474 you must upload both a video_location and items to the VideoScene.
0 commit comments