AWS Level 3 Data Provider

This commit is contained in:
Dan Paulat 2022-05-30 00:53:44 -05:00
parent c5c54fbfa2
commit 70b8f78eb5
7 changed files with 259 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#include <scwx/provider/nexrad_data_provider_factory.hpp>
#include <scwx/provider/aws_level2_data_provider.hpp>
#include <scwx/provider/aws_level3_data_provider.hpp>
namespace scwx
{
@ -16,5 +17,12 @@ NexradDataProviderFactory::CreateLevel2DataProvider(
return std::make_unique<AwsLevel2DataProvider>(radarSite);
}
std::shared_ptr<NexradDataProvider>
NexradDataProviderFactory::CreateLevel3DataProvider(
const std::string& radarSite, const std::string& product)
{
return std::make_unique<AwsLevel3DataProvider>(radarSite, product);
}
} // namespace provider
} // namespace scwx