mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 04:40:05 +00:00
Don't display "No Data" data level code
This commit is contained in:
parent
9225103a92
commit
a77b6bea9d
1 changed files with 3 additions and 1 deletions
|
|
@ -353,7 +353,9 @@ bool RadarProductLayer::RunMousePicking(
|
|||
std::optional<float> value =
|
||||
radarProductView->GetDataValue(binLevel.value());
|
||||
|
||||
if (code.has_value() && code.value() != wsr88d::DataLevelCode::Blank)
|
||||
if (code.has_value() && //
|
||||
code.value() != wsr88d::DataLevelCode::Blank &&
|
||||
code.value() != wsr88d::DataLevelCode::NoData)
|
||||
{
|
||||
// Level has associated data level code
|
||||
std::string codeName = wsr88d::GetDataLevelCodeName(code.value());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue