Translations for our friends around the world.

Click on banner for Tacview website

Author Topic: view radar track from irl fly  (Read 3075 times)

0 Members and 1 Guest are viewing this topic.

Offline Ninja

  • New member
  • *
  • Posts: 4
view radar track from irl fly
« on: February 10, 2021, 03:12:22 PM »
Hi !

I'm working in aviation and once gave me a task on tacview. I have to understand how we can use tacview with our real fly datas.
I'm totally new on tacview. By reading the documentation I understood tacview can be used with irl datas if they are in a correct format.

I pretty easily got the trajectory but I'm supposed to plot radar tracks as well. I saw this option was avaliable in some simulator but I didn't get well if real life files can do the same job. Maybe considering them like object or using telemetry can give me some result, but I still don't understand well how my files should look like.
If you have any advice or idea that could help me I'll take it ;)

(I'm sorry if that kind of question has already been asked, I tried to check before... )
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions

Offline BuzyBee

  • Tacview
  • *
  • Posts: 101
    • Tacview
Re: view radar track from irl fly
« Reply #1 on: February 11, 2021, 07:21:00 PM »
Hi Ninja,

Are you creating your own ACMI files or are you working with data obtained from a GPS or some other source?

The following properties can be used to create radar cones:

RadarMode - number   - Radar mode (0 = off, 1 = on)
RadarAzimuth - deg - Radar azimuth (heading) relative to aircraft orientation
RadarElevation - deg - Radar elevation relative to aircraft orientation
RadarRoll - deg - Radar roll angle relative to aircraft orientation
RadarRange - m   - Radar scan range
RadarHorizontalBeamwidth   - deg - Radar beamwidth in azimuth
RadarVerticalBeamwidth - deg - Radar beamwidth in elevation

I attached a small example of an acmi file with an anti-aircraft object with these properties included, forming a radar code.
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions
Click.gif

Offline Ninja

  • New member
  • *
  • Posts: 4
Re: view radar track from irl fly
« Reply #2 on: February 12, 2021, 02:21:07 PM »
Thanks for your answer it's actually help me a lot !

I not sure yet for the files, I suppose I will have to create my own acmi files with the datas from the flies. There are in a total strange format

Is it possible to create just point instead of cones? I wasn't clear enough on my first post but I was thinking about plotting points using the guessed locations of each radar track. I guess this may be even more easy to do but I'm not very confident with acmi files... Actually could just casual object be my tracks ? But on the other hand I would prefer if their location could be define respect to the plane whereas objects are define on they own without any refence in location I suppose... 
« Last Edit: February 12, 2021, 02:38:19 PM by Ninja »
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions

Offline BuzyBee

  • Tacview
  • *
  • Posts: 101
    • Tacview
Re: view radar track from irl fly
« Reply #3 on: February 12, 2021, 03:24:52 PM »
Hi Ninja,

The properties listed below can be used to plot a dotted/dashed line representing a radar track in any direction:

LockedTargetMode - number - Primary target lock mode (0 = off, 1 = on)
LockedTargetAzimuth   - deg -Primary target azimuth (heading) relative to aircraft orientation
LockedTargetElevation - deg - Primary target elevation relative to aircraft orientation
LockedTargetRange - m - Primary target distance to aircraft

I attached a picture and a basic acmi file using these properties.

I would love to take a look at your raw data and know where it came from (i.e. what GPS or other source) because we are always looking to natively support file formats when it makes sense to do so.
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions
Click.gif

Offline Ninja

  • New member
  • *
  • Posts: 4
Re: view radar track from irl fly
« Reply #4 on: February 13, 2021, 10:42:58 AM »
Hi buzybee !

Thanks again for your answer! I understand better how all of that works thank to your posts, but I'm still a bit confused...


100000000,T=4.6243665|4.6850367|28.56,Type=Ground+AntiAircraft,Color=Blue,Name=sa-17,LockedTargetMode =1,LockedTargetAzimuth=45,LockedTargetElevation =45,LockedTargetRange =1000
Does this line define the object sa-17 ? Which means its location with T || are its true coordinate and then the lockedtarget**** define its position respect to a plane we actually haven't defined yet
Or does it define the plane himself where T||| will be it's location and lockedtaget*** the location of the radar track?


I'm guessing the correct answer is probably the first one... Does that mean we have to calculate the exact coordinates from the position relative to the aircraft of vice versa ?

Correct me if I'm wrong, to plot several radar tracks in acmi format I will have to name each one with a different id, have their coordinates and location respect to the plane and put all that in the way you show me. Then i will still be able to plot the aitcraft as well using again another id and a different type.
Finally to make all of this work in time I will add new time references using #6 for exemple and give the new locations of each object I create using their id and leaving a blank will mean nothing/one property didn't change for this track.

As for the raw data, I'm afraid i can't give them to you, there are not mine and I can't decide by myself to put them here or not even if I know this could really help me, I'm sorry ...
« Last Edit: February 13, 2021, 02:17:21 PM by Ninja »
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions

Offline BuzyBee

  • Tacview
  • *
  • Posts: 101
    • Tacview
Re: view radar track from irl fly
« Reply #5 on: February 14, 2021, 11:15:45 PM »
Code: [Select]
100000000,T=4.6243665|4.6850367|28.56,Type=Ground+AntiAircraft,Color=Blue,Name=sa-17,

defines the object sa-17

Code: [Select]
LockedTargetMode =1,LockedTargetAzimuth=45,LockedTargetElevation =45,LockedTargetRange =1000

defines the dotted line emanating from the sa-17.

You can also lock other aircraft in the same acmi file like this:

Code: [Select]
100000001,T=4.581289|4.7005473|1524,Type=Air+FixedWing,Color=Blue,Name=f-14
100000000,T=4.6243665|4.6850367|28.56,Type=Ground+AntiAircraft,Color=Blue,Name=sa-17,LockedTargetMode=1,LockedTarget=100000001

I attached this .acmi file.

Right now there is no functionality to have multiple radar tracks coming from the same object but this is being considered for a future update.
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions
Click.gif

Offline Ninja

  • New member
  • *
  • Posts: 4
Re: view radar track from irl fly
« Reply #6 on: February 18, 2021, 11:20:49 AM »
Hi buzybee,

Thanks for these clarifications. I also tried to add multiple tracks by myself without succeeding, now I understand it’s not possible either…

I guess the best option left to me right now is to plot each track with its own id and location. It will not be link to the aircraft anymore but I guess it’s okay.

 

I’m looking forward to see these new updates anyway ;)
funny
0
informative
0
Thanks
0
No reactions
No reactions
No reactions

Tags:
     

    How to view kml tracks from Fly Is Fun on Tackview

    Started by lonelyman

    Replies: 15
    Views: 10975
    Last post November 20, 2020, 10:02:57 PM
    by BuzyBee