commonroad-clcs


Namecommonroad-clcs JSON
Version 2025.1.0 PyPI version JSON
download
home_pageNone
SummaryCurvilinear (Frenet) Coordinate System for motion planning.
upload_time2025-02-17 09:08:43
maintainerNone
docs_urlNone
authorNone
requires_python<3.12,>=3.9
licenseBSD 3-Clause License Copyright (c) 2019, Technical University of Munich, Professorship Cyber-Physical Systems. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords autonomous vehicles automated driving motion planning frenet coordinates commonroad
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CommonRoad Curvilinear Coordinate System (CLCS)

Curvilinear coordinate frames (also Frenet frames) are a widely used representation in motion planning for automated
vehicles. Curvilinear frames are aligned with a reference path and Cartesian points (x, y) are described by 
coordinates (s, d), where s is the arc length and d the lateral deviation to the reference path.
The coordinate transformation is performed via a projection on the reference path for which different methods can be 
used [1] [2].

<img src="docs/assets/animation.gif" alt="clcs" width="500"/>

This project software for constructing and using curvilinear coordinate frames for reference paths given as polylines.
We offer:
* C++ backend for efficient coordinate transformations
* Python frontend for usage with CommonRoad scenarios
* various utility methods for processing reference path (e.g., smoothing, curvature reduction, resampling etc ...)

## :wrench: Installation
We provide two installation options for CommonRoad-CLCS: 
Installation as a Python package (recommended) or building from source.

1. **Python Package**: Install the python package via `pip` in your Conda environment:
    ```bash
    pip install commonroad-clcs
    ```
2. **Build from source**: To build the project from source and install it in your Conda environment, 
   please refer to the [README_FOR_DEVS](./README_FOR_DEVS.md).
   This option is only recommended for advanced users who would like to use or modify the C++ backend directly.



## :link: System Requirements
The software is written in Python 3.10 and C++17, and was tested on Ubuntu 20.04 and 22.04.
It should be compatible with later versions.
For building the code, the following minimum versions are required:
* **GCC and G++**: version 10 or above
* **CMake**: version 3.28 or above.
* **Pip**: version 24.2 or above

