Thomas Posted November 22, 2009 Report Share Posted November 22, 2009 Hi Guys, Some of you might of heard of VSN or Virtual-Skies, its like Vatsim however alot smaller, Is it possible to intergrate online pilots from there website to ours/your va's live map? There website: http://www.virtual-skies.com/ So its just the same, live map wise, just need a code or something with Js? Thanks, Thomas. Quote Link to comment Share on other sites More sharing options...
G-NEWC Posted November 22, 2009 Report Share Posted November 22, 2009 Double Post. It would be handy to do something like this for VATSIM and similar, also. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 I have a VATSIM module working on my devlopment site to gather and sort current Vatsim pilot data, which includes the lat/long of their location. It would just take the coding to apply that lat/long and pilot info to the map. I am not sure if Virtual Skies offers a data feed as Vatsim does. Quote Link to comment Share on other sites More sharing options...
JSpring Posted November 22, 2009 Report Share Posted November 22, 2009 Simpilot, Virtual Skies offers the data in the same format that you will be gathering it from VATSIM. http://status.virtual-skies.com/whazzup.txt JS Quote Link to comment Share on other sites More sharing options...
Thomas Posted November 22, 2009 Author Report Share Posted November 22, 2009 Ok, 1st- Simpilot, Vatsim doesnt work on my site, do you possibly have the code or maybe can you even send me it 2nd- Jayden, where do you want me to add this? Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 Ok, 1st- Simpilot, Vatsim doesnt work on my site, do you possibly have the code or maybe can you even send me it 2nd- Jayden, where do you want me to add this? Not sure what you mean by "Vatsim doesnt work on my site" Have you written your own code or something for vatsim.... Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 Simpilot, Virtual Skies offers the data in the same format that you will be gathering it from VATSIM. http://status.virtual-skies.com/whazzup.txt JS Just looked at it and you are correct - It looks exactly the same as vatsim, wonder how they got away with that? I will see what happens to my module if I use the vsn page as a data source... Quote Link to comment Share on other sites More sharing options...
Moderators joeri Posted November 22, 2009 Moderators Report Share Posted November 22, 2009 Simpilot, Virtual Skies offers the data in the same format that you will be gathering it from VATSIM. http://status.virtual-skies.com/whazzup.txt JS hello Jayden found your way to PHPVMS gr joeri ceo TNT Virtual Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 Just looked at it and you are correct - It looks exactly the same as vatsim, wonder how they got away with that? I will see what happens to my module if I use the vsn page as a data source... I like it when they re-use Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 Got the data feed working on my development site - Not much to see right now - Only 2 ATC online, but it is there if you want to see the data returned. Have to do some work ro figure out how to apply the data to the acars map..... Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted November 22, 2009 Administrators Report Share Posted November 22, 2009 Dave, it will basically be an event listener for "refresh_acars". This will work with the next beta: <?php class test extends CodonModule { public function __construct() { parent::__construct(); CodonEvent::addListener('test'); } public function EventListener($eventinfo) { if($eventinfo[0] == 'refresh_acars') { // This gets the current instance of the ACARS controller so we can // manipulate it $acars = MainController::getInstance('ACARS'); //$acars->acarsflights This has all of the ACARS flights currently // This presumabley would be in a loop //foreach($flight as $flight) //{ // Populate this array below with all of the data we need // Ignore the fields in it right now, I just pulled it from the acars now $acarsflight = array('pilotid'=>$pilotid, 'flightnum'=>$_GET['IATA'], 'pilotname'=>'', 'aircraft'=>$_GET['Regist'], 'lat'=>$_GET['lat'], 'lng'=>$_GET['long'], 'heading'=>'', 'alt'=>$_GET['Alt'], 'gs'=>$_GET['GS'], 'depicao'=>$_GET['depaptICAO'], 'depapt'=>$_GET['depapt'], 'arricao'=>$_GET['destaptICAO'], 'arrapt'=>$_GET['destapt'], 'deptime'=>'', 'arrtime'=>'', 'distremain'=>$_GET['disdestapt'], 'timeremaining'=>$_GET['timedestapt'], 'phasedetail'=>$phase_detail[$_GET['detailph']], 'online'=>$_GET['Online'], 'client'=>'FSACARS'); // Now add the above data structure to our total acars flights $acars->acarsflights[] = $acarsflight; //} // end loop } } } Quote Link to comment Share on other sites More sharing options...
JSpring Posted November 24, 2009 Report Share Posted November 24, 2009 Hello Joeri --- Just looked at it and you are correct - It looks exactly the same as vatsim, wonder how they got away with that? I will see what happens to my module if I use the vsn page as a data source... We use the same base server networking server as them. As default it outputs to a text file called whazzup.txt - You will find the same for IVAO too. JS Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 29, 2009 Administrators Report Share Posted November 29, 2009 Hello Joeri --- We use the same base server networking server as them. As default it outputs to a text file called whazzup.txt - You will find the same for IVAO too. JS Does anyone know what the address to the IVAO whazzup file is? I can not seem to find it. ??? Thanks edit - nvr mnd - found it Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted December 5, 2009 Report Share Posted December 5, 2009 it seems as though most if not all Online Websites for flying use this text file. I asked about it at Realworldatc.com and they use the very same text doc as well. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted December 5, 2009 Administrators Report Share Posted December 5, 2009 What peeves me is that XML is a standardized format, but they all refuse to use it... instead we have to do this inane parsing and picking apart data because it's in a dumb proprietary format. If XML is too verbose, they can use JSON, but they're both standardized and all languages have build in libraries to parse them... blah /End rant Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted December 5, 2009 Administrators Report Share Posted December 5, 2009 ^ ;D Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted December 5, 2009 Administrators Report Share Posted December 5, 2009 I have gotten the feeds for Vatsim, IVAO, Virtual Skies, and Real World ATC working on my development site. They all have a similar format but do have small items that are different so each data feed needs it's own module. I am working on transfering the data to the live map, right now all it does is count the data and can display all the info for each Pilot or ATC, as well as sort out a certain airline call sign. Does anyone know the admins on any of these sites other than Vatsim? Vatsim has a detailed written policy about using their data which I have made the Vatsim datafeed adhere to, but the others seem to lack much if anything in regards to the use of their data. I have had some tell me "yeah it's ok" but nothing as far as a policy. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted December 6, 2009 Administrators Report Share Posted December 6, 2009 If it's minor differences, you might be able to just do it in one module, and have settings within the file (like: <?php class ACARS_Remote extends CodonModule{ public $parse_vatsim = true; public $parse_ivao = false; public function index() { if($this->parse_vatsim == true) { $this->parse_vatsim_list(); } // etc } } Then different functions with each parsing. What are the differences? Maybe they can be compensated for within the code? But that would be the cleaner option in the end, IMO. Also, did you see my sample for adding the data to the live map? Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted February 26, 2010 Moderators Report Share Posted February 26, 2010 Is there any further progress on this one? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.