Temporarly use only the L2 Chunks data provider for L2 data

This commit is contained in:
AdenKoperczak 2025-03-27 11:23:25 -04:00
parent 9570dcf20e
commit 7fef5789de
No known key found for this signature in database
GPG key ID: 9843017036F62EE7

View file

@ -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>