Fix clang format errors for level_2_chunks

This commit is contained in:
AdenKoperczak 2025-05-07 17:44:28 -04:00
parent 969267b661
commit 0438b65208
No known key found for this signature in database
GPG key ID: 9843017036F62EE7

View file

@ -467,7 +467,7 @@ void Ar2vFileImpl::IndexFile()
{ {
elevationAngle = elevationAngle =
static_cast<float>(vcpData_->elevation_angle(elevationCut.first)); static_cast<float>(vcpData_->elevation_angle(elevationCut.first));
waveformType = vcpData_->waveform_type(elevationCut.first); waveformType = vcpData_->waveform_type(elevationCut.first);
} }
else if ((digitalRadarData0 = else if ((digitalRadarData0 =
std::dynamic_pointer_cast<rda::DigitalRadarData>(radial0)) != std::dynamic_pointer_cast<rda::DigitalRadarData>(radial0)) !=
@ -705,8 +705,8 @@ Ar2vFile::Ar2vFile(const std::shared_ptr<Ar2vFile>& current,
// Find the highest elevation this type has for the current scan // Find the highest elevation this type has for the current scan
// Start below any reasonable elevation // Start below any reasonable elevation
// NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers) // NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers)
float highestCurrentElevation = -90; float highestCurrentElevation = -90;
const auto& elevationScans = p->index_.find(type.first); const auto& elevationScans = p->index_.find(type.first);
if (elevationScans != p->index_.cend()) if (elevationScans != p->index_.cend())
{ {
const auto& highestElevation = elevationScans->second.crbegin(); const auto& highestElevation = elevationScans->second.crbegin();