Skip to content

Commit 5ab4425

Browse files
authored
Merge branch 'dev' into doc-fixes
2 parents 0a095b9 + 2a2cc5f commit 5ab4425

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

Docs/img/unreal_lhcs.png

37.7 KB
Loading

Docs/python_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2012,7 +2012,7 @@ Iterate over the [carla.RadarDetection](#carla.RadarDetection) retrieved as data
20122012

20132013
## carla.Rotation<a name="carla.Rotation"></a>
20142014
Class that represents a 3D rotation and therefore, an orientation in space. CARLA uses the Unreal Engine coordinates system. This is a Z-up left-handed system. <br>
2015-
<br>The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`. <br> <br>![UE4_Rotation](https://d26ilriwvtzlb.cloudfront.net/8/83/BRMC_9.jpg) *Unreal Engine's coordinates system*.
2015+
<br>The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`. <br> <br>![UE4_Rotation](/img/unreal_lhcs.png) *Unreal Engine's coordinates system*.
20162016

20172017
### Instance Variables
20182018
- <a name="carla.Rotation.pitch"></a>**<font color="#f8805a">pitch</font>** (_float<small> - degrees</small>_)

Docs/ref_sensors.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -940,21 +940,19 @@ While the visibility is simulated within CARLA, the scenario can be configured b
940940
* __Output:__ [carla.CAMData](python_api.md#carla.CAMData), triggered according to the ETSI CAM standard, unless configured otherwise
941941

942942
Triggering conditions according to ETSI standard:
943-
- Heading angle change > $4$°
944-
- Position difference > $4$ m
945-
- Speed change > $5$ m/s
943+
- Heading angle change > 4°
944+
- Position difference > 4 m
945+
- Speed change > 5 m/s
946946
- Time elapsed > CAM Generation time (configurable)
947-
- Low Frequency Container Time Elapsed $> 500$ ms
947+
- Low Frequency Container Time Elapsed > 500 ms
948948

949949
For the CAM V2X sensor, additional blueprint attributes apply:
950950

951951
| Blueprint attribute | Type | Default | Description |
952952
|-------------------------|--------|-------------------------|------------------------------------|
953-
| <td colspan=4> Message generation |
954-
| gen\_cam\_min | float | $0.1$ | Minimum elapsed time between two successive CAMs in seconds (s) |
955-
| gen\_cam\_max | float | $1.0$ | Maximum elapsed time between two successive CAMs in seconds (s) |
953+
| gen\_cam\_min | float | 0.1 | Minimum elapsed time between two successive CAMs in seconds (s) |
954+
| gen\_cam\_max | float | 1.0 | Maximum elapsed time between two successive CAMs in seconds (s) |
956955
| fixed\_rate | bool | false [true] | Generate a CAM in every CARLA tick (only for debug purposes, will result in slowdown) |
957-
| <td colspan=4> Data generation |
958956
| `noise_vel_stddev_x` | float | 0\.0 | Standard deviation parameter in the noise model for velocity (X axis). |
959957
| `noise_accel_stddev_x` | float | 0\.0 | Standard deviation parameter in the noise model for acceleration (X axis). |
960958
| `noise_accel_stddev_y` | float | 0\.0 | Standard deviation parameter in the noise model for acceleration (Y axis). |
@@ -993,14 +991,14 @@ Example:
993991

994992
| Blueprint attribute | Type | Default | Description |
995993
|-------------------------|--------|-------------------------|------------------------------------|
996-
| transmit\_power | float | $21.5$ | Sender transmission power in dBm |
997-
| receiver\_sensitivity | float | $-99$ | Receiver sensitivity in dBm |
998-
| frequency\_ghz | float | $5.9$ | Transmission frequency in GHz. 5.9 GHz is standard for several physical channels. |
999-
| noise\_seed | int | $0$ | Random parameter for initialization of noise |
1000-
| filter\_distance | float | $500$ | Maximum transmission distance in meter, path loss calculations above are skipped for simulation speed |
1001-
| <td colspan=4> __Path loss model parameters__ |
1002-
| combined\_antenna\_gain | float | $10.0$ | Combined gain of sender and receiver antennas in dBi, parameter for radiation efficiency and directivity |
1003-
| d\_ref | float | $ 1.0 $ | reference distance for Log-distance path loss model in meter |
994+
| transmit\_power | float | 21.5 | Sender transmission power in dBm |
995+
| receiver\_sensitivity | float | -99 | Receiver sensitivity in dBm |
996+
| frequency\_ghz | float | 5.9 | Transmission frequency in GHz. 5.9 GHz is standard for several physical channels. |
997+
| noise\_seed | int | 0 | Random parameter for initialization of noise |
998+
| filter\_distance | float | 500 | Maximum transmission distance in meter, path loss calculations above are skipped for simulation speed |
999+
| __Path loss model parameters__ | | | |
1000+
| combined\_antenna\_gain | float | 10.0 | Combined gain of sender and receiver antennas in dBi, parameter for radiation efficiency and directivity |
1001+
| d\_ref | float | 1.0 | reference distance for Log-distance path loss model in meter |
10041002
| path\_loss\_exponent | float | 2.7 | Loss parameter for non-line of sight due to building obstruction |
10051003
| scenario | string | urban | Options: [urban, rural, highway], defines the fading noise parameters |
10061004
| path\_loss\_model | string | geometric | general path loss model to be used. Options: [geometric, winner] |

PythonAPI/docs/geom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@
328328
Class that represents a 3D rotation and therefore, an orientation in space. CARLA uses the Unreal Engine coordinates system. This is a Z-up left-handed system. <br>
329329
330330
<br>The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`. <br>
331-
<br>![UE4_Rotation](https://d26ilriwvtzlb.cloudfront.net/8/83/BRMC_9.jpg)
331+
<br>![UE4_Rotation](/img/unreal_lhcs.png)
332332
*Unreal Engine's coordinates system*
333333
# - PROPERTIES -------------------------
334334
instance_variables:

0 commit comments

Comments
 (0)