commonroad-scenario-designer


Namecommonroad-scenario-designer JSON
Version 0.8.0 PyPI version JSON
download
home_pagehttps://commonroad.in.tum.de
SummaryToolbox for Map Conversion and Scenario Creation for Autonomous Vehicles
upload_time2023-10-31 13:15:43
maintainer
docs_urlNone
authorCyber-Physical Systems Group, Technical University of Munich
requires_python>=3.8,<3.11
licenseGPL-3.0-or-later
keywords autonomous automated vehicles driving motion planning simulation map scenario
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CommonRoad Scenario Designer
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)  
![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)
![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)
![macOS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=macos&logoColor=F0F0F0)    
[![PyPI version fury.io](https://badge.fury.io/py/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)
[![PyPI download week](https://img.shields.io/pypi/dw/commonroad-scenario-designer.svg?label=PyPI%20downloads)](https://pypi.python.org/pypi/commonroad-scenario-designer/) 
[![PyPI download month](https://img.shields.io/pypi/dm/commonroad-scenario-designer.svg?label=PyPI%20downloads)](https://pypi.python.org/pypi/commonroad-scenario-designer/)  
[![PyPI license](https://img.shields.io/pypi/l/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)

This toolbox provides map converters for [OpenStreetMap](https://www.openstreetmap.de/karte.html) (OSM), 
[Lanelet](https://www.mrt.kit.edu/software/libLanelet/libLanelet.html) / [Lanelet2](https://github.com/fzi-forschungszentrum-informatik/Lanelet2), 
[OpenDRIVE](https://www.asam.net/standards/detail/opendrive/), and [SUMO](https://sumo.dlr.de/docs/index.html) to the [CommonRoad](https://commonroad.in.tum.de/) 
(CR) format and for some formats vice versa.  
Additionally, a graphical user interface (GUI) is included, which allows one to efficiently create and manipulate 
CommonRoad maps and scenarios.

|              Tool              |                    Path                     |                                Functionality                                 |
|:------------------------------:|:-------------------------------------------:|:----------------------------------------------------------------------------:|
|        OpenDRIVE => CR         |    `crdesigner/map_conversion/opendrive`    |                   Conversion from OpenDRIVE to CommonRoad.                   |
|    Lanelet/Lanelet2 <=> CR     |    `crdesigner/map_conversion/lanelet2`     | Conversion from Lanelet2 to CommonRoad <br /> and from CommonRoad to Lanelet |
|           OSM => CR            |     `crdesigner/map_conversion/osm2cr`      |                      Conversion from OSM to CommonRoad.                      |
|          SUMO <=> CR           |    `crdesigner/map_conversion/sumo_map`     |              Conversion from SUMO to CommonRoad and vice versa.              |
| Map Verification and Repairing |     `crdesigner/verification_repairing`     |                Verification and Repairing of CommonRoad maps.                |
|    CR Scenario Designer GUI    |             `crdesigner/ui/gui`             |    Multi-functional GUI for map conversion and scenario creation/editing.    |

## Prerequisites and Installation
We have tested the toolbox with Python 3.8, 3.9, and 3.10.
The toolbox should work under Linux, macOS, and Windows. 
Below we present two ways of installing the CommonRoad Scenario Designer: 
- Only using the CommonRoad Scenario Designer, e.g.,the GUI or integrating the scenario designer APIs into your code
- Developing code for the CommonRoad Scenario Designer

If you want to use the SUMO conversion or to generate traffic using SUMO, please install 
[SUMO](https://sumo.dlr.de/docs/index.html):
```bash
sudo apt-get update
sudo apt-get install sumo sumo-tools sumo-doc
echo "export SUMO_HOME=/usr/share/sumo" >> ~/.bashrc
echo 'export PYTHONPATH="$SUMO_HOME/tools:$PYTHONPATH"' >> ~/.bashrc
```
If you use zsh, replace `.bashrc` with `.zshrc`.

### Using the CommonRoad Scenario Designer
The recommended way of installation if you only want to use the scenario designer (i.e., you do not want to work with the code directly) is to use the PyPI package:
```bash
pip install commonroad-scenario-designer
```

### Development
First, clone the repository.
The usage of [Poetry](https://python-poetry.org/) is recommended. 
Poetry can be installed using:
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
Create a new Python environment:
```bash
poetry shell
poetry install --with tests,docs,tutorials
```
We recommend to use PyCharm (Professional) as IDE.

### Common Errors during installation

#### Ubuntu 
- **Could not load the Qt platform plugin “xcb” in “” even though it was found:** Error seems to be a missing package - either libxkbcommon-x11 or libxcb-xinerama0 (both can be installed by ```sudo apt install [package_name]```). See for reference [here](https://discuss.pixls.us/t/solved-could-not-load-the-qt-platform-plugin-xcb-in-even-though-it-was-found/17677/9)


## Usage
We provide different types of usage for the _CommonRoad Scenario Designer_. Subsequently, we present for each component 
the different usage methods.

### GUI

![GUI_Screenshot](docs/source/details/images/gui_screenshot.png)

The recommended aspect ratio is 16:9 with a scaling of 100%. 
Within the GUI, you can also execute the different converters.
The GUI can either be activated via a Python API, command line, or executing a Python script.

#### Python Script

First you need to activate your python environment with the installed dependencies.  
Afterward, you can start the _CommonRoad Scenario Designer_ and the GUI will open:

```bash
$ python crdesigner/ui/gui/start_gui.py
```

#### Command Line
The GUI can be started from command line via the following two options:
```bash
$ crdesigner
$ crdesigner gui
```
Note that you have to activate first the Python environment in which the CommonRoad Scenario Designer is installed.  
You can also execute a map conversion via the commandline interface, e.g.,   
`crdesigner --input-file /input/path/l2file.osm  --output-file /output/path/crfile.xml lanelet2cr`.  
The output of `crdesigner --help` looks as follows:
```bash
Usage: crdesigner [OPTIONS] COMMAND [ARGS]...

  Toolbox for Map Conversion and Scenario Creation for Autonomous Vehicles

Options:
  --input-file PATH               Path to OpenDRIVE map
  --output-file PATH              Path where CommonRoad map should be stored
  --force-overwrite / --no-force-overwrite
                                  Overwrite existing CommonRoad file
                                  [default: force-overwrite]
  --author TEXT                   Your name
  --affiliation TEXT              Your affiliation, e.g., university, research
                                  institute, company
  --tags TEXT                     Tags for the created map
  --install-completion [bash|zsh|fish|powershell|pwsh]
                                  Install completion for the specified shell.
  --show-completion [bash|zsh|fish|powershell|pwsh]
                                  Show completion for the specified shell, to
                                  copy it or customize the installation.
  --help                          Show this message and exit.

Commands:
  crlanelet2
  crsumo
  gui
  lanelet2cr
  odrcr
  osmcr
  sumocr`
```

### Map Converters
You can execute the different converters either via command line, calling them within your Python program via an API, 
or the GUI.

#### API
The main APIs to execute the pure conversions are located under `crdesigner/map_conversion/map_conversion_interface.py`.   
For many conversions we provide further APIs, e.g., for downloading a map from OSM.

#### GUI
The GUI provides a toolbox with which contains functionality to load maps given in formats other the CommonRoad format   
and to convert CommonRoad maps to other formats or the other formats to the CommonRoad format.

#### Important information

When converting OSM maps, missing information such as the course of individual lanes is estimated during the process.  
These estimations are imperfect (the OSM maps as well) and often it is advisable to edit the 
scenarios by hand via the GUI.

#### Tutorials
We also provide tutorials demonstrating how the different map converter APIs can be used.  
The tutorials include a jupyter notebook and exemplary Python scripts for each conversion.

## Documentation
To generate the documentation from source, first install the necessary dependencies with pip:

```bash
cd docs/source && sphinx-build -b html . ../../public
```

The documentation can be accessed by opening `public/index.html`.  
The titles of module pages have to be set manually!  
The full documentation of the API and introducing examples can also be found [here](https://commonroad-scenario-designer.readthedocs.io/en/latest/).

## Changelog
A detailed overview about the changes in each version is provided in the [Changelog](https://gitlab.lrz.de/tum-cps/commonroad-scenario-designer/-/blob/main/CHANGELOG.md).

## Bug and feature reporting
This release (v0.8.9) is still a BETA version.  
In case you detect a bug or you want to suggest a new feature, please report it in our [forum](https://commonroad.in.tum.de/forum/c/scenario-designer/18).   
If you want to contribute to the toolbox, you can also post it in the [forum](https://commonroad.in.tum.de/forum/c/scenario-designer/18) or contact [Sebastian Maierhofer](sebastian.maierhofer@tum.de).

## Authors
Responsible: Sebastian Maierhofer, Sebastian Mair  
Contribution (in alphabetic order by last name): Daniel Asch, Hamza Begic, Mohamed Bouhali, Florian Braunmiller, 
Tim Dang, Behtarin Ferdousi, Maximilian Fruehauf, Marcus Gabler, Fabian Hoeltke, Tom Irion, Aaron Kaefer, Anton Kluge, 
David Le, Gustaf Lindgren, Sarra Ben Mohamed, Benjamin Orthen, Luisa Ortner, Louis Pröbstle, Benedikt Reinhard, 
Maximilian Rieger, Til Stotz, Stefan Urban, Max Winklhofer

## Credits
We gratefully acknowledge partial financial support by
- DFG (German Research Fundation) Priority Program SPP 1835 Cooperative Interacting Automobiles
- BMW Group within the Car@TUM project
- Central Innovation Programme of the German Federal Government under grant no. ZF4086007BZ8

## Citation
**If you use our code for research, please consider to cite our papers:**
```
@inproceedings{Maierhofer2023,
	author = {Maierhofer, Sebastian and  Ballnath, Yannick and  Althoff, Matthias},
	title = {Map Verification and Repairing Using Formalized Map Specifications},
	booktitle = {2023 IEEE International Conference on Intelligent Transportation Systems (ITSC)},
	year = {2023},
	pages = {},
	abstract = {Autonomous vehicles benefit from correct maps to participate in traffic safely, but often maps are not verified before their usage. 
                    We address this problem by providing an approach to verify and repair maps automatically based on a formalization of map specifications in higher-order logic. 
                    Unlike previous work, we provide a collection of map specifications. 
                    We can verify and repair all possible map parts, from geometric to semantic elements, e.g., adjacency relationships, lane types, road boundaries, traffic signs, and intersections. 
                    Due to the modular design of our approach, one can integrate additional logics. 
                    We compare ontologies, answer set programming, and satisfiability modulo theories with our higher-order logic verification algorithm. 
                    Our evaluation shows that our approach can efficiently verify and repair maps from several data sources and of different map sizes. 
                    We provide our tool as part of the CommonRoad Scenario Designer toolbox available at commonroad.in.tum.de.},
}
```
```
@inproceedings{Maierhofer2021,
	author = {Sebastian Maierhofer, Moritz Klischat, and Matthias Althoff},
	title = {CommonRoad Scenario Designer: An Open-Source Toolbox for Map Conversion and Scenario Creation for Autonomous Vehicles},
	booktitle = {Proc. of the IEEE Int. Conf. on Intelligent Transportation Systems },
	year = {2021},
	pages = {3176-3182},
	abstract = {Maps are essential for testing autonomous driving functions. Several map and scenario formats are 
                    available. However, they are usually not compatible with each other, limiting their usability.  
                    In this paper, we address this problem using our open-source toolbox that provides map converters  
                    from different formats to the well-known CommonRoad format. Our toolbox provides converters for 
                    OpenStreetMap, Lanelet/Lanelet2, OpenDRIVE, and SUMO. Additionally, a graphical user interface is 
                    included, which allows one to efficiently create and manipulate CommonRoad maps and scenarios. 
                    We demonstrate the functionality of the toolbox by creating CommonRoad maps and scenarios based on 
                    other map formats and manually-created map data.},
}
```
**If you use the OpenDRIVE to CommonRoad conversion for your paper, please consider to additionally cite the corresponding paper:**
```
@inproceedings{Althoff2018b,
	author = {Matthias Althoff and Stefan Urban and Markus Koschi},
	title = {Automatic Conversion of Road Networks from OpenDRIVE to Lanelets},
	booktitle = {Proc. of the IEEE International Conference on Service Operations and Logistics, and Informatics},
	year = {2018},
	pages = {157--162},
	abstract = {Detailed road maps are an important building block for autonomous driving. They accelerate creating a 
	            semantic environment model within the vehicle and serve as a backup solution when sensors are occluded 
	            or otherwise impaired. Due to the required detail of maps for autonomous driving and virtual test 
	            drives, creating such maps is quite labor-intensive. While some detailed maps for fairly large regions 
	            already exist, they are often in different formats and thus cannot be exchanged between companies and 
	            research institutions. To address this problem, we present the first publicly available converter from
	            the OpenDRIVE format to lanelets—both representations are among the most popular map formats. 
	            We demonstrate the capabilities of the converter by using publicly available maps.},
}
```
            

Raw data

            {
    "_id": null,
    "home_page": "https://commonroad.in.tum.de",
    "name": "commonroad-scenario-designer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "keywords": "autonomous,automated,vehicles,driving,motion,planning,simulation,map,scenario",
    "author": "Cyber-Physical Systems Group, Technical University of Munich",
    "author_email": "commonroad@lists.lrz.de",
    "download_url": "https://files.pythonhosted.org/packages/a8/72/4dfbb197187440f4666577139f9040151cc388b80be2ebcb9ee921f180a0/commonroad_scenario_designer-0.8.0.tar.gz",
    "platform": null,
    "description": "# CommonRoad Scenario Designer\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)  \n![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)\n![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)\n![macOS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=macos&logoColor=F0F0F0)    \n[![PyPI version fury.io](https://badge.fury.io/py/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)\n[![PyPI download week](https://img.shields.io/pypi/dw/commonroad-scenario-designer.svg?label=PyPI%20downloads)](https://pypi.python.org/pypi/commonroad-scenario-designer/) \n[![PyPI download month](https://img.shields.io/pypi/dm/commonroad-scenario-designer.svg?label=PyPI%20downloads)](https://pypi.python.org/pypi/commonroad-scenario-designer/)  \n[![PyPI license](https://img.shields.io/pypi/l/commonroad-scenario-designer.svg)](https://pypi.python.org/pypi/commonroad-scenario-designer/)\n\nThis toolbox provides map converters for [OpenStreetMap](https://www.openstreetmap.de/karte.html) (OSM), \n[Lanelet](https://www.mrt.kit.edu/software/libLanelet/libLanelet.html) / [Lanelet2](https://github.com/fzi-forschungszentrum-informatik/Lanelet2), \n[OpenDRIVE](https://www.asam.net/standards/detail/opendrive/), and [SUMO](https://sumo.dlr.de/docs/index.html) to the [CommonRoad](https://commonroad.in.tum.de/) \n(CR) format and for some formats vice versa.  \nAdditionally, a graphical user interface (GUI) is included, which allows one to efficiently create and manipulate \nCommonRoad maps and scenarios.\n\n|              Tool              |                    Path                     |                                Functionality                                 |\n|:------------------------------:|:-------------------------------------------:|:----------------------------------------------------------------------------:|\n|        OpenDRIVE => CR         |    `crdesigner/map_conversion/opendrive`    |                   Conversion from OpenDRIVE to CommonRoad.                   |\n|    Lanelet/Lanelet2 <=> CR     |    `crdesigner/map_conversion/lanelet2`     | Conversion from Lanelet2 to CommonRoad <br /> and from CommonRoad to Lanelet |\n|           OSM => CR            |     `crdesigner/map_conversion/osm2cr`      |                      Conversion from OSM to CommonRoad.                      |\n|          SUMO <=> CR           |    `crdesigner/map_conversion/sumo_map`     |              Conversion from SUMO to CommonRoad and vice versa.              |\n| Map Verification and Repairing |     `crdesigner/verification_repairing`     |                Verification and Repairing of CommonRoad maps.                |\n|    CR Scenario Designer GUI    |             `crdesigner/ui/gui`             |    Multi-functional GUI for map conversion and scenario creation/editing.    |\n\n## Prerequisites and Installation\nWe have tested the toolbox with Python 3.8, 3.9, and 3.10.\nThe toolbox should work under Linux, macOS, and Windows. \nBelow we present two ways of installing the CommonRoad Scenario Designer: \n- Only using the CommonRoad Scenario Designer, e.g.,the GUI or integrating the scenario designer APIs into your code\n- Developing code for the CommonRoad Scenario Designer\n\nIf you want to use the SUMO conversion or to generate traffic using SUMO, please install \n[SUMO](https://sumo.dlr.de/docs/index.html):\n```bash\nsudo apt-get update\nsudo apt-get install sumo sumo-tools sumo-doc\necho \"export SUMO_HOME=/usr/share/sumo\" >> ~/.bashrc\necho 'export PYTHONPATH=\"$SUMO_HOME/tools:$PYTHONPATH\"' >> ~/.bashrc\n```\nIf you use zsh, replace `.bashrc` with `.zshrc`.\n\n### Using the CommonRoad Scenario Designer\nThe recommended way of installation if you only want to use the scenario designer (i.e., you do not want to work with the code directly) is to use the PyPI package:\n```bash\npip install commonroad-scenario-designer\n```\n\n### Development\nFirst, clone the repository.\nThe usage of [Poetry](https://python-poetry.org/) is recommended. \nPoetry can be installed using:\n```bash\ncurl -sSL https://install.python-poetry.org | python3 -\n```\nCreate a new Python environment:\n```bash\npoetry shell\npoetry install --with tests,docs,tutorials\n```\nWe recommend to use PyCharm (Professional) as IDE.\n\n### Common Errors during installation\n\n#### Ubuntu \n- **Could not load the Qt platform plugin \u201cxcb\u201d in \u201c\u201d even though it was found:** Error seems to be a missing package - either libxkbcommon-x11 or libxcb-xinerama0 (both can be installed by ```sudo apt install [package_name]```). See for reference [here](https://discuss.pixls.us/t/solved-could-not-load-the-qt-platform-plugin-xcb-in-even-though-it-was-found/17677/9)\n\n\n## Usage\nWe provide different types of usage for the _CommonRoad Scenario Designer_. Subsequently, we present for each component \nthe different usage methods.\n\n### GUI\n\n![GUI_Screenshot](docs/source/details/images/gui_screenshot.png)\n\nThe recommended aspect ratio is 16:9 with a scaling of 100%. \nWithin the GUI, you can also execute the different converters.\nThe GUI can either be activated via a Python API, command line, or executing a Python script.\n\n#### Python Script\n\nFirst you need to activate your python environment with the installed dependencies.  \nAfterward, you can start the _CommonRoad Scenario Designer_ and the GUI will open:\n\n```bash\n$ python crdesigner/ui/gui/start_gui.py\n```\n\n#### Command Line\nThe GUI can be started from command line via the following two options:\n```bash\n$ crdesigner\n$ crdesigner gui\n```\nNote that you have to activate first the Python environment in which the CommonRoad Scenario Designer is installed.  \nYou can also execute a map conversion via the commandline interface, e.g.,   \n`crdesigner --input-file /input/path/l2file.osm  --output-file /output/path/crfile.xml lanelet2cr`.  \nThe output of `crdesigner --help` looks as follows:\n```bash\nUsage: crdesigner [OPTIONS] COMMAND [ARGS]...\n\n  Toolbox for Map Conversion and Scenario Creation for Autonomous Vehicles\n\nOptions:\n  --input-file PATH               Path to OpenDRIVE map\n  --output-file PATH              Path where CommonRoad map should be stored\n  --force-overwrite / --no-force-overwrite\n                                  Overwrite existing CommonRoad file\n                                  [default: force-overwrite]\n  --author TEXT                   Your name\n  --affiliation TEXT              Your affiliation, e.g., university, research\n                                  institute, company\n  --tags TEXT                     Tags for the created map\n  --install-completion [bash|zsh|fish|powershell|pwsh]\n                                  Install completion for the specified shell.\n  --show-completion [bash|zsh|fish|powershell|pwsh]\n                                  Show completion for the specified shell, to\n                                  copy it or customize the installation.\n  --help                          Show this message and exit.\n\nCommands:\n  crlanelet2\n  crsumo\n  gui\n  lanelet2cr\n  odrcr\n  osmcr\n  sumocr`\n```\n\n### Map Converters\nYou can execute the different converters either via command line, calling them within your Python program via an API, \nor the GUI.\n\n#### API\nThe main APIs to execute the pure conversions are located under `crdesigner/map_conversion/map_conversion_interface.py`.   \nFor many conversions we provide further APIs, e.g., for downloading a map from OSM.\n\n#### GUI\nThe GUI provides a toolbox with which contains functionality to load maps given in formats other the CommonRoad format   \nand to convert CommonRoad maps to other formats or the other formats to the CommonRoad format.\n\n#### Important information\n\nWhen converting OSM maps, missing information such as the course of individual lanes is estimated during the process.  \nThese estimations are imperfect (the OSM maps as well) and often it is advisable to edit the \nscenarios by hand via the GUI.\n\n#### Tutorials\nWe also provide tutorials demonstrating how the different map converter APIs can be used.  \nThe tutorials include a jupyter notebook and exemplary Python scripts for each conversion.\n\n## Documentation\nTo generate the documentation from source, first install the necessary dependencies with pip:\n\n```bash\ncd docs/source && sphinx-build -b html . ../../public\n```\n\nThe documentation can be accessed by opening `public/index.html`.  \nThe titles of module pages have to be set manually!  \nThe full documentation of the API and introducing examples can also be found [here](https://commonroad-scenario-designer.readthedocs.io/en/latest/).\n\n## Changelog\nA detailed overview about the changes in each version is provided in the [Changelog](https://gitlab.lrz.de/tum-cps/commonroad-scenario-designer/-/blob/main/CHANGELOG.md).\n\n## Bug and feature reporting\nThis release (v0.8.9) is still a BETA version.  \nIn case you detect a bug or you want to suggest a new feature, please report it in our [forum](https://commonroad.in.tum.de/forum/c/scenario-designer/18).   \nIf you want to contribute to the toolbox, you can also post it in the [forum](https://commonroad.in.tum.de/forum/c/scenario-designer/18) or contact [Sebastian Maierhofer](sebastian.maierhofer@tum.de).\n\n## Authors\nResponsible: Sebastian Maierhofer, Sebastian Mair  \nContribution (in alphabetic order by last name): Daniel Asch, Hamza Begic, Mohamed Bouhali, Florian Braunmiller, \nTim Dang, Behtarin Ferdousi, Maximilian Fruehauf, Marcus Gabler, Fabian Hoeltke, Tom Irion, Aaron Kaefer, Anton Kluge, \nDavid Le, Gustaf Lindgren, Sarra Ben Mohamed, Benjamin Orthen, Luisa Ortner, Louis Pr\u00f6bstle, Benedikt Reinhard, \nMaximilian Rieger, Til Stotz, Stefan Urban, Max Winklhofer\n\n## Credits\nWe gratefully acknowledge partial financial support by\n- DFG (German Research Fundation) Priority Program SPP 1835 Cooperative Interacting Automobiles\n- BMW Group within the Car@TUM project\n- Central Innovation Programme of the German Federal Government under grant no. ZF4086007BZ8\n\n## Citation\n**If you use our code for research, please consider to cite our papers:**\n```\n@inproceedings{Maierhofer2023,\n\tauthor = {Maierhofer, Sebastian and  Ballnath, Yannick and  Althoff, Matthias},\n\ttitle = {Map Verification and Repairing Using Formalized Map Specifications},\n\tbooktitle = {2023 IEEE International Conference on Intelligent Transportation Systems (ITSC)},\n\tyear = {2023},\n\tpages = {},\n\tabstract = {Autonomous vehicles benefit from correct maps to participate in traffic safely, but often maps are not verified before their usage. \n                    We address this problem by providing an approach to verify and repair maps automatically based on a formalization of map specifications in higher-order logic. \n                    Unlike previous work, we provide a collection of map specifications. \n                    We can verify and repair all possible map parts, from geometric to semantic elements, e.g., adjacency relationships, lane types, road boundaries, traffic signs, and intersections. \n                    Due to the modular design of our approach, one can integrate additional logics. \n                    We compare ontologies, answer set programming, and satisfiability modulo theories with our higher-order logic verification algorithm. \n                    Our evaluation shows that our approach can efficiently verify and repair maps from several data sources and of different map sizes. \n                    We provide our tool as part of the CommonRoad Scenario Designer toolbox available at commonroad.in.tum.de.},\n}\n```\n```\n@inproceedings{Maierhofer2021,\n\tauthor = {Sebastian Maierhofer, Moritz Klischat, and Matthias Althoff},\n\ttitle = {CommonRoad Scenario Designer: An Open-Source Toolbox for Map Conversion and Scenario Creation for Autonomous Vehicles},\n\tbooktitle = {Proc. of the IEEE Int. Conf. on Intelligent Transportation Systems },\n\tyear = {2021},\n\tpages = {3176-3182},\n\tabstract = {Maps are essential for testing autonomous driving functions. Several map and scenario formats are \n                    available. However, they are usually not compatible with each other, limiting their usability.  \n                    In this paper, we address this problem using our open-source toolbox that provides map converters  \n                    from different formats to the well-known CommonRoad format. Our toolbox provides converters for \n                    OpenStreetMap, Lanelet/Lanelet2, OpenDRIVE, and SUMO. Additionally, a graphical user interface is \n                    included, which allows one to efficiently create and manipulate CommonRoad maps and scenarios. \n                    We demonstrate the functionality of the toolbox by creating CommonRoad maps and scenarios based on \n                    other map formats and manually-created map data.},\n}\n```\n**If you use the OpenDRIVE to CommonRoad conversion for your paper, please consider to additionally cite the corresponding paper:**\n```\n@inproceedings{Althoff2018b,\n\tauthor = {Matthias Althoff and Stefan Urban and Markus Koschi},\n\ttitle = {Automatic Conversion of Road Networks from OpenDRIVE to Lanelets},\n\tbooktitle = {Proc. of the IEEE International Conference on Service Operations and Logistics, and Informatics},\n\tyear = {2018},\n\tpages = {157--162},\n\tabstract = {Detailed road maps are an important building block for autonomous driving. They accelerate creating a \n\t            semantic environment model within the vehicle and serve as a backup solution when sensors are occluded \n\t            or otherwise impaired. Due to the required detail of maps for autonomous driving and virtual test \n\t            drives, creating such maps is quite labor-intensive. While some detailed maps for fairly large regions \n\t            already exist, they are often in different formats and thus cannot be exchanged between companies and \n\t            research institutions. To address this problem, we present the first publicly available converter from\n\t            the OpenDRIVE format to lanelets\u2014both representations are among the most popular map formats. \n\t            We demonstrate the capabilities of the converter by using publicly available maps.},\n}\n```",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Toolbox for Map Conversion and Scenario Creation for Autonomous Vehicles",
    "version": "0.8.0",
    "project_urls": {
        "Documentation": "https://commonroad-scenario-designer.readthedocs.io/en/latest/",
        "Forum": "https://commonroad.in.tum.de/forum/c/scenario-designer/",
        "Homepage": "https://commonroad.in.tum.de",
        "Source": "https://gitlab.lrz.de/tum-cps/commonroad-scenario-designer"
    },
    "split_keywords": [
        "autonomous",
        "automated",
        "vehicles",
        "driving",
        "motion",
        "planning",
        "simulation",
        "map",
        "scenario"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1adc444f6460548f35fd8e41d5c017ad60674c92b17442ee503d424b3caed8e",
                "md5": "6683baaeacef68a36eced0b000905e6c",
                "sha256": "6a2c15dd27e59abe233637d464b77dd17dcc44f59c35d5e30050104fde82484d"
            },
            "downloads": -1,
            "filename": "commonroad_scenario_designer-0.8.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6683baaeacef68a36eced0b000905e6c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.11",
            "size": 1816125,
            "upload_time": "2023-10-31T13:15:41",
            "upload_time_iso_8601": "2023-10-31T13:15:41.257322Z",
            "url": "https://files.pythonhosted.org/packages/c1/ad/c444f6460548f35fd8e41d5c017ad60674c92b17442ee503d424b3caed8e/commonroad_scenario_designer-0.8.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8724dfbb197187440f4666577139f9040151cc388b80be2ebcb9ee921f180a0",
                "md5": "3e92ccd11d8146e5601c4152fd8031df",
                "sha256": "8746a97be470d41983df0db0c3fc97b07f76c85ebc0b121e0cf6f55790a26669"
            },
            "downloads": -1,
            "filename": "commonroad_scenario_designer-0.8.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3e92ccd11d8146e5601c4152fd8031df",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 1659755,
            "upload_time": "2023-10-31T13:15:43",
            "upload_time_iso_8601": "2023-10-31T13:15:43.535056Z",
            "url": "https://files.pythonhosted.org/packages/a8/72/4dfbb197187440f4666577139f9040151cc388b80be2ebcb9ee921f180a0/commonroad_scenario_designer-0.8.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-31 13:15:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "commonroad-scenario-designer"
}
        
Elapsed time: 0.13091s