forked from organicmaps/organicmaps-tmp
[transit] Check directory with transit json existence.
This commit is contained in:
parent
4076e3cc0e
commit
5f8fd1f6f1
1 changed files with 5 additions and 1 deletions
|
@ -171,8 +171,12 @@ EdgeIdToFeatureId BuildTransit(std::string const & mwmDir, CountryId const & cou
|
|||
OsmIdToFeatureIdsMap mapping;
|
||||
FillOsmIdToFeatureIdsMap(osmIdToFeatureIdsPath, mapping);
|
||||
|
||||
std::string const transitPath = base::JoinPath(transitDir, countryId);
|
||||
if (!Platform::IsFileExistsByFullPath(transitPath))
|
||||
return {};
|
||||
|
||||
TransitData data;
|
||||
DeserializeFromJson(mapping, base::JoinPath(transitDir, countryId), data);
|
||||
DeserializeFromJson(mapping, transitPath, data);
|
||||
|
||||
// Transit section can be empty.
|
||||
if (data.IsEmpty())
|
||||
|
|
Loading…
Add table
Reference in a new issue