Selectable elevation cuts

This commit is contained in:
Dan Paulat 2021-11-14 22:41:25 -06:00
parent 19f1207384
commit e76ac3bc36
15 changed files with 230 additions and 51 deletions

View file

@ -0,0 +1,14 @@
#pragma once
namespace scwx
{
namespace common
{
namespace Characters
{
constexpr char DEGREE = static_cast<char>(0xb0);
} // namespace Characters
} // namespace common
} // namespace scwx

View file

@ -40,7 +40,7 @@ public:
std::map<uint16_t, std::shared_ptr<rda::ElevationScan>> radar_data() const;
std::shared_ptr<const rda::VolumeCoveragePatternData> vcp_data() const;
std::pair<float, std::shared_ptr<rda::ElevationScan>>
std::tuple<std::shared_ptr<rda::ElevationScan>, float, std::vector<float>>
GetElevationScan(rda::DataBlockType dataBlockType,
float elevation,
std::chrono::system_clock::time_point time) const;