From e0cd3610a6e2a708f889244349ab51aa3a3b465a Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 2 Dec 2024 22:35:13 -0600 Subject: [PATCH] An extra empty radial is still needed for incomplete data when smoothing --- scwx-qt/source/scwx/qt/view/level2_product_view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp index 4359a78c..0254904b 100644 --- a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp +++ b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp @@ -540,7 +540,7 @@ void Level2ProductView::ComputeSweep() // When there is missing data, insert another empty vertex radial at the end // to avoid stretching const bool isRadarDataIncomplete = Impl::IsRadarDataIncomplete(radarData); - if (isRadarDataIncomplete && !smoothingEnabled) + if (isRadarDataIncomplete) { ++vertexRadials; }