MCPcopy Create free account
hub / github.com/SGL-UT/gnsstk / getSvMode

Method getSvMode

core/lib/ClockModel/ObsClockModel.cpp:86–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85
86 ObsClockModel::SvMode ObsClockModel::getSvMode(const SatID& svid) const
87 {
88 SvModeMap::const_iterator i = modes.find(svid);
89 if(i == modes.end())
90 {
91 gnsstk::ObjectNotFound e("No status for SV " +
92 StringUtils::asString(svid) +
93 " available.");
94 GNSSTK_THROW(e);
95 }
96 else
97 return i->second;
98 }
99
100
101 /**

Calls 3

asStringFunction · 0.50
findMethod · 0.45
endMethod · 0.45