Matthew Moy 1288933 Posted September 24, 2016 at 07:24 PM Posted September 24, 2016 at 07:24 PM (edited) Hello, In Real World on the British Radar System when the aircraft is at a Flight Level there is an F before the Flight Level, so if the aircraft is FL60 it would be F60; Like the "A" for altitude in EuroScope, could we have the "F" for Flight Level? Thanks, Matthew M. Edited September 30, 2016 at 03:24 PM by Guest Link to comment Share on other sites More sharing options...
Mark-Julius Pikat Posted September 26, 2016 at 05:31 PM Posted September 26, 2016 at 05:31 PM Hello, In Real World on the Radar System when the aircraft is at a Flight Level there is an F before the Flight Level, so if the aircraft is FL60 it would be F60; Like the "A" for altitude in EuroScope, could we have the "F" for Flight Level? Thanks, Matthew M. I guess this feature can be easily added, however it really depends on radar system and how it is displayed in each country. Mark-Julius PikatChief Executive Officer of VACC Estonia mark-julius.pikat [at] estvacc.orgHead of VATEUD Examining Program mark-julius.pikat [at] vateud.net Link to comment Share on other sites More sharing options...
Pavel Brodsky Posted September 30, 2016 at 02:59 PM Posted September 30, 2016 at 02:59 PM Lets make it optional. For example our real systems do not use that. Pavel Pavel Brodsky VACC-CZ Link to comment Share on other sites More sharing options...
Kieran Samuel Cross Posted October 15, 2016 at 07:50 PM Posted October 15, 2016 at 07:50 PM In Real World on the British Radar System This is very much controller specific. Controllers in the Swanwick (Mil) control room operate with solely numbers (even for altitudes), eg 360 or 036. This is the same to most military air traffic systems. IIRC from a Swanwick (Civ) controller, Mil and Civ rooms are the same systems, in that the military controller and civ controller see the same thing (just on different scale). I know, that controllers can and often do setup their own displays for their session, so this may be a thing which a controller (or a team) regularly do when controlling a position (for example, EGCC_APP). Kind Regards, Kieran Cross, Link to comment Share on other sites More sharing options...
Nick Botica Posted October 17, 2016 at 03:50 AM Posted October 17, 2016 at 03:50 AM Isn't that already an option? If you untick the Show A for Altitude option doesn't it turn into a 'F'? Link to comment Share on other sites More sharing options...
Matthew Moy 1288933 Posted October 17, 2016 at 04:49 AM Author Posted October 17, 2016 at 04:49 AM Isn't that already an option? If you untick the Show A for Altitude option doesn't it turn into a 'F'? No, it doesn't. Link to comment Share on other sites More sharing options...
Kieran Samuel Cross Posted October 17, 2016 at 04:15 PM Posted October 17, 2016 at 04:15 PM Isn't that already an option? If you untick the Show A for Altitude option doesn't it turn into a 'F'? Just off topic, you have such a cool certificate number . Kind Regards, Kieran Cross, Link to comment Share on other sites More sharing options...
Nick Botica Posted October 17, 2016 at 11:47 PM Posted October 17, 2016 at 11:47 PM Isn't that already an option? If you untick the Show A for Altitude option doesn't it turn into a 'F'? Just off topic, you have such a cool certificate number . Oh cheers.... I worked hard for it haha Link to comment Share on other sites More sharing options...
Nick Botica Posted October 17, 2016 at 11:50 PM Posted October 17, 2016 at 11:50 PM Hello, In Real World on the British Radar System when the aircraft is at a Flight Level there is an F before the Flight Level, so if the aircraft is FL60 it would be F60; Like the "A" for altitude in EuroScope, could we have the "F" for Flight Level? Thanks, Matthew M. Do you have any coding experience? Is it an 'A' below transition or just an 'F' above? You could adapt my code to make a simple plugin: // Above transition, e.g. 12,950 feet if (RadarTarget.GetPosition().GetFlightLevel() >= GetTransitionAltitude() - 50) { snprintf(sItemString, 16, "F"); } else { snprintf(sItemString, 16, "A"); } https://github.com/nickbotica/SkylinePlugIn Link to comment Share on other sites More sharing options...
Matthew Moy 1288933 Posted October 18, 2016 at 12:28 PM Author Posted October 18, 2016 at 12:28 PM Hello, In Real World on the British Radar System when the aircraft is at a Flight Level there is an F before the Flight Level, so if the aircraft is FL60 it would be F60; Like the "A" for altitude in EuroScope, could we have the "F" for Flight Level? Thanks, Matthew M. Do you have any coding experience? Is it an 'A' below transition or just an 'F' above? You could adapt my code to make a simple plugin: // Above transition, e.g. 12,950 feet if (RadarTarget.GetPosition().GetFlightLevel() >= GetTransitionAltitude() - 50) { snprintf(sItemString, 16, "F"); } else { snprintf(sItemString, 16, "A"); } https://github.com/nickbotica/SkylinePlugIn Hello, I would like to have coding experience and know how to code in C++, but I don't.. Link to comment Share on other sites More sharing options...
Kieran Samuel Cross Posted October 18, 2016 at 04:37 PM Posted October 18, 2016 at 04:37 PM Hello, In Real World on the British Radar System when the aircraft is at a Flight Level there is an F before the Flight Level, so if the aircraft is FL60 it would be F60; Like the "A" for altitude in EuroScope, could we have the "F" for Flight Level? Thanks, Matthew M. Do you have any coding experience? Is it an 'A' below transition or just an 'F' above? You could adapt my code to make a simple plugin: // Above transition, e.g. 12,950 feet if (RadarTarget.GetPosition().GetFlightLevel() >= GetTransitionAltitude() - 50) { snprintf(sItemString, 16, "F"); } else { snprintf(sItemString, 16, "A"); } https://github.com/nickbotica/SkylinePlugIn Hello, I would like to have coding experience and know how to code in C++, but I don't.. Try learning on the internet, this could be a great yet simple project for you.. Kind Regards, Kieran Cross, Link to comment Share on other sites More sharing options...
Matthew Moy 1288933 Posted October 19, 2016 at 01:58 PM Author Posted October 19, 2016 at 01:58 PM Try learning on the internet, this could be a great yet simple project for you.. I did actually once tried to learn this code, but I couldn't do it. I don't like how C++ is, I prefer PHP Link to comment Share on other sites More sharing options...
Kieran Samuel Cross Posted October 19, 2016 at 05:26 PM Posted October 19, 2016 at 05:26 PM Try learning on the internet, this could be a great yet simple project for you.. I did actually once tried to learn this code, but I couldn't do it. I don't like how C++ is, I prefer PHP Well there's your problem, summed up in three short phrases. once tried I couldn't do it I don't like how C++ is Put some time and some effort in it, you might have learnt PHP, but that shouldn't affect your stance on C++ . Kind Regards, Kieran Cross, Link to comment Share on other sites More sharing options...
Recommended Posts