MCPcopy Create free account
hub / github.com/comaps/comaps / Process

Method Process

generator/final_processor_world.cpp:21–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19{}
20
21void 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

Callers

nothing calls this directly

Calls 2

OrderFunction · 0.85
DoMergeMethod · 0.45

Tested by

no test coverage detected