| 46 | namespace |
| 47 | { |
| 48 | void LoadBorders(std::string const & dir, CountryId const & countryId, std::vector<m2::RegionD> & borders) |
| 49 | { |
| 50 | std::string const polyFile = base::JoinPath(dir, BORDERS_DIR, countryId + BORDERS_EXTENSION); |
| 51 | borders.clear(); |
| 52 | borders::LoadBorders(polyFile, borders); |
| 53 | } |
| 54 | |
| 55 | void FillOsmIdToFeatureIdsMap(std::string const & osmIdToFeatureIdsPath, OsmIdToFeatureIdsMap & mapping) |
| 56 | { |
no test coverage detected