Fixed formatting issue

This commit is contained in:
AdenKoperczak 2024-09-10 07:51:26 -04:00
parent 754e036093
commit 852ade891c

View file

@ -186,9 +186,7 @@ void AlertManager::Impl::HandleAlert(const types::TextEventKey& key,
auto alertCoordinates = segment->codedLocation_->coordinates();
activeAtLocation = util::GeographicLib::AreaInRangeOfPoint(
alertCoordinates,
currentCoordinate,
alertRadius);
alertCoordinates, currentCoordinate, alertRadius);
}
else if (locationMethod == types::LocationMethod::County)
{
@ -196,7 +194,9 @@ void AlertManager::Impl::HandleAlert(const types::TextEventKey& key,
auto fipsIds = segment->header_->ugc_.fips_ids();
auto it = std::find(fipsIds.cbegin(), fipsIds.cend(), alertCounty);
activeAtLocation = it != fipsIds.cend();
} else if (locationMethod == types::LocationMethod::WFO) {
}
else if (locationMethod == types::LocationMethod::WFO)
{
std::string wfoId = vtec.pVtec_.office_id();
activeAtLocation = wfoId == alertWFO;