Commit Graph

344 Commits

Author SHA1 Message Date
Néstor Subirón 972211b1a8
Merge branch 'master' into patch-1 2019-01-25 10:02:49 +01:00
nsubiron 6c8499c8c9 Upgrade to UE4.21 2019-01-23 18:57:26 +01:00
Pasch, Frederik 89af74d967 Add support for a gnss sensor
An initial reference location is read from the header of the OpenDRIVE definition (/OpenDRIVE/header/geoReference)

The expected format is based on the Proj4 syntax:
+lat_0=<LATITUDE as double> +lon_0=<LONGITUDE as double)

Example (Town01):
<OpenDRIVE>
    <header revMajor="1" revMinor="4" name="" version="1" date="2018-10-26T12:17:35" north="2.0479999989271146e+1" south="-3.4888998413085938e+2" east="4.1446086126736287e+2" west="-2.0712774024007370e+1" vendor="VectorZero">
        <geoReference><![CDATA[+lat_0=4.9000000000000000e+1 +lon_0=8.0000000000000000e+0]]></geoReference>
    </header>
...
2019-01-23 17:49:01 +01:00
nsubiron aeecd3d6eb Rename get_vehicle_control to get_control to be consistent with walkers 2019-01-22 19:54:57 +01:00
nsubiron cdd3c83ba0 Update docs and changelog 2019-01-22 11:52:22 +01:00
nsubiron 5295261aca Add forward vector to rotations and transforms 2019-01-17 11:41:14 +01:00
Bernat d83f2f454e Renamed property tick_interval to sensor_tick 2019-01-16 10:46:16 +01:00
nsubiron 7b75f514ef Add how_to_make_a_new_map.md to docs 2019-01-15 20:04:19 +01:00
Steven Basart 15f654a306
Merge branch 'master' into patch-1 2019-01-10 16:15:25 -06:00
manishthani e712f6d443
Merge branch 'master' into Issue#752 2019-01-10 14:52:24 +01:00
Marc Garcia Puig 00b600fcc3
Merge branch 'master' into patch-1 2019-01-10 14:24:17 +01:00
nsubiron 238d1770f6 Move GitHub templates to .github folder 2019-01-09 13:01:13 +01:00
manishthani 7a163c2320 Extended functionality of point transforms 2019-01-08 11:19:12 +01:00
Steven Basart c33c9d41b5
Added Windows 8.1 SDK as required
Added a note that Windows 8.1 SDK is required for installation on Windows.
2018-12-30 20:20:58 -05:00
Nishanth Jois f8a52442ee
Minor changes to python_api_tutorial.md 2018-12-26 16:26:40 +05:30
nsubiron d4f6c24c64 Update changelog and increase version 2018-12-21 22:52:33 +01:00
nsubiron 6923c41989 Update coding standard 2018-12-21 19:50:54 +01:00
germanros1987 93fdacfc09
Merge master into Docs_NewMap 2018-12-18 13:02:47 -08:00
XGodina c620419df5 Put more screenshot in Docs - How to make a new map 2018-12-18 10:09:11 +01:00
nsubiron 9a16cf9a03 Documentation fixes 2018-12-17 00:05:51 +01:00
nsubiron 1061e0f395 Add CARLA modules image 2018-12-16 23:35:54 +01:00
nsubiron 03c717c065 Close #695, warn about physics engine clamped to 10FPS 2018-12-16 11:21:55 +01:00
nsubiron fa6bfa7afd Fix broken link 2018-12-16 10:56:52 +01:00
germanros1987 b11bfcfdb1
Update how_to_make_a_new_map.md
Language review!
2018-12-15 23:28:20 -08:00
nsubiron c19495d72a Several documentation fixes and rewording 2018-12-16 00:06:03 +01:00
nsubiron 4661c24899 Add find function to actor list 2018-12-16 00:05:15 +01:00
nsubiron 91b79687ef Rename Python API tutorial file 2018-12-16 00:04:30 +01:00
nsubiron 668c509484 Fill Python API tutorial 2018-12-16 00:02:22 +01:00
nsubiron e464913014 Update cameras and sensors documentation 2018-12-15 17:35:04 +01:00
nsubiron 559ebe6c23 Improve configuring the simulation 2018-12-13 20:28:24 +01:00
nsubiron e6eb1e69e9 Remove outdated documentation 2018-12-13 20:28:24 +01:00
nsubiron a8b4d0ffa1 Overview Python API doc (draft) 2018-12-13 20:28:24 +01:00
nsubiron 46b2b00173 Update release README 2018-12-13 20:27:50 +01:00
nsubiron 4025543177 Rewrite getting started documentation 2018-12-13 20:27:50 +01:00
nsubiron 8898df3255 Fixes to download page 2018-12-13 20:27:49 +01:00
nsubiron 118b1aa891 Fix links and prettify 2018-12-13 19:57:47 +01:00
nsubiron ee7591ab33 Rename files 2018-12-13 19:56:37 +01:00
XGodina 550e2ff1e4 Documentation on how to create a new map 2018-12-13 19:53:31 +01:00
German Ros 481eb4650b README updated with new road map 2018-12-13 16:00:21 +01:00
Bernd Gassmann bd710c339c Provide parent/attribute content of Actors via python interface
While creating the new carla ros bridge some extensions became necessary
within CARLA:

