1pub const COT_BASE_EXAMPLE: &str = r#"
3<?xml version='1.0' standalone='yes'?>
4<event version="2.0"
5 uid="J-01334"
6 type="a-h-A-M-F-U-M"
7 time="2005-04-05T11:43:38.07Z"
8 start="2005-04-05T11:43:38.07Z"
9 stale="2005-04-05T11:45:38.07Z" >
10 <detail>
11 </detail>
12 <point lat="30.0090027" lon="-85.9578735" ce="45.3"
13 hae="-42.6" le="99.5" />
14</event>
15"#;
16
17pub const COT_TRACK_EXAMPLE: &str = r#"
18<?xml version="1.0" encoding="UTF-8"?>
19<event version="2.0" uid="1228717" type="a-f-A-M-F-Q" how="m-g" time="2023-08-21T11:47:48.0Z" start="2023-08-21T12:47:02.283Z" stale="2023-08-21T12:57:07.283Z" qos="5-r-c">
20<point ce="10.0" le="10.0" hae="1321.29992675781" lat="-23.14187321890312" lon="126.87965999741635"/>
21<detail> <track course="0" speed="0" version="0.2"/>
22<contact callsign="BLAMO-IDM1-3V"/>
23<_flow-tags_ TAK-Server-ae386e25da33412635239519c6f0e1ae="2023-07-21T11:52:33Z"/>
24</detail>
25</event>
26"#;
27
28pub const COT_TRACK_DETAIL_LINES: [&str; 3] = [
29 r#"<track course="0" speed="0" version="0.2"/>"#,
30 r#"<contact callsign="BLAMO-IDM1-3V"/>"#,
31 r#"<_flow-tags_ TAK-Server-ae386e25da33412635239519c6f0e1ae="2023-07-21T11:52:33Z"/>"#,
32];
33
34pub const COT_STRIKE_EXAMPLE: &str = r#"
35<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
36<event version="2.0" type="t-k" uid="FAB.BOOT.a-h-G-U-C-I_MSN-01" time="2023-10-24T03:16:14.897441Z" start="2023-10-24T03:16:15.897441Z" stale="2023-10-24T03:18:14.897441Z" how="m-g" access="Unclassified" opex="e" qos="3-i-g">
37 <point lat="-35.3414455365394" lon="149.9822337129055" hae="1.0" le="10.0" ce="5.0" />
38 <detail>
39 <takv platform="PyTAK" version="6.2.1-beta1" />
40 <contact callsign="FAB_MSN-01" email="BOOT@usarmy.mil" />
41 <__group name="Purple" role="Team Member" />
42 <_tasking= TASK@FABNUM”=“MDN12345” TASK@ASSET=“YOURASSETUID12345” TASK@TGT=“THE TARGET OBJECT UID12345” />
43 <remarks FAB_CCMA_BOOT="Use the force Luke. Object location is in point" time="2023-10- 24T03:16:14.985238Z" />
44 <_flow-tags_ FAB_DESERT="2023-10-24T03:16:14.985238Z" FAB_CCMA_AFSATE="2023-10-24T03:16:14.985238Z" />
45 </detail>
46</event>
47"#;
48
49pub const COT_STRIKE_DETAIL_LINES: [&str; 6] = [
50 r#"<takv platform="PyTAK" version="6.2.1-beta1" />"#,
51 r#"<contact callsign="FAB_MSN-01" email="BOOT@usarmy.mil" />"#,
52 r#"<__group name="Purple" role="Team Member" />"#,
53 r#"<_tasking= TASK@FABNUM”=“MDN12345” TASK@ASSET=“YOURASSETUID12345” TASK@TGT=“THE TARGET OBJECT UID12345” />"#,
54 r#"<remarks FAB_CCMA_BOOT="Use the force Luke. Object location is in point" time="2023-10- 24T03:16:14.985238Z" />"#,
55 r#"<_flow-tags_ FAB_DESERT="2023-10-24T03:16:14.985238Z" FAB_CCMA_AFSATE="2023-10-24T03:16:14.985238Z" />"#,
56];