PatrickPromitzer

Results 97 comments of PatrickPromitzer
trafficstars

You could try using a .bin file of a default map, and check if it can be loaded. You could rule out the file having a problem.

``` hero_vehicle.set_enable_gravity(False) ``` https://carla.readthedocs.io/en/0.9.15/python_api/#setters

Note: https://github.com/cloud-py-api/nc_py_api/blob/1e667d42dbb145f154a869be4bc7c91a697dc0b7/CHANGELOG.md?plain=1#L9 `nc_py_api.ex_app.events_listener.EventsListener` was the workaround to this problem.

I checked my code and the nextcloud responses. I don't know what I changed, but for unknown reasons it works now. Here the code. ```python import pathlib import time import...

I found the problem again @bigcat88 The webhook call has no permissions ```python def file_event_handler(event_data: dict, nc: NextcloudApp): try: nc_file = nc.files.by_id(str(event_data["event"]["node"]["id"])) except Exception as e: error_string = 'Exception:\n', traceback.format_exc()...

>I modifed your example a bit, and I see that basic_file_checker is called, but Auth for it to be executed is not passed, so looks like Nextcloud does not send...

Content of ```python wh_list = nc.webhooks.get_list() wh_list = [i.__dict__ for i in wh_list] ``` ```json [ { "_raw_data": { "id": 404, "appId": "basic_file_checker", "userId": null, "httpMethod": "POST", "uri": "/basic_file_checker", "event":...

I checked the solution and it works. Thank you for your help. I can add a simple version of my code to the example for future reference.

Hi, if you want the Road data of a Map, you can get it with ```python client = carla.Client("127.0.0.1", 2000) world = client.get_world() map = world.get_map() opendrive_string = map.to_opendrive() ```...

I didn't find something fitting, but with the Semantic LIDAR sensor you should be able to crate one yourself. https://carla.readthedocs.io/en/latest/ref_sensors/#semantic-lidar-sensor Set the Semantic Lidar to different places of the map,...