mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 14:00:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/view/level3_product_view.hpp>
 | 
						|
 | 
						|
#include <chrono>
 | 
						|
#include <memory>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
namespace scwx::qt::view
 | 
						|
{
 | 
						|
 | 
						|
class Level3RadialView : public Level3ProductView
 | 
						|
{
 | 
						|
   Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
   explicit Level3RadialView(
 | 
						|
      const std::string&                            product,
 | 
						|
      std::shared_ptr<manager::RadarProductManager> radarProductManager);
 | 
						|
   ~Level3RadialView() override;
 | 
						|
 | 
						|
   Level3RadialView(const Level3RadialView&)            = delete;
 | 
						|
   Level3RadialView(Level3RadialView&&)                 = delete;
 | 
						|
   Level3RadialView& operator=(const Level3RadialView&) = delete;
 | 
						|
   Level3RadialView& operator=(Level3RadialView&&)      = delete;
 | 
						|
 | 
						|
   [[nodiscard]] std::optional<float> elevation() const override;
 | 
						|
   [[nodiscard]] float                range() const override;
 | 
						|
   [[nodiscard]] std::chrono::system_clock::time_point
 | 
						|
                                           sweep_time() const override;
 | 
						|
   [[nodiscard]] std::uint16_t             vcp() const override;
 | 
						|
   [[nodiscard]] const std::vector<float>& vertices() const override;
 | 
						|
 | 
						|
   [[nodiscard]] std::tuple<const void*, std::size_t, std::size_t>
 | 
						|
   GetMomentData() const override;
 | 
						|
 | 
						|
   [[nodiscard]] std::optional<std::uint16_t>
 | 
						|
   GetBinLevel(const common::Coordinate& coordinate) const override;
 | 
						|
 | 
						|
   static std::shared_ptr<Level3RadialView>
 | 
						|
   Create(const std::string&                            product,
 | 
						|
          std::shared_ptr<manager::RadarProductManager> radarProductManager);
 | 
						|
 | 
						|
protected:
 | 
						|
   boost::asio::thread_pool& thread_pool() override;
 | 
						|
 | 
						|
protected slots:
 | 
						|
   void ComputeSweep() override;
 | 
						|
 | 
						|
private:
 | 
						|
   class Impl;
 | 
						|
   std::unique_ptr<Impl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace scwx::qt::view
 |