| 178 | } |
| 179 | |
| 180 | void ProcessGraph(std::string const & mwmPath, CountryId const & countryId, |
| 181 | OsmIdToFeatureIdsMap const & osmIdToFeatureIdsMap, GraphData & data) |
| 182 | { |
| 183 | CalculateBestPedestrianSegments(mwmPath, countryId, data); |
| 184 | data.Sort(); |
| 185 | data.CheckValidSortedUnique(); |
| 186 | } |
| 187 | |
| 188 | void BuildTransit(std::string const & mwmDir, CountryId const & countryId, std::string const & osmIdToFeatureIdsPath, |
| 189 | std::string const & transitDir) |
no test coverage detected