mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:10:05 +00:00
Add support for Composite Reflectivity (NCR)
This commit is contained in:
parent
0d0bdd4f8b
commit
aa0dab00a6
1 changed files with 5 additions and 2 deletions
|
|
@ -43,6 +43,7 @@ static const std::unordered_map<Level2Product, std::string> level2Palette_ {
|
||||||
{Level2Product::Unknown, "???"}};
|
{Level2Product::Unknown, "???"}};
|
||||||
|
|
||||||
static const std::unordered_map<int, std::string> level3ProductCodeMap_ {
|
static const std::unordered_map<int, std::string> level3ProductCodeMap_ {
|
||||||
|
{37, "NCR"},
|
||||||
{56, "SRM"},
|
{56, "SRM"},
|
||||||
{94, "DR"},
|
{94, "DR"},
|
||||||
{99, "DV"},
|
{99, "DV"},
|
||||||
|
|
@ -62,6 +63,7 @@ static const std::unordered_map<std::string, std::string>
|
||||||
{"DV", "Digital Velocity"},
|
{"DV", "Digital Velocity"},
|
||||||
{"SDR", "Super-Resolution Reflectivity"},
|
{"SDR", "Super-Resolution Reflectivity"},
|
||||||
{"SDV", "Super-Resolution Velocity"},
|
{"SDV", "Super-Resolution Velocity"},
|
||||||
|
{"NCR", "Composite Reflectivity"},
|
||||||
{"DZD", "Digital Differential Reflectivity"},
|
{"DZD", "Digital Differential Reflectivity"},
|
||||||
{"DCC", "Digital Correlation Coefficient"},
|
{"DCC", "Digital Correlation Coefficient"},
|
||||||
{"DKD", "Digital Specific Differential Phase"},
|
{"DKD", "Digital Specific Differential Phase"},
|
||||||
|
|
@ -76,8 +78,9 @@ static const std::unordered_map<std::string, std::vector<std::string>>
|
||||||
level3AwipsProducts_ {
|
level3AwipsProducts_ {
|
||||||
// Reflectivity
|
// Reflectivity
|
||||||
{"SDR", {"NXB", "NYB", "NZB", "N0B", "NAB", "N1B", "NBB", "N2B", "N3B"}},
|
{"SDR", {"NXB", "NYB", "NZB", "N0B", "NAB", "N1B", "NBB", "N2B", "N3B"}},
|
||||||
{"DR", {"NXQ", "NY", "NZQ", "N0Q", "NAQ", "N1Q", "NBQ", "N2Q", "N3Q"}},
|
{"DR", {"NXQ", "NYQ", "NZQ", "N0Q", "NAQ", "N1Q", "NBQ", "N2Q", "N3Q"}},
|
||||||
{"TDR", {"TZ0", "TZ1", "TZ2"}},
|
{"TDR", {"TZ0", "TZ1", "TZ2"}},
|
||||||
|
{"NCR", {"NCR"}},
|
||||||
|
|
||||||
// Velocity
|
// Velocity
|
||||||
{"SDV", {"NXG", "NYG", "NZG", "N0G", "NAG", "N1G"}},
|
{"SDV", {"NXG", "NYG", "NZG", "N0G", "NAG", "N1G"}},
|
||||||
|
|
@ -135,7 +138,7 @@ static const std::unordered_map<Level3ProductCategory, std::string>
|
||||||
|
|
||||||
static const std::unordered_map<Level3ProductCategory, std::vector<std::string>>
|
static const std::unordered_map<Level3ProductCategory, std::vector<std::string>>
|
||||||
level3CategoryProductList_ {
|
level3CategoryProductList_ {
|
||||||
{Level3ProductCategory::Reflectivity, {"SDR", "DR", "TDR"}},
|
{Level3ProductCategory::Reflectivity, {"SDR", "DR", "TDR", "NCR"}},
|
||||||
{Level3ProductCategory::Velocity, {"SDV", "DV", "TDV"}},
|
{Level3ProductCategory::Velocity, {"SDV", "DV", "TDV"}},
|
||||||
{Level3ProductCategory::StormRelativeVelocity, {"SRM"}},
|
{Level3ProductCategory::StormRelativeVelocity, {"SRM"}},
|
||||||
{Level3ProductCategory::SpectrumWidth, {"SW"}},
|
{Level3ProductCategory::SpectrumWidth, {"SW"}},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue