Hi,
I have an issue finding flight events in the exported flight logs.
In the TacView program Flight Log I see:
xyz has fired 90x weapons.shells.GAU8_30_AP
T-90 has been hit 39 times by weapons.shells.GAU8_30_AP (xyz)
T-90 has been hit 48 times by weapons.shells.GAU8_30_AP (xyz)
Now I export the flight log as XML and look for these three events. For the first line I find
<Event>
<Time>1915.47</Time>
<Location>
<Longitude>56.4641612</Longitude>
<Latitude>27.4958029</Latitude>
<Altitude>322.45</Altitude>
</Location>
<PrimaryObject ID="278">
<Type>Aircraft</Type>
<Name>A-10C Thunderbolt II</Name>
<Pilot>xyz</Pilot>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Group>Aerial-1</Group>
</PrimaryObject>
<Action>HasFired</Action>
<Occurrences>90</Occurrences>
<SecondaryObject ID="1253">
<Type>Shell</Type>
<Name>weapons.shells.GAU8_30_AP</Name>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Parent>278</Parent>
</SecondaryObject>
</Event>
For the second and third line I find:
<Event>
<Time>1916.05</Time>
<Location>
<Longitude>56.46975</Longitude>
<Latitude>27.494501</Latitude>
<Altitude>138.95</Altitude>
</Location>
<PrimaryObject ID="268">
<Type>Tank</Type>
<Name>T-90</Name>
<Coalition>Neutral</Coalition>
<Country>dz</Country>
<Group>Ground-16</Group>
</PrimaryObject>
<Action>HasBeenHitBy</Action>
<Occurrences>39</Occurrences>
<SecondaryObject ID="1252">
<Type>Shell</Type>
<Name>weapons.shells.GAU8_30_AP</Name>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Parent>278</Parent>
</SecondaryObject>
<ParentObject ID="278">
<Type>Aircraft</Type>
<Name>A-10C Thunderbolt II</Name>
<Pilot>xyz</Pilot>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Group>Aerial-1</Group>
</ParentObject>
</Event>
<Event>
<Time>1916.10</Time>
<Location>
<Longitude>56.4700877</Longitude>
<Latitude>27.4943525</Latitude>
<Altitude>138.64</Altitude>
</Location>
<PrimaryObject ID="264">
<Type>Tank</Type>
<Name>T-90</Name>
<Coalition>Neutral</Coalition>
<Country>dz</Country>
<Group>Ground-16</Group>
</PrimaryObject>
<Action>HasBeenHitBy</Action>
<Occurrences>48</Occurrences>
<SecondaryObject ID="1255">
<Type>Shell</Type>
<Name>weapons.shells.GAU8_30_AP</Name>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Parent>278</Parent>
</SecondaryObject>
<ParentObject ID="278">
<Type>Aircraft</Type>
<Name>A-10C Thunderbolt II</Name>
<Pilot>xyz</Pilot>
<Coalition>Enemies</Coalition>
<Country>us</Country>
<Group>Aerial-1</Group>
</ParentObject>
</Event>
Now, my problem is: The fired bullets have the id 1253. However, when hitting the targets, they have the ids 1252 and 1255. How could I know that 1252 and 1255 belong to 1253?