We recommend using [Anaconda](https://www.anaconda.com/) as a package manager for Python.


## :rocket: Getting Started
To get started, please see the minimal example in `./tutorials/clcs_minimal_example.py`.

For more details, please refer to the Jupyter notebook tutorials provided in `./tutorials/`. 


## :books: Documentation
A documentation including APIs is available on our website at:
https://cps.pages.gitlab.lrz.de/commonroad/commonroad-clcs/.

To build the documentation locally, please install the optional `docs` listed in [pyproject.toml](pyproject.toml) first.
The documentation can then be built using mkdocs via:
```bash
mkdocs build
```
You can browse the doc by launching `./docs/site/index.html`

## :busts_in_silhouette: Authors
**Contributors** (alphabetic order by last name): Peter Kocsis, Edmond Irani Liu,
Stefanie Manzinger, Tobias Markus, Evald Nexhipi, Vitaliy Rusinov, Daniel Tar, Gerald Würsching

## :speech_balloon: References
If you use our software for research, please cite:
```
@inproceedings{wursching2024robust,
    author={W{\"u}rsching, Gerald and Althoff, Matthias},
    title={Robust and Efficient Curvilinear Coordinate Transformation with Guaranteed Map Coverage for Motion Planning},
    booktitle={Proc. of the  IEEE Intelligent Vehicles Symposium},
    year={2024}
}
```

#### Additional references:
[1] [Héry, Elwan, Stefano Masi, Philippe Xu, and Philippe Bonnifait. "Map-based curvilinear coordinates for autonomous vehicles." ITSC, 2017](https://ieeexplore.ieee.org/document/8317775)

[2] [Bender, Philipp, Julius Ziegler, and Christoph Stiller. "Lanelets: Efficient map representation for autonomous driving." IV, 2014](https://ieeexplore.ieee.org/document/6856487)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "commonroad-clcs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.12,>=3.9",
    "maintainer_email": null,
    "keywords": "autonomous vehicles, automated driving, motion planning, frenet coordinates, commonroad",
    "author": null,
    "author_email": "Cyber-Physical Systems Group - Technical University of Munich <commonroad@lists.lrz.de>",
    "download_url": "https://files.pythonhosted.org/packages/32/85/117725c6c43e7120e82394a405809d98640d4193ede643d8267d0cbcbdf5/commonroad_clcs-2025.1.0.tar.gz",
    "platform": null,
    "description": "# CommonRoad Curvilinear Coordinate System (CLCS)\n\nCurvilinear coordinate frames (also Frenet frames) are a widely used representation in motion planning for automated\nvehicles. Curvilinear frames are aligned with a reference path and Cartesian points (x, y) are described by \ncoordinates (s, d), where s is the arc length and d the lateral deviation to the reference path.\nThe coordinate transformation is performed via a projection on the reference path for which different methods can be \nused [1] [2].\n\n<img src=\"docs/assets/animation.gif\" alt=\"clcs\" width=\"500\"/>\n\nThis project software for constructing and using curvilinear coordinate frames for reference paths given as polylines.\nWe offer:\n* C++ backend for efficient coordinate transformations\n* Python frontend for usage with CommonRoad scenarios\n* various utility methods for processing reference path (e.g., smoothing, curvature reduction, resampling etc ...)\n\n## :wrench: Installation\nWe provide two installation options for CommonRoad-CLCS: \nInstallation as a Python package (recommended) or building from source.\n\n1. **Python Package**: Install the python package via `pip` in your Conda environment:\n    ```bash\n    pip install commonroad-clcs\n    ```\n2. **Build from source**: To build the project from source and install it in your Conda environment, \n   please refer to the [README_FOR_DEVS](./README_FOR_DEVS.md).\n   This option is only recommended for advanced users who would like to use or modify the C++ backend directly.\n\n\n\n## :link: System Requirements\nThe software is written in Python 3.10 and C++17, and was tested on Ubuntu 20.04 and 22.04.\nIt should be compatible with later versions.\nFor building the code, the following minimum versions are required:\n* **GCC and G++**: version 10 or above\n* **CMake**: version 3.28 or above.\n* **Pip**: version 24.2 or above\n\nWe recommend using [Anaconda](https://www.anaconda.com/) as a package manager for Python.\n\n\n## :rocket: Getting Started\nTo get started, please see the minimal example in `./tutorials/clcs_minimal_example.py`.\n\nFor more details, please refer to the Jupyter notebook tutorials provided in `./tutorials/`. \n\n\n## :books: Documentation\nA documentation including APIs is available on our website at:\nhttps://cps.pages.gitlab.lrz.de/commonroad/commonroad-clcs/.\n\nTo build the documentation locally, please install the optional `docs` listed in [pyproject.toml](pyproject.toml) first.\nThe documentation can then be built using mkdocs via:\n```bash\nmkdocs build\n```\nYou can browse the doc by launching `./docs/site/index.html`\n\n## :busts_in_silhouette: Authors\n**Contributors** (alphabetic order by last name): Peter Kocsis, Edmond Irani Liu,\nStefanie Manzinger, Tobias Markus, Evald Nexhipi, Vitaliy Rusinov, Daniel Tar, Gerald W\u00fcrsching\n\n## :speech_balloon: References\nIf you use our software for research, please cite:\n```\n@inproceedings{wursching2024robust,\n    author={W{\\\"u}rsching, Gerald and Althoff, Matthias},\n    title={Robust and Efficient Curvilinear Coordinate Transformation with Guaranteed Map Coverage for Motion Planning},\n    booktitle={Proc. of the  IEEE Intelligent Vehicles Symposium},\n    year={2024}\n}\n```\n\n#### Additional references:\n[1] [H\u00e9ry, Elwan, Stefano Masi, Philippe Xu, and Philippe Bonnifait. \"Map-based curvilinear coordinates for autonomous vehicles.\" ITSC, 2017](https://ieeexplore.ieee.org/document/8317775)\n\n[2] [Bender, Philipp, Julius Ziegler, and Christoph Stiller. \"Lanelets: Efficient map representation for autonomous driving.\" IV, 2014](https://ieeexplore.ieee.org/document/6856487)\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) 2019, Technical University of Munich, Professorship Cyber-Physical Systems. All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  ",
    "summary": "Curvilinear (Frenet) Coordinate System for motion planning.",
    "version": "2025.1.0",
    "project_urls": {
        "Documentation": "https://commonroad.in.tum.de/docs/commonroad-clcs/",
        "Homepage": "https://commonroad.in.tum.de/tools/commonroad-clcs",
        "Source": "https://github.com/CommonRoad/commonroad-curvilinear-coordinate-system"
    },
    "split_keywords": [
        "autonomous vehicles",
        " automated driving",
        " motion planning",
        " frenet coordinates",
        " commonroad"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68cc60451e483494d1f69a1437ac7bac07d85c06478fc135772c6ea7ab1bd553",
                "md5": "1a3617a01d03947c4e7d50a76a2b6997",
                "sha256": "dbc3b8dacba3b89b2afde678b9c7fe9d8dd36c30b31c84ceb1da062ad542861e"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a3617a01d03947c4e7d50a76a2b6997",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.12,>=3.9",
            "size": 890856,
            "upload_time": "2025-02-17T09:08:11",
            "upload_time_iso_8601": "2025-02-17T09:08:11.200201Z",
            "url": "https://files.pythonhosted.org/packages/68/cc/60451e483494d1f69a1437ac7bac07d85c06478fc135772c6ea7ab1bd553/commonroad_clcs-2025.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8e9c07a53398179c3dfdb3627536e33652c7053e243675ea3e3116add84906a",
                "md5": "8b2b73ce5f88f7d2af669faf98683bfd",
                "sha256": "6e61544047eec6abe9f58f8a7f4ed56bb0ae67a5d219307beeff86dc2d78b116"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b2b73ce5f88f7d2af669faf98683bfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.12,>=3.9",
            "size": 853051,
            "upload_time": "2025-02-17T09:08:14",
            "upload_time_iso_8601": "2025-02-17T09:08:14.580878Z",
            "url": "https://files.pythonhosted.org/packages/e8/e9/c07a53398179c3dfdb3627536e33652c7053e243675ea3e3116add84906a/commonroad_clcs-2025.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9d7deba0308d1b45d9620f4906575be098f875c1d82f8c3bb82ab4ec1184c0d",
                "md5": "156767fc967e75194659fd8a241cc66c",
                "sha256": "a23253c41cb69409333bbc09a47fb107a04c9083334eeb5c31dc227f04114ebe"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "156767fc967e75194659fd8a241cc66c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.12,>=3.9",
            "size": 1471521,
            "upload_time": "2025-02-17T09:08:17",
            "upload_time_iso_8601": "2025-02-17T09:08:17.424411Z",
            "url": "https://files.pythonhosted.org/packages/b9/d7/deba0308d1b45d9620f4906575be098f875c1d82f8c3bb82ab4ec1184c0d/commonroad_clcs-2025.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9196faa9cdbf08a39148d98d7e2024600c590989fb2213c44ef2312c2068313f",
                "md5": "58d9753bb1423ba25d929311926b8024",
                "sha256": "c78f7f720a531ace9091fded52d18bfa3142e9befdaa74f33c0a716bc2b996d6"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58d9753bb1423ba25d929311926b8024",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.12,>=3.9",
            "size": 1376815,
            "upload_time": "2025-02-17T09:08:22",
            "upload_time_iso_8601": "2025-02-17T09:08:22.146423Z",
            "url": "https://files.pythonhosted.org/packages/91/96/faa9cdbf08a39148d98d7e2024600c590989fb2213c44ef2312c2068313f/commonroad_clcs-2025.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "576ffcbe2a5c513044d51158e8705381657568d3c0e0b264bb10e7094d2bd767",
                "md5": "7b7cab3c6444022600eb707ebb62c5e2",
                "sha256": "6db5f743ad37859a72451711ffddac9290e90eed026670389152d902108e5ca0"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7b7cab3c6444022600eb707ebb62c5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.12,>=3.9",
            "size": 892391,
            "upload_time": "2025-02-17T09:08:24",
            "upload_time_iso_8601": "2025-02-17T09:08:24.932482Z",
            "url": "https://files.pythonhosted.org/packages/57/6f/fcbe2a5c513044d51158e8705381657568d3c0e0b264bb10e7094d2bd767/commonroad_clcs-2025.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f10935538c6678bfe0247e239b39df0319e4d020ee6ee56fe3ced39611902dc",
                "md5": "4f7753b91f431a87fdf1dd761329e271",
                "sha256": "31bdea0dd36b2e495927777649ea14464e7879f40d48185b950bef98d8fea4c2"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f7753b91f431a87fdf1dd761329e271",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.12,>=3.9",
            "size": 855349,
            "upload_time": "2025-02-17T09:08:27",
            "upload_time_iso_8601": "2025-02-17T09:08:27.268309Z",
            "url": "https://files.pythonhosted.org/packages/4f/10/935538c6678bfe0247e239b39df0319e4d020ee6ee56fe3ced39611902dc/commonroad_clcs-2025.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1df452f96290ccc938f027452cb1fae41f063f6731cecf8b754c8fbcb8df21b6",
                "md5": "9b157bd9dfc23f46aee67392e6d1aad1",
                "sha256": "b86a8be2f88baa074e1eb3b2b8e9219c4fd233146e8b362b242129170dd42d80"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b157bd9dfc23f46aee67392e6d1aad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.12,>=3.9",
            "size": 1472169,
            "upload_time": "2025-02-17T09:08:29",
            "upload_time_iso_8601": "2025-02-17T09:08:29.104897Z",
            "url": "https://files.pythonhosted.org/packages/1d/f4/52f96290ccc938f027452cb1fae41f063f6731cecf8b754c8fbcb8df21b6/commonroad_clcs-2025.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70aecdf4ee50f550cfb997a1ea6f112470fc3094af5a3ad1cb24dc96ebc023d9",
                "md5": "221a6f38f53c7561b3f44c74860ead09",
                "sha256": "9d10293f752e45f5cdd41e00d211d24358f2abe1b34f8da185dc436e35b7293e"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "221a6f38f53c7561b3f44c74860ead09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.12,>=3.9",
            "size": 1377286,
            "upload_time": "2025-02-17T09:08:31",
            "upload_time_iso_8601": "2025-02-17T09:08:31.575695Z",
            "url": "https://files.pythonhosted.org/packages/70/ae/cdf4ee50f550cfb997a1ea6f112470fc3094af5a3ad1cb24dc96ebc023d9/commonroad_clcs-2025.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca59ad11f43f0fbc6d9a85c90a6a6d2d2a342f63fd8dfc6acaa175ee3970131d",
                "md5": "c1422dc543221c0161ff1bb16f500ec4",
                "sha256": "aa688e48ef823b0d2f8b7f80913877b55f9f67da7a444ea03d6c0f465ec9c471"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c1422dc543221c0161ff1bb16f500ec4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.12,>=3.9",
            "size": 891118,
            "upload_time": "2025-02-17T09:08:33",
            "upload_time_iso_8601": "2025-02-17T09:08:33.981308Z",
            "url": "https://files.pythonhosted.org/packages/ca/59/ad11f43f0fbc6d9a85c90a6a6d2d2a342f63fd8dfc6acaa175ee3970131d/commonroad_clcs-2025.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0319a3c3449e479797e8b878bf765469d030655f6366ed96072a51cb962ccf86",
                "md5": "974bb27c8449cb0ac2f61d07e50848a9",
                "sha256": "ee7978695bd43b9ce4c4c7238fc4206a6583cb9798a2d10a828bd0d8321af8d9"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "974bb27c8449cb0ac2f61d07e50848a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.12,>=3.9",
            "size": 853512,
            "upload_time": "2025-02-17T09:08:35",
            "upload_time_iso_8601": "2025-02-17T09:08:35.825822Z",
            "url": "https://files.pythonhosted.org/packages/03/19/a3c3449e479797e8b878bf765469d030655f6366ed96072a51cb962ccf86/commonroad_clcs-2025.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d1d6f9eace5afd93268bbcf53f49e9d927f2f08d9847aededd83171cb0667f8",
                "md5": "67055760e85a1fcbf50ec6471295ee18",
                "sha256": "5313c521618b42ca6a8b00dc8e68d6e4dbf0ac399e3d04435df7409d6bfca17d"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "67055760e85a1fcbf50ec6471295ee18",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.12,>=3.9",
            "size": 1471558,
            "upload_time": "2025-02-17T09:08:37",
            "upload_time_iso_8601": "2025-02-17T09:08:37.737771Z",
            "url": "https://files.pythonhosted.org/packages/9d/1d/6f9eace5afd93268bbcf53f49e9d927f2f08d9847aededd83171cb0667f8/commonroad_clcs-2025.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1be29d02b2bdb22d655e5de34cb3b6812eaaa6a012117d1f51559e615ff1d663",
                "md5": "c504b67cdc7397d2e3e0364d17216722",
                "sha256": "eedf28c9875415318f620136d30c3a55e3126a6f5e2c0e03eafe874dd9753640"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c504b67cdc7397d2e3e0364d17216722",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.12,>=3.9",
            "size": 1376860,
            "upload_time": "2025-02-17T09:08:40",
            "upload_time_iso_8601": "2025-02-17T09:08:40.502876Z",
            "url": "https://files.pythonhosted.org/packages/1b/e2/9d02b2bdb22d655e5de34cb3b6812eaaa6a012117d1f51559e615ff1d663/commonroad_clcs-2025.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3285117725c6c43e7120e82394a405809d98640d4193ede643d8267d0cbcbdf5",
                "md5": "a33b0a662c735b343fe5a5330bb7bc7b",
                "sha256": "c21167a0f5d7ca7f8ecd75eab1b7ddb2f272cd74020c37e43f8db7fe11637b99"
            },
            "downloads": -1,
            "filename": "commonroad_clcs-2025.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a33b0a662c735b343fe5a5330bb7bc7b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.12,>=3.9",
            "size": 3046047,
            "upload_time": "2025-02-17T09:08:43",
            "upload_time_iso_8601": "2025-02-17T09:08:43.480848Z",
            "url": "https://files.pythonhosted.org/packages/32/85/117725c6c43e7120e82394a405809d98640d4193ede643d8267d0cbcbdf5/commonroad_clcs-2025.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-17 09:08:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CommonRoad",
    "github_project": "commonroad-curvilinear-coordinate-system",
    "github_not_found": true,
    "lcname": "commonroad-clcs"
}
        
Elapsed time: 1.38881s