@@ -225,6 +225,14 @@ def adsb_to_cot_xml( # NOQA pylint: disable=too-many-locals,too-many-branches,t
225
225
track .set ("speed" , aircot .functions .get_speed (craft .get ("gs" )))
226
226
227
227
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
+
228
236
detail .append (contact )
229
237
detail .append (track )
230
238
detail .append (aircotx )
@@ -235,18 +243,14 @@ def adsb_to_cot_xml( # NOQA pylint: disable=too-many-locals,too-many-branches,t
235
243
usericon .set ("iconsetpath" , icon )
236
244
detail .append (usericon )
237
245
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
-
244
246
cot_d = {
245
247
"lat" : str (lat ),
246
248
"lon" : str (lon ),
247
249
"ce" : str (craft .get ("nac_p" , "9999999.0" )),
248
250
"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)"
250
254
"uid" : cot_uid ,
251
255
"cot_type" : cot_type ,
252
256
"stale" : cot_stale ,
@@ -271,7 +275,5 @@ def adsb_to_cot(
271
275
"""Return CoT XML object as an XML string."""
272
276
cot : Optional [ET .Element ] = adsb_to_cot_xml (craft , config , known_craft )
273
277
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
277
279
)
0 commit comments