mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:50:05 +00:00
Adding level 2 data provider to product manager
This commit is contained in:
parent
63474cddcc
commit
078b9c407c
4 changed files with 67 additions and 3 deletions
28
wxdata/source/scwx/provider/level2_data_provider_factory.cpp
Normal file
28
wxdata/source/scwx/provider/level2_data_provider_factory.cpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#include <scwx/wsr88d/rda/level2_message_factory.hpp>
|
||||
|
||||
#include <scwx/util/logger.hpp>
|
||||
#include <scwx/util/vectorbuf.hpp>
|
||||
#include <scwx/wsr88d/rda/clutter_filter_bypass_map.hpp>
|
||||
#include <scwx/wsr88d/rda/clutter_filter_map.hpp>
|
||||
#include <scwx/wsr88d/rda/digital_radar_data.hpp>
|
||||
#include <scwx/wsr88d/rda/performance_maintenance_data.hpp>
|
||||
#include <scwx/wsr88d/rda/rda_adaptation_data.hpp>
|
||||
#include <scwx/provider/level2_data_provider_factory.hpp>
|
||||
#include <scwx/provider/aws_level2_data_provider.hpp>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace provider
|
||||
{
|
||||
|
||||
static const std::string logPrefix_ =
|
||||
"scwx::provider::level2_data_provider_factory";
|
||||
|
||||
std::shared_ptr<Level2DataProvider>
|
||||
Level2DataProviderFactory::Create(const std::string& radarSite)
|
||||
{
|
||||
return std::make_unique<AwsLevel2DataProvider>(radarSite);
|
||||
}
|
||||
|
||||
} // namespace provider
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue