Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cities_boundaries_builder.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb1fdf0507881e7b2912b15f789400928f879fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "indexer/city_boundary.hpp"

#include "base/clustering_map.hpp"
#include "base/geo_object_id.hpp"

#include <cstdint>
#include <string>

namespace generator
{
using OsmIdToBoundariesTable =
    base::ClusteringMap<base::GeoObjectId, indexer::CityBoundary>;
using TestIdToBoundariesTable = base::ClusteringMap<uint64_t, indexer::CityBoundary>;

bool BuildCitiesBoundaries(std::string const & dataPath, std::string const & osmToFeaturePath,
                           OsmIdToBoundariesTable & table);
bool BuildCitiesBoundariesForTesting(std::string const & dataPath, TestIdToBoundariesTable & table);

bool SerializeBoundariesTable(std::string const & path, OsmIdToBoundariesTable & table);
bool DeserializeBoundariesTable(std::string const & path, OsmIdToBoundariesTable & table);
}  // namespace generator