Skip to content

Commit 6bc06dd

Browse files
VERSION 0.9.18
1 parent be45645 commit 6bc06dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "v2xflexstack"
7-
version = "0.9.17"
7+
version = "0.9.18"
88
authors = [
99
{ name = "Jordi Marias-i-Parella", email = "[email protected]" },
1010
{ name = "Daniel Ulied Guevara", email = "[email protected]" },

src/flexstack/facilities/ca_basic_service/cam_transmission_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def fullfill_high_frequency_container_with_tpv_data(self, tpv: dict) -> None:
356356
if "track" in tpv.keys():
357357
self.cam["cam"]["camParameters"]["highFrequencyContainer"][1]["heading"][
358358
"headingValue"
359-
] = int(tpv["track"])
359+
] = int(tpv["track"]*10)
360360
if "epd" in tpv.keys():
361361
self.cam["cam"]["camParameters"]["highFrequencyContainer"][1]["heading"][
362362
"headingConfidence"

src/flexstack/facilities/vru_awareness_service/vam_transmission_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def fullfill_high_frequency_container_with_tpv_data(self, tpv: dict) -> None:
475475
if "track" in tpv.keys():
476476
self.vam["vam"]["vamParameters"]["vruHighFrequencyContainer"]["heading"][
477477
"headingValue"
478-
] = int(tpv["track"])
478+
] = int(tpv["track"]*10)
479479
if "epd" in tpv.keys():
480480
self.vam["vam"]["vamParameters"]["vruHighFrequencyContainer"]["heading"][
481481
"headingConfidence"

0 commit comments

Comments
 (0)