mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:10:05 +00:00
Temporarly use only the L2 Chunks data provider for L2 data
This commit is contained in:
parent
9570dcf20e
commit
7fef5789de
1 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
#include <scwx/provider/nexrad_data_provider_factory.hpp>
|
#include <scwx/provider/nexrad_data_provider_factory.hpp>
|
||||||
#include <scwx/provider/aws_level2_data_provider.hpp>
|
//#include <scwx/provider/aws_level2_data_provider.hpp>
|
||||||
|
#include <scwx/provider/aws_level2_chunks_data_provider.hpp>
|
||||||
#include <scwx/provider/aws_level3_data_provider.hpp>
|
#include <scwx/provider/aws_level3_data_provider.hpp>
|
||||||
|
|
||||||
namespace scwx
|
namespace scwx
|
||||||
|
|
@ -14,7 +15,7 @@ std::shared_ptr<NexradDataProvider>
|
||||||
NexradDataProviderFactory::CreateLevel2DataProvider(
|
NexradDataProviderFactory::CreateLevel2DataProvider(
|
||||||
const std::string& radarSite)
|
const std::string& radarSite)
|
||||||
{
|
{
|
||||||
return std::make_unique<AwsLevel2DataProvider>(radarSite);
|
return std::make_unique<AwsLevel2ChunksDataProvider>(radarSite);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::shared_ptr<NexradDataProvider>
|
std::shared_ptr<NexradDataProvider>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue