forked from organicmaps/organicmaps
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "generator/composite_id.hpp"
|
|
|
|
#include "indexer/classificator.hpp"
|
|
#include "indexer/feature_data.hpp"
|
|
|
|
#include "geometry/point2d.hpp"
|
|
|
|
#include "coding/csv_reader.hpp"
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
namespace generator
|
|
{
|
|
struct HierarchyEntry
|
|
{
|
|
CompositeId m_id;
|
|
boost::optional<CompositeId> m_parentId;
|
|
size_t m_depth = 0;
|
|
std::string m_name;
|
|
std::string m_countryName;
|
|
m2::PointD m_center;
|
|
uint32_t m_type = ftype::GetEmptyValue();
|
|
};
|
|
|
|
bool operator==(HierarchyEntry const & lhs, HierarchyEntry const & rhs);
|
|
|
|
std::string DebugPrint(HierarchyEntry const & entry);
|
|
|
|
namespace popularity
|
|
{
|
|
static char const kCsvDelimiter = ';';
|
|
|
|
uint32_t GetMainType(FeatureParams::Types const & types);
|
|
std::string GetName(StringUtf8Multilang const & str);
|
|
|
|
coding::CSVReader::Row HierarchyEntryToCsvRow(HierarchyEntry const & entry);
|
|
HierarchyEntry HierarchyEntryFromCsvRow(coding::CSVReader::Row const & row);
|
|
|
|
std::string HierarchyEntryToCsvString(HierarchyEntry const & entry, char delim = kCsvDelimiter);
|
|
} // namespace popularity
|
|
} // namespace generator
|