The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: UnidentifiedImageError
Message: cannot identify image file <_io.BytesIO object at 0x7fd65a399d00>
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2240, in __iter__
example = _apply_feature_types_on_example(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2159, in _apply_feature_types_on_example
decoded_example = features.decode_example(encoded_example, token_per_repo_id=token_per_repo_id)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 2204, in decode_example
column_name: decode_nested_example(feature, value, token_per_repo_id=token_per_repo_id)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1508, in decode_nested_example
return schema.decode_example(obj, token_per_repo_id=token_per_repo_id) if obj is not None else None
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/features/image.py", line 190, in decode_example
image = PIL.Image.open(bytes_)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/PIL/Image.py", line 3498, in open
raise UnidentifiedImageError(msg)
PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x7fd65a399d00>Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Automatum Data: Overview and Getting Started
Introduction
The Automatum Data datasets contain high-precision movement data of traffic participants (vehicles, trucks, vans) extracted from drone recordings (bird's eye view). They are excellently suited for the simulation, validation, and development of algorithms for automated driving (e.g., Level 3 functions) as well as for traffic analysis purposes.
Research Use and Extended Data Pool
Please note that these publicly available datasets are intended exclusively for research purposes.
These datasets represent just a small excerpt from the comprehensive Automatum Data Pool, which contains over 1,000 hours of processed videos. For commercial use or if you are interested in accessing further datasets, please send us a request via our website:
👉 automatum-data.com/de
Note: The complete data is available as ZIP archives. We have also provided a Sample_Data directory so you can explore the structure directly here on Hugging Face before downloading the larger ZIP files.
Available Scenarios
Our open-source data covers various traffic scenarios:
Data Structure
Each dataset represents a recording of about 10 to 18 minutes in length at a specific location. The structure of a recording usually includes:
dynamicWorld.json: Contains the dynamic behavior of all objects (trajectories, velocities, accelerations, bounding boxes, lane assignments).staticWorld.xodr: Contains the static road geometry in OpenDRIVE format.recording_name.html: An overview of the recording with basic metadata.
Installation of the Python Library
To work with the data, Automatum Data provides an open-source library.
Installation is done via pip:
pip install openautomatumdronedata
# To upgrade:
pip install --upgrade openautomatumdronedata
Getting Started / Using the Data
Here is a simple example to load a dataset and access the dynamic objects:
from openautomatumdronedata.dataset import droneDataset
import os
# Specify the path to the recording folder
path_to_dataset = os.path.abspath("PATH_TO_FOLDER_E.G._Highway-A9-Allersberg")
dataset = droneDataset(path_to_dataset)
# Access the dynamic world
dynWorld = dataset.dynWorld
# Retrieve general metadata
print("UUID:", dynWorld.UUID)
print("Duration:", dynWorld.maxTime, "seconds")
print("Number of frames:", dynWorld.frame_count)
# Number of all objects in the dataset
print("Number of vehicles:", len(dynWorld))
# Retrieve all objects visible at second 1.0
objects_at_1s = dynWorld.get_list_of_dynamic_objects_for_specific_time(1.0)
if len(objects_at_1s) > 0:
obj = objects_at_1s[0]
print(f"Vehicle {obj.UUID} - Type: {obj.type}")
print(f"X-Positions: {obj.x_vec[:5]}")
Important Object Properties (dynObject):
x_vec,y_vec: X and Y positions over time.vx_vec,vy_vec: Velocities.ax_vec,ay_vec: Accelerations.lane_id_vec: Assignment to lanes over time.length,width: Dimensions of the object.
Advanced Analysis
The library allows for complex analysis, such as:
- Detecting lane changes: By evaluating changes in
lane_id_vec. - Visualizing traffic density: Generating heatmaps using the X/Y coordinates.
- Identifying critical driving maneuvers: Finding vehicles with high longitudinal or lateral acceleration (
ax_vec,ay_vec). - Object relationships (TTC, TTH): Calculating distances and critical times to leading or adjacent vehicles.
- Downloads last month
- 7


