mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:50:05 +00:00
AWS Level 3 Data Provider
This commit is contained in:
parent
c5c54fbfa2
commit
70b8f78eb5
7 changed files with 259 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue