Parallelize the chunks loading and load from archive when possible

This commit is contained in:
AdenKoperczak 2025-04-20 13:02:02 -04:00
parent e10ebdeb5e
commit 759a9e4379
No known key found for this signature in database
GPG key ID: 9843017036F62EE7
3 changed files with 88 additions and 12 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include <scwx/provider/nexrad_data_provider.hpp>
#include <scwx/provider/aws_level2_data_provider.hpp>
#include <optional>
@ -61,6 +62,9 @@ public:
std::optional<float> GetCurrentElevation();
void SetLevel2DataProvider(
const std::shared_ptr<AwsLevel2DataProvider>& provider);
private:
class Impl;
std::unique_ptr<Impl> p;