diff --git a/Docs/img/unreal_lhcs.png b/Docs/img/unreal_lhcs.png
new file mode 100644
index 000000000..0a85ae82b
Binary files /dev/null and b/Docs/img/unreal_lhcs.png differ
diff --git a/Docs/python_api.md b/Docs/python_api.md
index a7ab163a2..5e33db757 100644
--- a/Docs/python_api.md
+++ b/Docs/python_api.md
@@ -1999,7 +1999,7 @@ Iterate over the [carla.RadarDetection](#carla.RadarDetection) retrieved as data
## carla.Rotation
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.
-
The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`.
![UE4_Rotation](https://d26ilriwvtzlb.cloudfront.net/8/83/BRMC_9.jpg) *Unreal Engine's coordinates system*.
+
The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`.
![UE4_Rotation](/img/unreal_lhcs.png) *Unreal Engine's coordinates system*.
### Instance Variables
- **pitch** (_float - degrees_)
diff --git a/Docs/ref_sensors.md b/Docs/ref_sensors.md
index d346f338b..d18cbbd73 100644
--- a/Docs/ref_sensors.md
+++ b/Docs/ref_sensors.md
@@ -940,21 +940,19 @@ While the visibility is simulated within CARLA, the scenario can be configured b
* __Output:__ [carla.CAMData](python_api.md#carla.CAMData), triggered according to the ETSI CAM standard, unless configured otherwise
Triggering conditions according to ETSI standard:
-- Heading angle change > $4$°
-- Position difference > $4$ m
-- Speed change > $5$ m/s
+- Heading angle change > 4°
+- Position difference > 4 m
+- Speed change > 5 m/s
- Time elapsed > CAM Generation time (configurable)
-- Low Frequency Container Time Elapsed $> 500$ ms
+- Low Frequency Container Time Elapsed > 500 ms
For the CAM V2X sensor, additional blueprint attributes apply:
| Blueprint attribute | Type | Default | Description |
|-------------------------|--------|-------------------------|------------------------------------|
-|
Message generation |
-| gen\_cam\_min | float | $0.1$ | Minimum elapsed time between two successive CAMs in seconds (s) |
-| gen\_cam\_max | float | $1.0$ | Maximum elapsed time between two successive CAMs in seconds (s) |
+| gen\_cam\_min | float | 0.1 | Minimum elapsed time between two successive CAMs in seconds (s) |
+| gen\_cam\_max | float | 1.0 | Maximum elapsed time between two successive CAMs in seconds (s) |
| fixed\_rate | bool | false [true] | Generate a CAM in every CARLA tick (only for debug purposes, will result in slowdown) |
-| | Data generation |
| `noise_vel_stddev_x` | float | 0\.0 | Standard deviation parameter in the noise model for velocity (X axis). |
| `noise_accel_stddev_x` | float | 0\.0 | Standard deviation parameter in the noise model for acceleration (X axis). |
| `noise_accel_stddev_y` | float | 0\.0 | Standard deviation parameter in the noise model for acceleration (Y axis). |
@@ -993,14 +991,14 @@ Example:
| Blueprint attribute | Type | Default | Description |
|-------------------------|--------|-------------------------|------------------------------------|
-| transmit\_power | float | $21.5$ | Sender transmission power in dBm |
-| receiver\_sensitivity | float | $-99$ | Receiver sensitivity in dBm |
-| frequency\_ghz | float | $5.9$ | Transmission frequency in GHz. 5.9 GHz is standard for several physical channels. |
-| noise\_seed | int | $0$ | Random parameter for initialization of noise |
-| filter\_distance | float | $500$ | Maximum transmission distance in meter, path loss calculations above are skipped for simulation speed |
-| | __Path loss model parameters__ |
-| combined\_antenna\_gain | float | $10.0$ | Combined gain of sender and receiver antennas in dBi, parameter for radiation efficiency and directivity |
-| d\_ref | float | $ 1.0 $ | reference distance for Log-distance path loss model in meter |
+| transmit\_power | float | 21.5 | Sender transmission power in dBm |
+| receiver\_sensitivity | float | -99 | Receiver sensitivity in dBm |
+| frequency\_ghz | float | 5.9 | Transmission frequency in GHz. 5.9 GHz is standard for several physical channels. |
+| noise\_seed | int | 0 | Random parameter for initialization of noise |
+| filter\_distance | float | 500 | Maximum transmission distance in meter, path loss calculations above are skipped for simulation speed |
+| __Path loss model parameters__ | | | |
+| combined\_antenna\_gain | float | 10.0 | Combined gain of sender and receiver antennas in dBi, parameter for radiation efficiency and directivity |
+| d\_ref | float | 1.0 | reference distance for Log-distance path loss model in meter |
| path\_loss\_exponent | float | 2.7 | Loss parameter for non-line of sight due to building obstruction |
| scenario | string | urban | Options: [urban, rural, highway], defines the fading noise parameters |
| path\_loss\_model | string | geometric | general path loss model to be used. Options: [geometric, winner] |
diff --git a/PythonAPI/docs/geom.yml b/PythonAPI/docs/geom.yml
index eb71836e4..0d2e6e003 100644
--- a/PythonAPI/docs/geom.yml
+++ b/PythonAPI/docs/geom.yml
@@ -328,7 +328,7 @@
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.
The constructor method follows a specific order of declaration: `(pitch, yaw, roll)`, which corresponds to `(Y-rotation,Z-rotation,X-rotation)`.
- ![UE4_Rotation](https://d26ilriwvtzlb.cloudfront.net/8/83/BRMC_9.jpg)
+ ![UE4_Rotation](/img/unreal_lhcs.png)
*Unreal Engine's coordinates system*
# - PROPERTIES -------------------------
instance_variables:
|