| 19 | {} |
| 20 | |
| 21 | void WorldFinalProcessor::Process() |
| 22 | { |
| 23 | auto fbs = ReadAllDatRawFormat<serialization_policy::MaxAccuracy>(m_worldTmpFilename); |
| 24 | Order(fbs); |
| 25 | WorldGenerator generator(m_worldTmpFilename, m_coastlineGeomFilename, m_popularPlacesFilename); |
| 26 | LOG(LINFO, ("Processing World features...")); |
| 27 | for (auto & fb : fbs) |
| 28 | generator.Process(fb); |
| 29 | |
| 30 | LOG(LINFO, ("Merging World lines...")); |
| 31 | generator.DoMerge(); |
| 32 | } |
| 33 | |
| 34 | } // namespace generator |