mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:00:08 +00:00
Index volume scan by time, change internal data structure from unordered to ordered map
This commit is contained in:
parent
e78231ac48
commit
efeb87baaa
9 changed files with 104 additions and 71 deletions
|
|
@ -3,9 +3,9 @@
|
|||
#include <scwx/wsr88d/rda/digital_radar_data.hpp>
|
||||
#include <scwx/wsr88d/rda/volume_coverage_pattern_data.hpp>
|
||||
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
|
|
@ -31,9 +31,14 @@ public:
|
|||
Ar2vFile(Ar2vFile&&) noexcept;
|
||||
Ar2vFile& operator=(Ar2vFile&&) noexcept;
|
||||
|
||||
std::unordered_map<
|
||||
uint16_t,
|
||||
std::unordered_map<uint16_t, std::shared_ptr<rda::DigitalRadarData>>>
|
||||
uint32_t julian_date() const;
|
||||
uint32_t milliseconds() const;
|
||||
|
||||
std::chrono::system_clock::time_point start_time() const;
|
||||
std::chrono::system_clock::time_point end_time() const;
|
||||
|
||||
std::map<uint16_t,
|
||||
std::map<uint16_t, std::shared_ptr<rda::DigitalRadarData>>>
|
||||
radar_data() const;
|
||||
std::shared_ptr<const rda::VolumeCoveragePatternData> vcp_data() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue