MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / illuminanceMapZoneNames

Method illuminanceMapZoneNames

src/utilities/sql/SqlFile_Impl.cpp:3851–3861  ·  view source on GitHub ↗

get all zone names for specified illuminance map

Source from the content-addressed store, hash-verified

3849
3850 /// get all zone names for specified illuminance map
3851 std::vector<std::string> SqlFile_Impl::illuminanceMapZoneNames(const std::string& name) const {
3852 std::vector<std::string> names;
3853 boost::optional<int> mapIndex = illuminanceMapIndex(name);
3854
3855 if (mapIndex) {
3856 names = illuminanceMapZoneNames(*mapIndex);
3857 } else
3858 LOG(Error, "Unknown illuminance map '" << name << "'");
3859
3860 return names;
3861 }
3862
3863 /// get all zone names for specified illuminance map
3864 std::vector<std::string> SqlFile_Impl::illuminanceMapZoneNames(int mapIndex) const {

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected