]> git.mxchange.org Git - flightgear.git/blob - src/Airports/airport.cxx
Canvas Event: expose currentTarget to Nasal.
[flightgear.git] / src / Airports / airport.cxx
1 //
2 // simple.cxx -- a really simplistic class to manage airport ID,
3 //               lat, lon of the center of one of it's runways, and
4 //               elevation in feet.
5 //
6 // Written by Curtis Olson, started April 1998.
7 // Updated by Durk Talsma, started December, 2004.
8 //
9 // Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
10 //
11 // This program is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU General Public License as
13 // published by the Free Software Foundation; either version 2 of the
14 // License, or (at your option) any later version.
15 //
16 // This program is distributed in the hope that it will be useful, but
17 // WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27 #ifdef HAVE_CONFIG_H
28 #  include <config.h>
29 #endif
30
31 #include "airport.hxx"
32
33 #include <algorithm>
34 #include <cassert>
35 #include <boost/foreach.hpp>
36
37 #include <simgear/misc/sg_path.hxx>
38 #include <simgear/props/props.hxx>
39 #include <simgear/props/props_io.hxx>
40 #include <simgear/debug/logstream.hxx>
41 #include <simgear/sg_inlines.h>
42 #include <simgear/structure/exception.hxx>
43
44 #include <Environment/environment_mgr.hxx>
45 #include <Environment/environment.hxx>
46 #include <Main/fg_props.hxx>
47 #include <Airports/runways.hxx>
48 #include <Airports/pavement.hxx>
49 #include <Airports/dynamics.hxx>
50 #include <Airports/xmlloader.hxx>
51 #include <Navaids/procedure.hxx>
52 #include <Navaids/waypoint.hxx>
53 #include <ATC/CommStation.hxx>
54 #include <Navaids/NavDataCache.hxx>
55
56 using std::vector;
57 using std::pair;
58
59 using namespace flightgear;
60
61 /***************************************************************************
62  * FGAirport
63  ***************************************************************************/
64
65 AirportCache FGAirport::airportCache;
66
67 FGAirport::FGAirport( PositionedID aGuid,
68                       const std::string &id,
69                       const SGGeod& location,
70                       const std::string &name,
71                       bool has_metar,
72                       Type aType ):
73     FGPositioned(aGuid, aType, id, location),
74     _name(name),
75     _has_metar(has_metar),
76     _dynamics(0),
77     mTowerDataLoaded(false),
78     mRunwaysLoaded(false),
79     mHelipadsLoaded(false),
80     mTaxiwaysLoaded(false),
81     mProceduresLoaded(false),
82     mILSDataLoaded(false)
83 {
84 }
85
86
87 FGAirport::~FGAirport()
88 {
89     delete _dynamics;
90 }
91
92 bool FGAirport::isAirport() const
93 {
94   return type() == AIRPORT;
95 }
96
97 bool FGAirport::isSeaport() const
98 {
99   return type() == SEAPORT;
100 }
101
102 bool FGAirport::isHeliport() const
103 {
104   return type() == HELIPORT;
105 }
106
107 bool FGAirport::isAirportType(FGPositioned* pos)
108 {
109     if (!pos) {
110         return false;
111     }
112     
113     return (pos->type() >= AIRPORT) && (pos->type() <= SEAPORT);
114 }
115
116 FGAirportDynamics * FGAirport::getDynamics()
117 {
118     if (_dynamics) {
119         return _dynamics;
120     }
121     
122     _dynamics = new FGAirportDynamics(this);
123     XMLLoader::load(_dynamics);
124     _dynamics->init();
125   
126     FGRunwayPreference rwyPrefs(this);
127     XMLLoader::load(&rwyPrefs);
128     _dynamics->setRwyUse(rwyPrefs);
129     
130     return _dynamics;
131 }
132
133 //------------------------------------------------------------------------------
134 unsigned int FGAirport::numRunways() const
135 {
136   loadRunways();
137   return mRunways.size();
138 }
139
140 //------------------------------------------------------------------------------
141 unsigned int FGAirport::numHelipads() const
142 {
143   loadHelipads();
144   return mHelipads.size();
145 }
146
147 //------------------------------------------------------------------------------
148 FGRunwayRef FGAirport::getRunwayByIndex(unsigned int aIndex) const
149 {
150   loadRunways();
151   return loadById<FGRunway>(mRunways, aIndex);
152 }
153
154 //------------------------------------------------------------------------------
155 FGHelipadRef FGAirport::getHelipadByIndex(unsigned int aIndex) const
156 {
157   loadHelipads();
158   return loadById<FGHelipad>(mHelipads, aIndex);
159 }
160
161 //------------------------------------------------------------------------------
162 FGRunwayMap FGAirport::getRunwayMap() const
163 {
164   loadRunways();
165   FGRunwayMap map;
166
167   double minLengthFt = fgGetDouble("/sim/navdb/min-runway-length-ft");
168
169   BOOST_FOREACH(PositionedID id, mRunways)
170   {
171     FGRunway* rwy = loadById<FGRunway>(id);
172
173     // ignore unusably short runways
174     // TODO other methods don't check this...
175     if( rwy->lengthFt() >= minLengthFt )
176       map[ rwy->ident() ] = rwy;
177   }
178
179   return map;
180 }
181
182 //------------------------------------------------------------------------------
183 FGHelipadMap FGAirport::getHelipadMap() const
184 {
185   loadHelipads();
186   FGHelipadMap map;
187
188   BOOST_FOREACH(PositionedID id, mHelipads)
189   {
190     FGHelipad* rwy = loadById<FGHelipad>(id);
191     map[ rwy->ident() ] = rwy;
192   }
193
194   return map;
195 }
196
197 //------------------------------------------------------------------------------
198 bool FGAirport::hasRunwayWithIdent(const std::string& aIdent) const
199 {
200   return flightgear::NavDataCache::instance()
201     ->airportItemWithIdent(guid(), FGPositioned::RUNWAY, aIdent) != 0;
202 }
203
204 //------------------------------------------------------------------------------
205 bool FGAirport::hasHelipadWithIdent(const std::string& aIdent) const
206 {
207   return flightgear::NavDataCache::instance()
208     ->airportItemWithIdent(guid(), FGPositioned::HELIPAD, aIdent) != 0;
209 }
210
211 //------------------------------------------------------------------------------
212 FGRunwayRef FGAirport::getRunwayByIdent(const std::string& aIdent) const
213 {
214   PositionedID id =
215     flightgear::NavDataCache::instance()
216       ->airportItemWithIdent(guid(), FGPositioned::RUNWAY, aIdent);
217
218   if (id == 0) {
219     SG_LOG(SG_GENERAL, SG_ALERT, "no such runway '" << aIdent << "' at airport " << ident());
220     throw sg_range_exception("unknown runway " + aIdent + " at airport:" + ident(), "FGAirport::getRunwayByIdent");
221   }
222   
223   return loadById<FGRunway>(id);
224 }
225
226 //------------------------------------------------------------------------------
227 FGHelipadRef FGAirport::getHelipadByIdent(const std::string& aIdent) const
228 {
229   PositionedID id = flightgear::NavDataCache::instance()->airportItemWithIdent(guid(), FGPositioned::HELIPAD, aIdent);
230   if (id == 0) {
231     SG_LOG(SG_GENERAL, SG_ALERT, "no such helipad '" << aIdent << "' at airport " << ident());
232     throw sg_range_exception("unknown helipad " + aIdent + " at airport:" + ident(), "FGAirport::getRunwayByIdent");
233   }
234
235   return loadById<FGHelipad>(id);
236 }
237
238 //------------------------------------------------------------------------------
239 FGRunwayRef FGAirport::findBestRunwayForHeading(double aHeading) const
240 {
241   loadRunways();
242   
243   FGRunway* result = NULL;
244   double currentBestQuality = 0.0;
245   
246   SGPropertyNode *param = fgGetNode("/sim/airport/runways/search", true);
247   double lengthWeight = param->getDoubleValue("length-weight", 0.01);
248   double widthWeight = param->getDoubleValue("width-weight", 0.01);
249   double surfaceWeight = param->getDoubleValue("surface-weight", 10);
250   double deviationWeight = param->getDoubleValue("deviation-weight", 1);
251     
252   BOOST_FOREACH(PositionedID id, mRunways) {
253     FGRunway* rwy = loadById<FGRunway>(id);
254     // bug http://code.google.com/p/flightgear-bugs/issues/detail?id=1149
255     // (and probably some other issues besides). 
256     if (rwy->type() == FGPositioned::HELIPAD) {
257       continue;
258     }
259       
260     double good = rwy->score(lengthWeight, widthWeight, surfaceWeight);
261     double dev = aHeading - rwy->headingDeg();
262     SG_NORMALIZE_RANGE(dev, -180.0, 180.0);
263     double bad = fabs(deviationWeight * dev) + 1e-20;
264     double quality = good / bad;
265     
266     if (quality > currentBestQuality) {
267       currentBestQuality = quality;
268       result = rwy;
269     }
270   }
271
272   return result;
273 }
274
275 //------------------------------------------------------------------------------
276 FGRunwayRef FGAirport::findBestRunwayForPos(const SGGeod& aPos) const
277 {
278   loadRunways();
279   
280   FGRunway* result = NULL;
281   double currentLowestDev = 180.0;
282   
283   BOOST_FOREACH(PositionedID id, mRunways) {
284     FGRunway* rwy = loadById<FGRunway>(id);
285
286     double inboundCourse = SGGeodesy::courseDeg(aPos, rwy->end());
287     double dev = inboundCourse - rwy->headingDeg();
288     SG_NORMALIZE_RANGE(dev, -180.0, 180.0);
289
290     dev = fabs(dev);
291     if (dev < currentLowestDev) { // new best match
292       currentLowestDev = dev;
293       result = rwy;
294     }
295   } // of runway iteration
296   
297   return result;
298
299 }
300
301 //------------------------------------------------------------------------------
302 bool FGAirport::hasHardRunwayOfLengthFt(double aLengthFt) const
303 {
304   loadRunways();
305   
306   BOOST_FOREACH(PositionedID id, mRunways) {
307     FGRunway* rwy = loadById<FGRunway>(id);
308     if (rwy->isHardSurface() && (rwy->lengthFt() >= aLengthFt)) {
309       return true; // we're done!
310     }
311   } // of runways iteration
312
313   return false;
314 }
315
316 //------------------------------------------------------------------------------
317 FGRunwayList FGAirport::getRunwaysWithoutReciprocals() const
318 {
319   loadRunways();
320   
321   FGRunwayList r;
322   
323   BOOST_FOREACH(PositionedID id, mRunways) {
324     FGRunway* rwy = loadById<FGRunway>(id);
325     FGRunway* recip = rwy->reciprocalRunway();
326     if (recip) {
327       FGRunwayList::iterator it = std::find(r.begin(), r.end(), recip);
328       if (it != r.end()) {
329         continue; // reciprocal already in result set, don't include us
330       }
331     }
332     
333     r.push_back(rwy);
334   }
335   
336   return r;
337 }
338
339 //------------------------------------------------------------------------------
340 unsigned int FGAirport::numTaxiways() const
341 {
342   loadTaxiways();
343   return mTaxiways.size();
344 }
345
346 //------------------------------------------------------------------------------
347 FGTaxiwayRef FGAirport::getTaxiwayByIndex(unsigned int aIndex) const
348 {
349   loadTaxiways();
350   return loadById<FGTaxiway>(mTaxiways, aIndex);
351 }
352
353 //------------------------------------------------------------------------------
354 FGTaxiwayList FGAirport::getTaxiways() const
355 {
356   loadTaxiways();
357   return loadAllById<FGTaxiway>(mTaxiways);
358 }
359
360 //------------------------------------------------------------------------------
361 unsigned int FGAirport::numPavements() const
362 {
363   loadTaxiways();
364   return mPavements.size();
365 }
366
367 //------------------------------------------------------------------------------
368 FGPavementRef FGAirport::getPavementByIndex(unsigned int aIndex) const
369 {
370   loadTaxiways();
371   return loadById<FGPavement>(mPavements, aIndex);
372 }
373
374 //------------------------------------------------------------------------------
375 FGPavementList FGAirport::getPavements() const
376 {
377   loadTaxiways();
378   return loadAllById<FGPavement>(mPavements);
379 }
380
381 //------------------------------------------------------------------------------
382 FGRunwayRef FGAirport::getActiveRunwayForUsage() const
383 {
384   FGEnvironmentMgr* envMgr = (FGEnvironmentMgr *) globals->get_subsystem("environment");
385   
386   // This forces West-facing rwys to be used in no-wind situations
387   // which is consistent with Flightgear's initial setup.
388   double hdg = 270;
389   
390   if (envMgr) {
391     FGEnvironment stationWeather(envMgr->getEnvironment(mPosition));
392   
393     double windSpeed = stationWeather.get_wind_speed_kt();
394     if (windSpeed > 0.0) {
395       hdg = stationWeather.get_wind_from_heading_deg();
396     }
397   }
398   
399   return findBestRunwayForHeading(hdg);
400 }
401
402 //------------------------------------------------------------------------------
403 FGAirportRef FGAirport::findClosest( const SGGeod& aPos,
404                                      double aCuttofNm,
405                                      Filter* filter )
406 {
407   AirportFilter aptFilter;
408   if( !filter )
409     filter = &aptFilter;
410   
411   return static_pointer_cast<FGAirport>
412   (
413     FGPositioned::findClosest(aPos, aCuttofNm, filter)
414   );
415 }
416
417 FGAirport::HardSurfaceFilter::HardSurfaceFilter(double minLengthFt) :
418   mMinLengthFt(minLengthFt)
419 {
420   if (minLengthFt < 0.0) {
421     mMinLengthFt = fgGetDouble("/sim/navdb/min-runway-length-ft", 0.0);
422   }
423 }
424
425 bool FGAirport::HardSurfaceFilter::passAirport(FGAirport* aApt) const
426 {
427   return aApt->hasHardRunwayOfLengthFt(mMinLengthFt);
428 }
429
430 //------------------------------------------------------------------------------
431 FGAirport::TypeRunwayFilter::TypeRunwayFilter():
432   _type(FGPositioned::AIRPORT),
433   _min_runway_length_ft( fgGetDouble("/sim/navdb/min-runway-length-ft", 0.0) )
434 {
435
436 }
437
438 //------------------------------------------------------------------------------
439 bool FGAirport::TypeRunwayFilter::fromTypeString(const std::string& type)
440 {
441   if(      type == "heliport" ) _type = FGPositioned::HELIPORT;
442   else if( type == "seaport"  ) _type = FGPositioned::SEAPORT;
443   else if( type == "airport"  ) _type = FGPositioned::AIRPORT;
444   else                          return false;
445
446   return true;
447 }
448
449 //------------------------------------------------------------------------------
450 bool FGAirport::TypeRunwayFilter::pass(FGPositioned* pos) const
451 {
452   FGAirport* apt = static_cast<FGAirport*>(pos);
453   if(  (apt->type() == FGPositioned::AIRPORT)
454     && !apt->hasHardRunwayOfLengthFt(_min_runway_length_ft)
455     )
456     return false;
457
458   return true;
459 }
460
461 //------------------------------------------------------------------------------
462 FGAirportRef FGAirport::findByIdent(const std::string& aIdent)
463 {
464   AirportCache::iterator it = airportCache.find(aIdent);
465   if (it != airportCache.end())
466    return it->second;
467
468   PortsFilter filter;
469   FGAirportRef r = static_pointer_cast<FGAirport>
470   (
471     FGPositioned::findFirstWithIdent(aIdent, &filter)
472   );
473
474   // add airport to the cache (even when it's NULL, so we don't need to search in vain again)
475   airportCache[aIdent] = r;
476
477   // we don't warn here when r==NULL, let the caller do that
478   return r;
479 }
480
481 //------------------------------------------------------------------------------
482 FGAirportRef FGAirport::getByIdent(const std::string& aIdent)
483 {
484   FGAirportRef r = findByIdent(aIdent);
485   if (!r)
486     throw sg_range_exception("No such airport with ident: " + aIdent);
487   return r;
488 }
489
490 char** FGAirport::searchNamesAndIdents(const std::string& aFilter)
491 {
492   return NavDataCache::instance()->searchAirportNamesAndIdents(aFilter);
493 }
494
495 // find basic airport location info from airport database
496 const FGAirport *fgFindAirportID( const std::string& id)
497 {
498     if ( id.empty() ) {
499         return NULL;
500     }
501     
502     return FGAirport::findByIdent(id);
503 }
504
505 void FGAirport::loadRunways() const
506 {
507   if (mRunwaysLoaded) {
508     return; // already loaded, great
509   }
510   
511   loadSceneryDefinitions();
512   
513   mRunwaysLoaded = true;
514   mRunways = flightgear::NavDataCache::instance()->airportItemsOfType(guid(), FGPositioned::RUNWAY);
515 }
516
517 void FGAirport::loadHelipads() const
518 {
519   if (mHelipadsLoaded) {
520     return; // already loaded, great
521   }
522
523   loadSceneryDefinitions();
524
525   mHelipadsLoaded = true;
526   mHelipads = flightgear::NavDataCache::instance()->airportItemsOfType(guid(), FGPositioned::HELIPAD);
527 }
528
529 void FGAirport::loadTaxiways() const
530 {
531   if (mTaxiwaysLoaded) {
532     return; // already loaded, great
533   }
534   
535   mTaxiwaysLoaded =  true;
536   mTaxiways = flightgear::NavDataCache::instance()->airportItemsOfType(guid(), FGPositioned::TAXIWAY);
537 }
538
539 void FGAirport::loadProcedures() const
540 {
541   if (mProceduresLoaded) {
542     return;
543   }
544   
545   mProceduresLoaded = true;
546   SGPath path;
547   if (!XMLLoader::findAirportData(ident(), "procedures", path)) {
548     SG_LOG(SG_GENERAL, SG_INFO, "no procedures data available for " << ident());
549     return;
550   }
551   
552   SG_LOG(SG_GENERAL, SG_INFO, ident() << ": loading procedures from " << path.str());
553   RouteBase::loadAirportProcedures(path, const_cast<FGAirport*>(this));
554 }
555
556 void FGAirport::loadSceneryDefinitions() const
557 {
558   NavDataCache* cache = NavDataCache::instance();
559   SGPath path;
560   if (!XMLLoader::findAirportData(ident(), "threshold", path)) {
561     return; // no XML threshold data
562   }
563   
564   if (!cache->isCachedFileModified(path)) {
565     // cached values are correct, we're all done
566     return;
567   }
568   
569     flightgear::NavDataCache::Transaction txn(cache);
570     SGPropertyNode_ptr rootNode = new SGPropertyNode;
571     readProperties(path.str(), rootNode);
572     const_cast<FGAirport*>(this)->readThresholdData(rootNode);
573     cache->stampCacheFile(path);
574     txn.commit();
575 }
576
577 void FGAirport::readThresholdData(SGPropertyNode* aRoot)
578 {
579   SGPropertyNode* runway;
580   int runwayIndex = 0;
581   for (; (runway = aRoot->getChild("runway", runwayIndex)) != NULL; ++runwayIndex) {
582     SGPropertyNode* t0 = runway->getChild("threshold", 0),
583       *t1 = runway->getChild("threshold", 1);
584     assert(t0);
585     assert(t1); // too strict? maybe we should finally allow single-ended runways
586     
587     processThreshold(t0);
588     processThreshold(t1);
589   } // of runways iteration
590 }
591
592 void FGAirport::processThreshold(SGPropertyNode* aThreshold)
593 {
594   // first, let's identify the current runway
595   std::string rwyIdent(aThreshold->getStringValue("rwy"));
596   NavDataCache* cache = NavDataCache::instance(); 
597   PositionedID id = cache->airportItemWithIdent(guid(), FGPositioned::RUNWAY, rwyIdent);
598   if (id == 0) {
599     SG_LOG(SG_GENERAL, SG_DEBUG, "FGAirport::processThreshold: "
600            "found runway not defined in the global data:" << ident() << "/" << rwyIdent);
601     return;
602   }
603   
604   double lon = aThreshold->getDoubleValue("lon"),
605   lat = aThreshold->getDoubleValue("lat");
606   SGGeod newThreshold(SGGeod::fromDegM(lon, lat, mPosition.getElevationM()));
607   
608   double newHeading = aThreshold->getDoubleValue("hdg-deg");
609   double newDisplacedThreshold = aThreshold->getDoubleValue("displ-m");
610   double newStopway = aThreshold->getDoubleValue("stopw-m");
611   
612   cache->updateRunwayThreshold(id, newThreshold,
613                                newHeading, newDisplacedThreshold, newStopway);
614 }
615
616 SGGeod FGAirport::getTowerLocation() const
617 {
618   validateTowerData();
619   
620   NavDataCache* cache = NavDataCache::instance();
621   PositionedIDVec towers = cache->airportItemsOfType(guid(), FGPositioned::TOWER);
622   if (towers.empty()) {
623     SG_LOG(SG_GENERAL, SG_ALERT, "No towers defined for:" <<ident());
624     return SGGeod();
625   }
626   
627   FGPositionedRef tower = cache->loadById(towers.front());
628   return tower->geod();
629 }
630
631 void FGAirport::validateTowerData() const
632 {
633   if (mTowerDataLoaded) {
634     return;
635   }
636
637   mTowerDataLoaded = true;
638   NavDataCache* cache = NavDataCache::instance();
639   SGPath path;
640   if (!XMLLoader::findAirportData(ident(), "twr", path)) {
641     return; // no XML tower data
642   }
643   
644   if (!cache->isCachedFileModified(path)) {
645   // cached values are correct, we're all done
646     return;
647   }
648    
649   flightgear::NavDataCache::Transaction txn(cache);
650   SGPropertyNode_ptr rootNode = new SGPropertyNode;
651   readProperties(path.str(), rootNode);
652   const_cast<FGAirport*>(this)->readTowerData(rootNode);
653   cache->stampCacheFile(path);
654   txn.commit();
655 }
656
657 void FGAirport::readTowerData(SGPropertyNode* aRoot)
658 {
659   SGPropertyNode* twrNode = aRoot->getChild("tower")->getChild("twr");
660   double lat = twrNode->getDoubleValue("lat"), 
661     lon = twrNode->getDoubleValue("lon"), 
662     elevM = twrNode->getDoubleValue("elev-m");  
663 // tower elevation is AGL, not AMSL. Since we don't want to depend on the
664 // scenery for a precise terrain elevation, we use the field elevation
665 // (this is also what the apt.dat code does)
666   double fieldElevationM = geod().getElevationM();
667   SGGeod towerLocation(SGGeod::fromDegM(lon, lat, fieldElevationM + elevM));
668   
669   NavDataCache* cache = NavDataCache::instance();
670   PositionedIDVec towers = cache->airportItemsOfType(guid(), FGPositioned::TOWER);
671   if (towers.empty()) {
672     cache->insertTower(guid(), towerLocation);
673   } else {
674     // update the position
675     cache->updatePosition(towers.front(), towerLocation);
676   }
677 }
678
679 bool FGAirport::validateILSData()
680 {
681   if (mILSDataLoaded) {
682     return false;
683   }
684   
685   mILSDataLoaded = true;
686   NavDataCache* cache = NavDataCache::instance();
687   SGPath path;
688   if (!XMLLoader::findAirportData(ident(), "ils", path)) {
689     return false; // no XML tower data
690   }
691   
692   if (!cache->isCachedFileModified(path)) {
693     // cached values are correct, we're all done
694     return false;
695   }
696   
697   SGPropertyNode_ptr rootNode = new SGPropertyNode;
698   readProperties(path.str(), rootNode);
699
700   flightgear::NavDataCache::Transaction txn(cache);
701   readILSData(rootNode);
702   cache->stampCacheFile(path);
703   txn.commit();
704     
705 // we loaded data, tell the caller it might need to reload things
706   return true;
707 }
708
709 void FGAirport::readILSData(SGPropertyNode* aRoot)
710 {
711   NavDataCache* cache = NavDataCache::instance();
712   
713   // find the entry matching the runway
714   SGPropertyNode* runwayNode, *ilsNode;
715   for (int i=0; (runwayNode = aRoot->getChild("runway", i)) != NULL; ++i) {
716     for (int j=0; (ilsNode = runwayNode->getChild("ils", j)) != NULL; ++j) {
717       // must match on both nav-ident and runway ident, to support the following:
718       // - runways with multiple distinct ILS installations (KEWD, for example)
719       // - runways where both ends share the same nav ident (LFAT, for example)
720       PositionedID ils = cache->findILS(guid(), ilsNode->getStringValue("rwy"),
721                                         ilsNode->getStringValue("nav-id"));
722       if (ils == 0) {
723         SG_LOG(SG_GENERAL, SG_INFO, "reading ILS data for " << ident() <<
724                ", couldn;t find runway/navaid for:" <<
725                ilsNode->getStringValue("rwy") << "/" <<
726                ilsNode->getStringValue("nav-id"));
727         continue;
728       }
729       
730       double hdgDeg = ilsNode->getDoubleValue("hdg-deg"),
731         lon = ilsNode->getDoubleValue("lon"),
732         lat = ilsNode->getDoubleValue("lat"),
733         elevM = ilsNode->getDoubleValue("elev-m");
734  
735       cache->updateILS(ils, SGGeod::fromDegM(lon, lat, elevM), hdgDeg);
736     } // of ILS iteration
737   } // of runway iteration
738 }
739
740 void FGAirport::addSID(flightgear::SID* aSid)
741 {
742   mSIDs.push_back(aSid);
743 }
744
745 void FGAirport::addSTAR(STAR* aStar)
746 {
747   mSTARs.push_back(aStar);
748 }
749
750 void FGAirport::addApproach(Approach* aApp)
751 {
752   mApproaches.push_back(aApp);
753 }
754
755 //------------------------------------------------------------------------------
756 unsigned int FGAirport::numSIDs() const
757 {
758   loadProcedures();
759   return mSIDs.size();
760 }
761
762 //------------------------------------------------------------------------------
763 flightgear::SID* FGAirport::getSIDByIndex(unsigned int aIndex) const
764 {
765   loadProcedures();
766   return mSIDs[aIndex];
767 }
768
769 //------------------------------------------------------------------------------
770 flightgear::SID* FGAirport::findSIDWithIdent(const std::string& aIdent) const
771 {
772   loadProcedures();
773   for (unsigned int i=0; i<mSIDs.size(); ++i) {
774     if (mSIDs[i]->ident() == aIdent) {
775       return mSIDs[i];
776     }
777   }
778   
779   return NULL;
780 }
781
782 //------------------------------------------------------------------------------
783 flightgear::SIDList FGAirport::getSIDs() const
784 {
785   loadProcedures();
786   return flightgear::SIDList(mSIDs.begin(), mSIDs.end());
787 }
788
789 //------------------------------------------------------------------------------
790 unsigned int FGAirport::numSTARs() const
791 {
792   loadProcedures();
793   return mSTARs.size();
794 }
795
796 //------------------------------------------------------------------------------
797 STAR* FGAirport::getSTARByIndex(unsigned int aIndex) const
798 {
799   loadProcedures();
800   return mSTARs[aIndex];
801 }
802
803 //------------------------------------------------------------------------------
804 STAR* FGAirport::findSTARWithIdent(const std::string& aIdent) const
805 {
806   loadProcedures();
807   for (unsigned int i=0; i<mSTARs.size(); ++i) {
808     if (mSTARs[i]->ident() == aIdent) {
809       return mSTARs[i];
810     }
811   }
812   
813   return NULL;
814 }
815
816 //------------------------------------------------------------------------------
817 STARList FGAirport::getSTARs() const
818 {
819   loadProcedures();
820   return STARList(mSTARs.begin(), mSTARs.end());
821 }
822
823 unsigned int FGAirport::numApproaches() const
824 {
825   loadProcedures();
826   return mApproaches.size();
827 }
828
829 //------------------------------------------------------------------------------
830 Approach* FGAirport::getApproachByIndex(unsigned int aIndex) const
831 {
832   loadProcedures();
833   return mApproaches[aIndex];
834 }
835
836 //------------------------------------------------------------------------------
837 Approach* FGAirport::findApproachWithIdent(const std::string& aIdent) const
838 {
839   loadProcedures();
840   for (unsigned int i=0; i<mApproaches.size(); ++i) {
841     if (mApproaches[i]->ident() == aIdent) {
842       return mApproaches[i];
843     }
844   }
845   
846   return NULL;
847 }
848
849 //------------------------------------------------------------------------------
850 ApproachList FGAirport::getApproaches(ProcedureType type) const
851 {
852   loadProcedures();
853   if( type == PROCEDURE_INVALID )
854     return ApproachList(mApproaches.begin(), mApproaches.end());
855
856   ApproachList ret;
857   for(size_t i = 0; i < mApproaches.size(); ++i)
858   {
859     if( mApproaches[i]->type() == type )
860       ret.push_back(mApproaches[i]);
861   }
862   return ret;
863 }
864
865 CommStationList
866 FGAirport::commStations() const
867 {
868   NavDataCache* cache = NavDataCache::instance();
869   CommStationList result;
870   BOOST_FOREACH(PositionedID pos, cache->airportItemsOfType(guid(),
871                                                             FGPositioned::FREQ_GROUND,
872                                                             FGPositioned::FREQ_UNICOM))
873   {
874     result.push_back( loadById<CommStation>(pos) );
875   }
876   
877   return result;
878 }
879
880 CommStationList
881 FGAirport::commStationsOfType(FGPositioned::Type aTy) const
882 {
883   NavDataCache* cache = NavDataCache::instance();
884   CommStationList result;
885   BOOST_FOREACH(PositionedID pos, cache->airportItemsOfType(guid(), aTy)) {
886     result.push_back( loadById<CommStation>(pos) );
887   }
888   
889   return result;
890 }
891
892 // get airport elevation
893 double fgGetAirportElev( const std::string& id )
894 {
895     const FGAirport *a=fgFindAirportID( id);
896     if (a) {
897         return a->getElevation();
898     } else {
899         return -9999.0;
900     }
901 }
902
903
904 // get airport position
905 SGGeod fgGetAirportPos( const std::string& id )
906 {
907     const FGAirport *a = fgFindAirportID( id);
908
909     if (a) {
910         return SGGeod::fromDegM(a->getLongitude(), a->getLatitude(), a->getElevation());
911     } else {
912         return SGGeod::fromDegM(0.0, 0.0, -9999.0);
913     }
914 }