Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
26
generator/isolines_generator.hpp
Normal file
26
generator/isolines_generator.hpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#pragma once
|
||||
|
||||
#include "generator/feature_builder.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
namespace generator
|
||||
{
|
||||
// For generated isolines must be built isolines_info section based on the same binary isolines file.
|
||||
class IsolineFeaturesGenerator
|
||||
{
|
||||
public:
|
||||
explicit IsolineFeaturesGenerator(std::string const & isolinesDir);
|
||||
|
||||
using FeaturesCollectFn = std::function<void(feature::FeatureBuilder && fb)>;
|
||||
void GenerateIsolines(std::string const & countryName, FeaturesCollectFn const & fn) const;
|
||||
|
||||
private:
|
||||
uint32_t GetIsolineType(int altitude) const;
|
||||
|
||||
std::string m_isolinesDir;
|
||||
std::unordered_map<int, uint32_t> m_altClassToType;
|
||||
};
|
||||
} // namespace generator
|
||||
Loading…
Add table
Add a link
Reference in a new issue