mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 17:10:05 +00:00
Get data level code and value from level 3 radial data, stubs for raster and level 2
This commit is contained in:
parent
a652ac460b
commit
c1280c05aa
7 changed files with 95 additions and 0 deletions
|
|
@ -360,6 +360,21 @@ Level3RasterView::GetBinLevel(const common::Coordinate& coordinate) const
|
|||
return std::nullopt;
|
||||
}
|
||||
|
||||
std::optional<wsr88d::DataLevelCode>
|
||||
Level3RasterView::GetDataLevelCode(std::uint16_t level) const
|
||||
{
|
||||
// TODO
|
||||
Q_UNUSED(level);
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
std::optional<float> Level3RasterView::GetDataValue(std::uint16_t level) const
|
||||
{
|
||||
// TODO
|
||||
Q_UNUSED(level);
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
std::shared_ptr<Level3RasterView> Level3RasterView::Create(
|
||||
const std::string& product,
|
||||
std::shared_ptr<manager::RadarProductManager> radarProductManager)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue