mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:10:05 +00:00
443 lines
15 KiB
C++
443 lines
15 KiB
C++
#include <scwx/common/products.hpp>
|
|
|
|
#include <algorithm>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace common
|
|
{
|
|
|
|
static const std::unordered_map<RadarProductGroup, std::string>
|
|
radarProductGroupName_ {{RadarProductGroup::Level2, "L2"},
|
|
{RadarProductGroup::Level3, "L3"},
|
|
{RadarProductGroup::Unknown, "?"}};
|
|
|
|
static const std::unordered_map<Level2Product, std::string> level2Name_ {
|
|
{Level2Product::Reflectivity, "REF"},
|
|
{Level2Product::Velocity, "VEL"},
|
|
{Level2Product::SpectrumWidth, "SW"},
|
|
{Level2Product::DifferentialReflectivity, "ZDR"},
|
|
{Level2Product::DifferentialPhase, "PHI"},
|
|
{Level2Product::CorrelationCoefficient, "RHO"},
|
|
{Level2Product::ClutterFilterPowerRemoved, "CFP"},
|
|
{Level2Product::Unknown, "?"}};
|
|
|
|
static const std::unordered_map<Level2Product, std::string> level2Description_ {
|
|
{Level2Product::Reflectivity, "Reflectivity"},
|
|
{Level2Product::Velocity, "Velocity"},
|
|
{Level2Product::SpectrumWidth, "Spectrum Width"},
|
|
{Level2Product::DifferentialReflectivity, "Differential Reflectivity"},
|
|
{Level2Product::DifferentialPhase, "Differential Phase"},
|
|
{Level2Product::CorrelationCoefficient, "Correlation Coefficient"},
|
|
{Level2Product::ClutterFilterPowerRemoved, "Clutter Filter Power Removed"},
|
|
{Level2Product::Unknown, "?"}};
|
|
|
|
static const std::unordered_map<Level2Product, std::string> level2Palette_ {
|
|
{Level2Product::Reflectivity, "BR"},
|
|
{Level2Product::Velocity, "BV"},
|
|
{Level2Product::SpectrumWidth, "SW"},
|
|
{Level2Product::DifferentialReflectivity, "ZDR"},
|
|
{Level2Product::DifferentialPhase, "PHI2"},
|
|
{Level2Product::CorrelationCoefficient, "CC"},
|
|
{Level2Product::ClutterFilterPowerRemoved, "???"},
|
|
{Level2Product::Unknown, "???"}};
|
|
|
|
static const std::unordered_map<int, std::string> level3ProductCodeMap_ {
|
|
{30, "SW"}, {37, "NCR"}, {56, "SRM"}, {57, "NVL"}, {78, "N1P"},
|
|
{79, "N3P"}, {80, "NTP"}, {81, "DPA"}, {82, "SPD"}, {94, "DR"},
|
|
{99, "DV"}, {134, "DVL"}, {138, "DSP"}, {153, "SDR"}, {154, "SDV"},
|
|
{159, "DZD"}, {161, "DCC"}, {163, "DKD"}, {165, "DHC"}, {166, "ML"},
|
|
{169, "OHA"}, {170, "DAA"}, {172, "DTA"}, {173, "DUA"}, {174, "DOD"},
|
|
{175, "DSD"}, {177, "HHC"}, {180, "TDR"}, {182, "TDV"}};
|
|
|
|
static const std::unordered_map<std::string, std::string>
|
|
level3ProductDescription_ {
|
|
{"SW", "Spectrum Width"},
|
|
{"NCR", "Composite Reflectivity"},
|
|
{"SRM", "Storm Relative Mean Radial Velocity"},
|
|
{"NVL", "Vertically Integrated Liquid"},
|
|
{"N1P", "Surface Rainfall Accumulation (1 hr)"},
|
|
{"N3P", "Surface Rainfall Accumulation (3 hr)"},
|
|
{"NTP", "Storm Total Rainfall Accumulation"},
|
|
{"DPA", "Hourly Digital Precipitation Array"},
|
|
{"SPD", "Supplemental Precipitation Data"},
|
|
{"DR", "Digital Reflectivity"},
|
|
{"DV", "Digital Velocity"},
|
|
{"DVL", "Digital Vertically Integrated Liquid"},
|
|
{"DSP", "Digital Storm Total Precipitation"},
|
|
{"SDR", "Super-Resolution Reflectivity"},
|
|
{"SDV", "Super-Resolution Velocity"},
|
|
{"DZD", "Digital Differential Reflectivity"},
|
|
{"DCC", "Digital Correlation Coefficient"},
|
|
{"DKD", "Digital Specific Differential Phase"},
|
|
{"DHC", "Digital Hydrometeor Classification"},
|
|
{"ML", "Melting Layer"},
|
|
{"OHA", "One Hour Accumulation"},
|
|
{"DAA", "Digital Accumulation Array"},
|
|
{"DTA", "Digital Storm Total Accumulation"},
|
|
{"DUA", "Digital User-Selectable Accumulation"},
|
|
{"DOD", "Digital One-Hour Difference Accumulation"},
|
|
{"DSD", "Digital Storm Total Difference Accumulation"},
|
|
{"HHC", "Hybrid Hydrometeor Classification"},
|
|
{"TDR", "Digital Reflectivity"},
|
|
{"TDV", "Digital Velocity"},
|
|
{"?", "Unknown"}};
|
|
|
|
static const std::unordered_map<std::string, std::vector<std::string>>
|
|
level3AwipsProducts_ {
|
|
// Reflectivity
|
|
{"SDR", {"NXB", "NYB", "NZB", "N0B", "NAB", "N1B", "NBB", "N2B", "N3B"}},
|
|
{"DR", {"NXQ", "NYQ", "NZQ", "N0Q", "NAQ", "N1Q", "NBQ", "N2Q", "N3Q"}},
|
|
{"TDR", {"TZ0", "TZ1", "TZ2"}},
|
|
{"NCR", {"NCR"}},
|
|
|
|
// Velocity
|
|
{"SDV", {"NXG", "NYG", "NZG", "N0G", "NAG", "N1G"}},
|
|
{"DV", {"NXU", "NYU", "NZU", "N0U", "NAU", "N1U", "NBU", "N2U", "N3U"}},
|
|
{"TDV", {"TV0", "TV1", "TV2"}},
|
|
|
|
// Storm Relative Velocity
|
|
{"SRM", {"N0S", "N1S", "N2S", "N3S"}},
|
|
|
|
// Spectrum Width
|
|
{"SW", {"NSW"}},
|
|
|
|
// Differential Reflectivity
|
|
{"DZD", {"NXX", "NYX", "NZX", "N0X", "NAX", "N1X", "NBX", "N2X", "N3X"}},
|
|
|
|
// Correlation Coefficient
|
|
{"DCC", {"NXC", "NYC", "NZC", "N0C", "NAC", "N1C", "NBC", "N2C", "N3C"}},
|
|
|
|
// Specific Differential Phase
|
|
{"DKD", {"NXK", "NYK", "NZK", "N0K", "NAK", "N1K", "NBK", "N2K", "N3K"}},
|
|
|
|
// Vertically Integrated Liquid
|
|
{"DVL", {"DVL"}},
|
|
{"NVL", {"NVL"}},
|
|
|
|
// Hydrometeor Classification
|
|
{"DHC", {"NXH", "NYH", "NZH", "N0H", "NAH", "N1H", "NBH", "N2H", "N3H"}},
|
|
{"HHC", {"HHC"}},
|
|
|
|
// Accumulation
|
|
{"N1P", {"N1P"}},
|
|
{"N3P", {"N3P"}},
|
|
{"NTP", {"NTP"}},
|
|
{"DPA", {"DPA"}},
|
|
{"SPD", {"SPD"}},
|
|
{"DSP", {"DSP"}},
|
|
{"OHA", {"OHA"}},
|
|
{"DAA", {"DAA"}},
|
|
{"DTA", {"DTA"}},
|
|
{"DUA", {"DU3", "DU6"}},
|
|
{"DOD", {"DOD"}},
|
|
{"DSD", {"DSD"}},
|
|
|
|
// Melting Layer
|
|
{"ML", {"NXM", "NYM", "NZM", "N0M", "NAM", "N1M", "NBM", "N2M", "N3M"}},
|
|
|
|
// Unknown
|
|
{"?", {}}};
|
|
|
|
static const std::unordered_map<Level3ProductCategory, std::string>
|
|
level3CategoryName_ {
|
|
{Level3ProductCategory::Reflectivity, "REF"},
|
|
{Level3ProductCategory::Velocity, "VEL"},
|
|
{Level3ProductCategory::StormRelativeVelocity, "SRM"},
|
|
{Level3ProductCategory::SpectrumWidth, "SW"},
|
|
{Level3ProductCategory::DifferentialReflectivity, "ZDR"},
|
|
{Level3ProductCategory::SpecificDifferentialPhase, "KDP"},
|
|
{Level3ProductCategory::CorrelationCoefficient, "CC"},
|
|
{Level3ProductCategory::VerticallyIntegratedLiquid, "VIL"},
|
|
{Level3ProductCategory::HydrometeorClassification, "HC"},
|
|
{Level3ProductCategory::PrecipitationAccumulation, "ACC"},
|
|
{Level3ProductCategory::Unknown, "?"}};
|
|
|
|
static const std::unordered_map<Level3ProductCategory, std::string>
|
|
level3CategoryDescription_ {
|
|
{Level3ProductCategory::Reflectivity, "Reflectivity"},
|
|
{Level3ProductCategory::Velocity, "Velocity"},
|
|
{Level3ProductCategory::StormRelativeVelocity, "Storm Relative Velocity"},
|
|
{Level3ProductCategory::SpectrumWidth, "Spectrum Width"},
|
|
{Level3ProductCategory::DifferentialReflectivity,
|
|
"Differential Reflectivity"},
|
|
{Level3ProductCategory::SpecificDifferentialPhase,
|
|
"Specific Differential Phase"},
|
|
{Level3ProductCategory::CorrelationCoefficient,
|
|
"Correlation Coefficient"},
|
|
{Level3ProductCategory::VerticallyIntegratedLiquid,
|
|
"Vertically Integrated Liquid"},
|
|
{Level3ProductCategory::HydrometeorClassification,
|
|
"Hydrometeor Classification"},
|
|
{Level3ProductCategory::PrecipitationAccumulation,
|
|
"Precipitation Accumulation"},
|
|
{Level3ProductCategory::Unknown, "?"}};
|
|
|
|
static const std::unordered_map<Level3ProductCategory, std::vector<std::string>>
|
|
level3CategoryProductList_ {
|
|
{Level3ProductCategory::Reflectivity, {"SDR", "DR", "TDR", "NCR"}},
|
|
{Level3ProductCategory::Velocity, {"SDV", "DV", "TDV"}},
|
|
{Level3ProductCategory::StormRelativeVelocity, {"SRM"}},
|
|
{Level3ProductCategory::SpectrumWidth, {"SW"}},
|
|
{Level3ProductCategory::DifferentialReflectivity, {"DZD"}},
|
|
{Level3ProductCategory::SpecificDifferentialPhase, {"DKD"}},
|
|
{Level3ProductCategory::CorrelationCoefficient, {"DCC"}},
|
|
{Level3ProductCategory::VerticallyIntegratedLiquid, {"DVL", "NVL"}},
|
|
{Level3ProductCategory::HydrometeorClassification, {"DHC", "HHC"}},
|
|
{Level3ProductCategory::PrecipitationAccumulation, {"DAA", "DTA", "DUA"}},
|
|
{Level3ProductCategory::Unknown, {}}};
|
|
|
|
static const std::unordered_map<Level3ProductCategory, std::string>
|
|
level3CategoryDefaultAwipsId_ {
|
|
{Level3ProductCategory::Reflectivity, "N0B"},
|
|
{Level3ProductCategory::Velocity, "N0G"},
|
|
{Level3ProductCategory::StormRelativeVelocity, "N0S"},
|
|
{Level3ProductCategory::SpectrumWidth, "NSW"},
|
|
{Level3ProductCategory::DifferentialReflectivity, "N0X"},
|
|
{Level3ProductCategory::SpecificDifferentialPhase, "N0K"},
|
|
{Level3ProductCategory::CorrelationCoefficient, "N0C"},
|
|
{Level3ProductCategory::VerticallyIntegratedLiquid, "DVL"},
|
|
{Level3ProductCategory::HydrometeorClassification, "N0H"},
|
|
{Level3ProductCategory::PrecipitationAccumulation, "DAA"}};
|
|
|
|
static const std::unordered_map<int, std::string> level3Palette_ {
|
|
{19, "BR"}, {20, "BR"}, {27, "BV"}, {30, "SW"},
|
|
{31, "STPIN"}, {32, "BR"}, {37, "BR"}, {38, "BR"},
|
|
{41, "ET"}, {50, "BR"}, {51, "BV"}, {56, "SRV"},
|
|
{57, "VIL"}, {65, "BR"}, {66, "BR"}, {67, "BR"},
|
|
{78, "OHPIN"}, {79, "OHPIN"}, {80, "STPIN"}, {81, "OHP"},
|
|
{86, "BV"}, {90, "BR"}, {93, "BV"}, {94, "BR"},
|
|
{97, "BR"}, {98, "BR"}, {99, "BV"}, {113, "???"},
|
|
{132, "???"}, {133, "???"}, {134, "VIL"}, {135, "ET"},
|
|
{137, "BR"}, {138, "STPIN"}, {144, "OHPIN"}, {145, "OHPIN"},
|
|
{146, "STPIN"}, {150, "STPIN"}, {151, "STPIN"}, {153, "BR"},
|
|
{154, "BV"}, {155, "SW"}, {159, "ZDR"}, {161, "CC"},
|
|
{163, "PHI3"}, {165, "HC"}, {167, "CC"}, {168, "PHI3"},
|
|
{169, "OHP"}, {170, "OHP"}, {171, "STP"}, {172, "STP"},
|
|
{173, "STP"}, {174, "DOD"}, {175, "DSD"}, {176, "???"},
|
|
{177, "HC"}, {178, "???"}, {179, "???"}, {180, "BR"},
|
|
{181, "BR"}, {182, "BV"}, {184, "SW"}, {186, "BR"},
|
|
{193, "BR"}, {195, "BR"}, {-1, "???"}};
|
|
|
|
const std::string& GetRadarProductGroupName(RadarProductGroup group)
|
|
{
|
|
return radarProductGroupName_.at(group);
|
|
}
|
|
|
|
RadarProductGroup GetRadarProductGroup(const std::string& name)
|
|
{
|
|
auto result = std::find_if(
|
|
radarProductGroupName_.cbegin(),
|
|
radarProductGroupName_.cend(),
|
|
[&](const std::pair<RadarProductGroup, std::string>& pair) -> bool
|
|
{ return pair.second == name; });
|
|
|
|
if (result != radarProductGroupName_.cend())
|
|
{
|
|
return result->first;
|
|
}
|
|
else
|
|
{
|
|
return RadarProductGroup::Unknown;
|
|
}
|
|
}
|
|
|
|
const std::string& GetLevel2Name(Level2Product product)
|
|
{
|
|
return level2Name_.at(product);
|
|
}
|
|
|
|
const std::string& GetLevel2Description(Level2Product product)
|
|
{
|
|
return level2Description_.at(product);
|
|
}
|
|
|
|
const std::string& GetLevel2Palette(Level2Product product)
|
|
{
|
|
return level2Palette_.at(product);
|
|
}
|
|
|
|
Level2Product GetLevel2Product(const std::string& name)
|
|
{
|
|
auto result = std::find_if(
|
|
level2Name_.cbegin(),
|
|
level2Name_.cend(),
|
|
[&](const std::pair<Level2Product, std::string>& pair) -> bool
|
|
{ return pair.second == name; });
|
|
|
|
if (result != level2Name_.cend())
|
|
{
|
|
return result->first;
|
|
}
|
|
else
|
|
{
|
|
return Level2Product::Unknown;
|
|
}
|
|
}
|
|
|
|
const std::string& GetLevel3CategoryName(Level3ProductCategory category)
|
|
{
|
|
return level3CategoryName_.at(category);
|
|
}
|
|
|
|
const std::string& GetLevel3CategoryDescription(Level3ProductCategory category)
|
|
{
|
|
return level3CategoryDescription_.at(category);
|
|
}
|
|
|
|
const std::string&
|
|
GetLevel3CategoryDefaultProduct(Level3ProductCategory category)
|
|
{
|
|
return level3CategoryDefaultAwipsId_.at(category);
|
|
}
|
|
|
|
Level3ProductCategory GetLevel3Category(const std::string& categoryName)
|
|
{
|
|
auto result = std::find_if(
|
|
level3CategoryName_.cbegin(),
|
|
level3CategoryName_.cend(),
|
|
[&](const std::pair<Level3ProductCategory, std::string>& pair) -> bool
|
|
{ return pair.second == categoryName; });
|
|
|
|
if (result != level3CategoryName_.cend())
|
|
{
|
|
return result->first;
|
|
}
|
|
else
|
|
{
|
|
return Level3ProductCategory::Unknown;
|
|
}
|
|
}
|
|
|
|
Level3ProductCategory GetLevel3CategoryByProduct(const std::string& productName)
|
|
{
|
|
auto result = std::find_if(
|
|
level3CategoryProductList_.cbegin(),
|
|
level3CategoryProductList_.cend(),
|
|
[&](
|
|
const std::pair<Level3ProductCategory, std::vector<std::string>>& pair)
|
|
-> bool
|
|
{
|
|
return std::find(pair.second.cbegin(),
|
|
pair.second.cend(),
|
|
productName) != pair.second.cend();
|
|
});
|
|
|
|
if (result != level3CategoryProductList_.cend())
|
|
{
|
|
return result->first;
|
|
}
|
|
else
|
|
{
|
|
return Level3ProductCategory::Unknown;
|
|
}
|
|
}
|
|
|
|
Level3ProductCategory GetLevel3CategoryByAwipsId(const std::string& awipsId)
|
|
{
|
|
std::string productName = GetLevel3ProductByAwipsId(awipsId);
|
|
|
|
return GetLevel3CategoryByProduct(productName);
|
|
}
|
|
|
|
const std::string& GetLevel3Palette(int16_t productCode)
|
|
{
|
|
auto it = level3Palette_.find(productCode);
|
|
if (it != level3Palette_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
else
|
|
{
|
|
return level3Palette_.at(-1);
|
|
}
|
|
}
|
|
|
|
std::string GetLevel3ProductByAwipsId(const std::string& awipsId)
|
|
{
|
|
auto result = std::find_if(
|
|
level3AwipsProducts_.cbegin(),
|
|
level3AwipsProducts_.cend(),
|
|
[&](const std::pair<std::string, std::vector<std::string>>& pair) -> bool
|
|
{
|
|
return std::find(pair.second.cbegin(), pair.second.cend(), awipsId) !=
|
|
pair.second.cend();
|
|
});
|
|
|
|
if (result != level3AwipsProducts_.cend())
|
|
{
|
|
return result->first;
|
|
}
|
|
else
|
|
{
|
|
return "?";
|
|
}
|
|
}
|
|
|
|
const std::string& GetLevel3ProductDescription(const std::string& productName)
|
|
{
|
|
auto it = level3ProductDescription_.find(productName);
|
|
if (it != level3ProductDescription_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
else
|
|
{
|
|
return level3ProductDescription_.at("?");
|
|
}
|
|
}
|
|
|
|
int16_t GetLevel3ProductCodeByAwipsId(const std::string& awipsId)
|
|
{
|
|
const std::string& productName {GetLevel3ProductByAwipsId(awipsId)};
|
|
const int16_t productCode {GetLevel3ProductCodeByProduct(productName)};
|
|
|
|
return productCode;
|
|
}
|
|
|
|
int16_t GetLevel3ProductCodeByProduct(const std::string& productName)
|
|
{
|
|
auto it = std::find_if(level3ProductCodeMap_.cbegin(),
|
|
level3ProductCodeMap_.cend(),
|
|
[&](auto&& p) { return p.second == productName; });
|
|
|
|
if (it != level3ProductCodeMap_.cend())
|
|
{
|
|
return static_cast<int16_t>(it->first);
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
const std::vector<std::string>&
|
|
GetLevel3ProductsByCategory(Level3ProductCategory category)
|
|
{
|
|
auto it = level3CategoryProductList_.find(category);
|
|
if (it != level3CategoryProductList_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
else
|
|
{
|
|
return level3CategoryProductList_.at(Level3ProductCategory::Unknown);
|
|
}
|
|
}
|
|
|
|
const std::vector<std::string>&
|
|
GetLevel3AwipsIdsByProduct(const std::string& productName)
|
|
{
|
|
auto it = level3AwipsProducts_.find(productName);
|
|
if (it != level3AwipsProducts_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
else
|
|
{
|
|
return level3AwipsProducts_.at("?");
|
|
}
|
|
}
|
|
|
|
} // namespace common
|
|
} // namespace scwx
|