Skip to content

Commit be390bc

Browse files
committed
* Version 7.0.1
* Fixes snstac#42: ADSBCOT CoT Events not showing up in iTAK.
1 parent 9ee7566 commit be390bc

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## ADSBCOT 7.0.1
2+
3+
- Fixes #42: ADSBCOT CoT Events are not showing up in iTAK.
4+
15
## ADSBCOT 7.0.0
26

37
- New for 2024!

adsbcot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
:source: <https://github.com/snstac/adsbcot>
2222
"""
2323

24-
__version__ = "7.0.0"
24+
__version__ = "7.0.1"
2525
__author__ = "Greg Albrecht <[email protected]>"
2626
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com"
2727
__license__ = "Apache License, Version 2.0"

adsbcot/functions.py

+12-10
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,14 @@ def adsb_to_cot_xml( # NOQA pylint: disable=too-many-locals,too-many-branches,t
225225
track.set("speed", aircot.functions.get_speed(craft.get("gs")))
226226

227227
detail = ET.Element("detail")
228+
229+
# Remarks should always be the first sub-entity within the Detail entity.
230+
remarks = ET.Element("remarks")
231+
remarks_fields.append(f"{cot_host_id}")
232+
_remarks = " ".join(list(filter(None, remarks_fields)))
233+
remarks.text = _remarks
234+
detail.append(remarks)
235+
228236
detail.append(contact)
229237
detail.append(track)
230238
detail.append(aircotx)
@@ -235,18 +243,14 @@ def adsb_to_cot_xml( # NOQA pylint: disable=too-many-locals,too-many-branches,t
235243
usericon.set("iconsetpath", icon)
236244
detail.append(usericon)
237245

238-
remarks = ET.Element("remarks")
239-
remarks_fields.append(f"{cot_host_id}")
240-
_remarks = " ".join(list(filter(None, remarks_fields)))
241-
remarks.text = _remarks
242-
detail.append(remarks)
243-
244246
cot_d = {
245247
"lat": str(lat),
246248
"lon": str(lon),
247249
"ce": str(craft.get("nac_p", "9999999.0")),
248250
"le": str(craft.get("nac_v", "9999999.0")),
249-
"hae": aircot.functions.get_hae(craft.get("alt_geom")), # Multiply alt_geom by "Clarke 1880 (international foot)"
251+
"hae": aircot.functions.get_hae(
252+
craft.get("alt_geom")
253+
), # Multiply alt_geom by "Clarke 1880 (international foot)"
250254
"uid": cot_uid,
251255
"cot_type": cot_type,
252256
"stale": cot_stale,
@@ -271,7 +275,5 @@ def adsb_to_cot(
271275
"""Return CoT XML object as an XML string."""
272276
cot: Optional[ET.Element] = adsb_to_cot_xml(craft, config, known_craft)
273277
return (
274-
b"\n".join([pytak.DEFAULT_XML_DECLARATION, ET.tostring(cot)])
275-
if cot
276-
else None
278+
b"\n".join([pytak.DEFAULT_XML_DECLARATION, ET.tostring(cot)]) if cot else None
277279
)

setup.cfg

+13
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,16 @@ test =
9191
pylint
9292
flake8
9393
black
94+
[isort]
95+
profile = black
96+
97+
[flake8]
98+
max-line-length = 88
99+
extend-ignore = E203, E704
100+
101+
[pylint]
102+
max-line-length = 88
103+
104+
[pycodestyle]
105+
ignore = E203
106+
max_line_length = 88

0 commit comments

Comments
 (0)