From f064b74111ab3fceb9b382f414ded20f468553a6 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Sun, 25 Feb 2024 18:30:05 -0600 Subject: [PATCH] Add NVL product to VIL list --- wxdata/source/scwx/common/products.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wxdata/source/scwx/common/products.cpp b/wxdata/source/scwx/common/products.cpp index b068fa4e..cd472e4d 100644 --- a/wxdata/source/scwx/common/products.cpp +++ b/wxdata/source/scwx/common/products.cpp @@ -45,6 +45,7 @@ static const std::unordered_map level2Palette_ { static const std::unordered_map level3ProductCodeMap_ { {37, "NCR"}, {56, "SRM"}, + {57, "NVL"}, {94, "DR"}, {99, "DV"}, {134, "DVL"}, @@ -76,6 +77,7 @@ static const std::unordered_map {"SW", "Spectrum Width"}, {"TDR", "Digital Reflectivity"}, {"TDV", "Digital Velocity"}, + {"VIL", "Vertically Integrated Liquid"}, {"?", "Unknown"}}; static const std::unordered_map> @@ -106,8 +108,9 @@ static const std::unordered_map> // Specific Differential Phase {"DKD", {"NXK", "NYK", "NZK", "N0K", "NAK", "N1K", "NBK", "N2K", "N3K"}}, - // Digital Vertically Integrated Liquid + // Vertically Integrated Liquid {"DVL", {"DVL"}}, + {"VIL", {"NVL"}}, // Hydrometeor Classification {"DHC", {"NXH", "NYH", "NZH", "N0H", "NAH", "N1H", "NBH", "N2H", "N3H"}}, @@ -159,7 +162,7 @@ static const std::unordered_map> {Level3ProductCategory::DifferentialReflectivity, {"DZD"}}, {Level3ProductCategory::SpecificDifferentialPhase, {"DKD"}}, {Level3ProductCategory::CorrelationCoefficient, {"DCC"}}, - {Level3ProductCategory::VerticallyIntegratedLiquid, {"DVL"}}, + {Level3ProductCategory::VerticallyIntegratedLiquid, {"DVL", "VIL"}}, {Level3ProductCategory::HydrometeorClassification, {"DHC", "HHC"}}, {Level3ProductCategory::Unknown, {}}};