| 296 | } |
| 297 | |
| 298 | void CountryFinalProcessor::ProcessCoastline() |
| 299 | { |
| 300 | /// @todo We can remove MinSize at all. |
| 301 | auto fbs = ReadAllDatRawFormat<serialization_policy::MaxAccuracy>(m_coastlineGeomFilename); |
| 302 | |
| 303 | auto const affiliations = AppendToMwmTmp(fbs, *m_affiliations, m_temporaryMwmPath, m_threadsCount); |
| 304 | FeatureBuilderWriter<> collector(m_worldCoastsFilename); |
| 305 | for (size_t i = 0; i < fbs.size(); ++i) |
| 306 | { |
| 307 | fbs[i].SetName(localisation::kDefaultNameIndex, strings::JoinStrings(affiliations[i], ';')); |
| 308 | collector.Write(fbs[i]); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | void CountryFinalProcessor::AddFakeNodes() |
| 313 | { |
nothing calls this directly
no test coverage detected