mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:40:04 +00:00
Get bin values at coordinates from level 3 radial data, stubs for raster and level 2
This commit is contained in:
parent
c67b4cf536
commit
6e04e1fab3
9 changed files with 153 additions and 19 deletions
|
|
@ -13,8 +13,6 @@ namespace qt
|
|||
namespace view
|
||||
{
|
||||
|
||||
class Level3RadialViewImpl;
|
||||
|
||||
class Level3RadialView : public Level3ProductView
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
@ -32,6 +30,8 @@ public:
|
|||
|
||||
std::tuple<const void*, std::size_t, std::size_t>
|
||||
GetMomentData() const override;
|
||||
std::optional<std::uint16_t>
|
||||
GetBinLevel(const common::Coordinate& coordinate) const override;
|
||||
|
||||
static std::shared_ptr<Level3RadialView>
|
||||
Create(const std::string& product,
|
||||
|
|
@ -44,7 +44,8 @@ protected slots:
|
|||
void ComputeSweep() override;
|
||||
|
||||
private:
|
||||
std::unique_ptr<Level3RadialViewImpl> p;
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> p;
|
||||
};
|
||||
|
||||
} // namespace view
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue