| 159 | } |
| 160 | |
| 161 | bool CoastlineFeaturesGenerator::Finish() |
| 162 | { |
| 163 | coastlines_generator::DoAddToTree doAdd(*this); |
| 164 | m_merger.DoMerge(doAdd); |
| 165 | |
| 166 | if (doAdd.HasNotMergedCoasts()) |
| 167 | { |
| 168 | LOG(LINFO, ("Total not merged coasts:", doAdd.GetNotMergedCoastsCount())); |
| 169 | LOG(LINFO, ("Total points in not merged coasts:", doAdd.GetNotMergedCoastsPoints())); |
| 170 | return false; |
| 171 | } |
| 172 | |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | class RegionInCellSplitter final |
| 177 | { |
nothing calls this directly
no test coverage detected