Home
last modified time | relevance | path

Searched refs:SGMetarCloud (Results 1 – 5 of 5) sorted by relevance

/dports/games/flightgear/flightgear-2020.3.11/src/Environment/
H A Dfgmetar.cxx64 vector<SGMetarCloud> cv = _clouds;; in FGMetar()
66 SGMetarCloud cl; in FGMetar()
67 cl.set(5500 * SG_FEET_TO_METER, SGMetarCloud::COVERAGE_SCATTERED); in FGMetar()
111 vector<SGMetarCloud> cv = _clouds; in FGMetar()
112 vector<SGMetarCloud>::iterator cloud, cv_end = cv.end(); in FGMetar()
115 SGMetarCloud::Coverage cov = cloud->getCoverage(); in FGMetar()
116 if (cov == SGMetarCloud::COVERAGE_NIL) in FGMetar()
117 cov = SGMetarCloud::COVERAGE_CLEAR; in FGMetar()
H A Dmetarproperties.cxx349 const vector<SGMetarCloud> & metarClouds = m->getClouds(); in setMetar()
365 SGMetarCloud::Coverage coverage = SGMetarCloud::COVERAGE_NIL; in setMetar()
370 coverage = SGMetarCloud::getCoverage( isBC ? in setMetar()
371 …g( "/environment/params/fog-mist-haze-layer/fog-bc-2dlayer-coverage", SGMetarCloud::COVERAGE_SCATT… in setMetar()
372 …ring( "/environment/params/fog-mist-haze-layer/fog-2dlayer-coverage", SGMetarCloud::COVERAGE_BROKE… in setMetar()
380 …coverage = SGMetarCloud::getCoverage(fgGetString("/environment/params/fog-mist-haze-layer/mist-2dl… in setMetar()
384 …coverage = SGMetarCloud::getCoverage(fgGetString("/environment/params/fog-mist-haze-layer/mist-2dl… in setMetar()
389 if( coverage != SGMetarCloud::COVERAGE_NIL ) { in setMetar()
392 … if( metarClouds.size() > 0 && metarClouds[0].getCoverage() != SGMetarCloud::COVERAGE_CLEAR ) in setMetar()
410SGMetarCloud::Coverage coverage = i < metarClouds.size() ? metarClouds[i].getCoverage() : SGMetarC… in setMetar()
[all …]
/dports/devel/simgear/simgear-2020.3.11/simgear/environment/
H A Dmetar.cxx396 vector<SGMetarCloud> cv = getClouds(); in getDescription()
397 vector<SGMetarCloud>::iterator cloud; in getDescription()
1029 SGMetarCloud cl; in scanSkyCondition()
1049 cl._coverage = SGMetarCloud::COVERAGE_CLEAR; in scanSkyCondition()
1061 cl._coverage = SGMetarCloud::COVERAGE_FEW; in scanSkyCondition()
1065 cl._coverage = SGMetarCloud::COVERAGE_BROKEN; in scanSkyCondition()
1067 cl._coverage = SGMetarCloud::COVERAGE_OVERCAST; in scanSkyCondition()
1083 if (cl._coverage == SGMetarCloud::COVERAGE_NIL) { in scanSkyCondition()
1489 void SGMetarCloud::set(double alt, Coverage cov) in set()
1496 SGMetarCloud::Coverage SGMetarCloud::getCoverage( const std::string & coverage ) in getCoverage()
[all …]
H A Dmetar.hxx124 class SGMetarCloud { class
143 SGMetarCloud() : _coverage(COVERAGE_NIL), _altitude(SGMetarNaN), _type(0), _type_long(0) {} in SGMetarCloud() function in SGMetarCloud
233 inline const std::vector<SGMetarCloud>& getClouds() const { return _clouds; } in getClouds()
274 std::vector<SGMetarCloud> _clouds;
/dports/games/flightgear/flightgear-2020.3.11/src/Main/
H A Dmetar_main.cxx149 vector<SGMetarCloud> cv = m->getClouds(); in printArgs()
150 vector<SGMetarCloud>::iterator cloud; in printArgs()