The parent property of an actor via python interface is not yet filled.
Therefore, the parent_id of Actors has to be transferred from the CARLA
server via rpc interface.

In addition, actor attributes are published via python interface.

Changes in detail:

carla/rpc/Actor.h:
- add parent_id field to the Actor class for rpc transport

TheNewCarlaServer.cpp:
- fill the parent_id field with the appropriate value

client/ActorList:
- added GetActor() function to get an actor by id

client/ActorVariant:
- added actor_list optional parameter to Get() and MakeActor() function
which allows to query for the parent actor in case the actor_list is
available

client/ActorAttribute:
- solved problem of independent rpc::ActorAttribute* classes by
introduction of ActorAttributeValueAccess class, to be able to reuse
most of the functions for both ActorAttribueValues and ActorAttributes

ActorBlueprintFunctionLibrary:
- extended actor attributes by attribute 'role_name' having {autopilot,
    scenario, ego_vehicle} as recommended values for vehicles or
    {front,back,...} for sensors to be able to distiguish the different
    actors in a meaningful way when transferring to ROS topic names
- extended vehicle attributes by not-modifiable attribute 'object_type'
to be defined at blueprint creation time to provide ground truth
object classification type

PythonAPI:
- libcarla: provide the actor attributes within python as dictionary
- make use of role_name attribute to provide information required for
ROS bridge to distinguish ego vehicle from others
2018-11-30 16:08:50 +01:00
Fabian Oboril f00f350ca3 Change cmake version from 3.9 to 3.5
No feature of cmake newer than 3.5 is used. Therefore, we can use
cmake 3.5, which is also standard in Ubuntu 16.04, whereas cmake 3.9
is non-standard.
2018-11-20 14:26:48 +01:00
nsubiron cddb98282c Increase version and update changelog 2018-11-16 13:29:40 +01:00
nsubiron e9c75a9522 Update python_api.md 2018-11-15 20:22:28 +01:00
nsubiron 4a77755208 Add more attributes to waypoints 2018-11-15 16:45:35 +01:00
nsubiron e5c4f593d0 Expose map generate all waypoints in Python 2018-11-15 16:45:34 +01:00
nsubiron 4eed57fb87 Expose map topology in Python 2018-11-15 16:45:34 +01:00
nsubiron 6103d59766 Implement lane detector only for points on same road section 2018-11-15 16:29:57 +01:00
nsubiron 9d1b2a12ef Add parent to actor state 2018-11-15 16:29:57 +01:00
nsubiron 503fedeb6b Merge branch 'master' into roads 2018-11-12 14:48:44 +01:00
nsubiron b113b979ca Log vehicle control in world observer 2018-11-08 12:50:11 +01:00