flanker0ne Posted December 24, 2009 Posted December 24, 2009 (edited) I try both method: 1)By paste the Airport name next to the line [x] = runway_homer_pair(Airdrome[Gelendzhik]), 2)By paste the russian ndb name on the line [ADF_HOMER_NEAR] = NDB(beacons["Геленджик"]) The result of first method is an empty Line in the ARK plaque For the second method is a totally empty plaque So what kind of ndb is Gelendzhik?Airport Outer/Inner NDB or isolated NDB? All modification was made with notepad++ Edited December 24, 2009 by flanker0ne SCOPRI DI PIU': https://www.amvi.it/joinus.php DISCORD COMBINEDOPS The Battle Planning Tool
flanker0ne Posted January 3, 2010 Author Posted January 3, 2010 Could anyone give me an answer or at least know some advice? Here paste file lines ARK.lua I changed. channels = { [1] = runway_homer_pair(Airdrome[Krasnodar]), [2] = runway_homer_pair(Airdrome[Maykop]), [3] = runway_homer_pair(Airdrome[Krymsk]), [4] = runway_homer_pair(Airdrome[Anapa]), [5] = runway_homer_pair(Airdrome[sochi]), [6] = runway_homer_pair(Airdrome[Nalchick]), [7] = runway_homer_pair(Airdrome[MinVody]), [8] = { [ADF_HOMER_FAR] = NDB(beacons["Бетта"]), [ADF_HOMER_NEAR] = NDB(beacons["Геленджик"]) } } Геленджик=Gelendzhik (Problems) Бетта=Betta (Works fine) If you notice something wrong or omissions please let me know,thanks for attentions SCOPRI DI PIU': https://www.amvi.it/joinus.php DISCORD COMBINEDOPS The Battle Planning Tool
Butcher59 Posted January 4, 2010 Posted January 4, 2010 (edited) yep, but... the NDB for Gelendzhik is not an NDB designed for a line up the ILS RWY, it is more an NDB to find Gelendzhik like an VOR or an VORTAC. So in the Beacons.lua you have to add some lines to make the NDB active. I don't know why they made so different programm code in the Beacon.lua (ask please the producer or programmer) but if you add some lines, you can make the Gelendzhik NDB aktive! This was the code in the Beacons.lua before changing: Airdrome[Gelendzhik]={} --http://dir.avia.ru/airports/59848211008598853.shtml Airdrome[Gelendzhik]["latitude"]=44.56370 Airdrome[Gelendzhik]["longitude"]=38.01186 Airdrome[Gelendzhik]["height"]=25 Airdrome[Gelendzhik]["runway"]={} Airdrome[Gelendzhik]["runway"]["04-22"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["latitude"]=44.56935 Airdrome[Gelendzhik]["runway"]["04-22"]["longitude"]=38.01994 Airdrome[Gelendzhik]["runway"]["04-22"]["length"]=1800 Airdrome[Gelendzhik]["runway"]["04-22"]["side"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["04"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"]={} Airdrome[Gelendzhik]["airdrome"]={} Airdrome[Gelendzhik]["airdrome"][1]={} Airdrome[Gelendzhik]["airdrome"][1]["type"]=BEACON_TYPE_AIRPORT_HOMER Airdrome[Gelendzhik]["airdrome"][1]["subtype"]=FAR_HOMER Airdrome[Gelendzhik]["airdrome"][1]["callsign"]="ГН" Airdrome[Gelendzhik]["airdrome"][1]["frequency"]=1000000.0 Airdrome[Gelendzhik]["airdrome"][1]["position"] = "44'33'52N 38'00'55E 40" and this after i added some lines: Airdrome[Gelendzhik]={} --http://dir.avia.ru/airports/59848211008598853.shtml Airdrome[Gelendzhik]["latitude"]=44.56370 Airdrome[Gelendzhik]["longitude"]=38.01186 Airdrome[Gelendzhik]["height"]=25 Airdrome[Gelendzhik]["runway"]={} Airdrome[Gelendzhik]["runway"]["04-22"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["latitude"]=44.56935 Airdrome[Gelendzhik]["runway"]["04-22"]["longitude"]=38.01994 Airdrome[Gelendzhik]["runway"]["04-22"]["length"]=1800 Airdrome[Gelendzhik]["runway"]["04-22"]["side"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["04"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["type"]=BEACON_TYPE_AIRPORT_HOMER_WITH_MARKER Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["subtype"]=FAR_HOMER Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["callsign"]="ГН" Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["frequency"]=426000.0 Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["position"]={} Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["position"]["Z0"] = -20.0 Airdrome[Gelendzhik]["runway"]["04-22"]["side"]["22"][1]["position"]["S0"] = -1120 Airdrome[Gelendzhik]["airdrome"]={} Airdrome[Gelendzhik]["airdrome"][1]={} Airdrome[Gelendzhik]["airdrome"][1]["type"]=BEACON_TYPE_AIRPORT_HOMER Airdrome[Gelendzhik]["airdrome"][1]["subtype"]=FAR_HOMER Airdrome[Gelendzhik]["airdrome"][1]["callsign"]="ГН" Airdrome[Gelendzhik]["airdrome"][1]["frequency"]=426000.0 Airdrome[Gelendzhik]["airdrome"][1]["position"] = "44'33'52N 38'00'55E 40" now i changed in the ARK.lua channel 7 to Gelendzhik and.... voila, i had my correct entry into the picture on the right cockpit wall and if i switched to channel 7, the correct direction on the HSI was showed!! Edited January 4, 2010 by Butcher59 CPU: Intel i7-5820K 3,3GHz Motherboard: ASUS X99-A Grafik Card: NVIDIA Geforce GTX1080 Ti 337.50 RAM: 32GB PIMAX 5k+ BE Hotas Warthog with Simped Pedals WIN 10 64bit DirctX 11.0
Recommended Posts