Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
21
generator/osm_element_helpers.hpp
Normal file
21
generator/osm_element_helpers.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "generator/osm_element.hpp"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace generator
|
||||
{
|
||||
namespace osm_element
|
||||
{
|
||||
uint64_t GetPopulation(std::string const & str);
|
||||
uint64_t GetPopulation(OsmElement const & elem);
|
||||
|
||||
/// @return All admin_centre and label role Nodes.
|
||||
std::vector<uint64_t> GetPlaceNodeFromMembers(OsmElement const & elem);
|
||||
|
||||
/// @return 0 If no valid admin_level tag.
|
||||
uint8_t GetAdminLevel(OsmElement const & elem);
|
||||
} // namespace osm_element
|
||||
} // namespace generator
|
||||
Loading…
Add table
Add a link
Reference in a new issue