libosmscout 1.1.1
Loading...
Searching...
No Matches
GenWaterIndex.h
Go to the documentation of this file.
1#ifndef OSMSCOUT_IMPORT_GENWATERINDEX_H
2#define OSMSCOUT_IMPORT_GENWATERINDEX_H
3
4/*
5 This source is part of the libosmscout library
6 Copyright (C) 2010 Tim Teulings
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21*/
22
23#include <list>
24
27
29
30namespace osmscout {
31
37 class OSMSCOUT_IMPORT_API WaterIndexGenerator CLASS_FINAL : public ImportModule
38 {
39 private:
40 bool LoadRawBoundaries(const ImportParameter& parameter,
41 Progress& progress,
42 std::list<WaterIndexProcessor::CoastRef>& coastlines,
43 const char* rawFile,
44 WaterIndexProcessor::CoastState leftState,
45 WaterIndexProcessor::CoastState rightState);
46
47 bool LoadCoastlines(const ImportParameter& parameter,
48 Progress& progress,
49 std::list<WaterIndexProcessor::CoastRef>& coastlines);
50
51 bool LoadBoundingPolygons(const ImportParameter& parameter,
52 Progress& progress,
53 std::list<WaterIndexProcessor::CoastRef>& boundingPolygons);
54
55 bool AssumeLand(const ImportParameter& parameter,
56 Progress& progress,
57 const TypeConfig& typeConfig,
58 const WaterIndexProcessor& processor,
59 WaterIndexProcessor::StateMap& stateMap);
60
61 public:
62 void GetDescription(const ImportParameter& parameter,
63 ImportModuleDescription& description) const override;
64
65 bool Import(const TypeConfigRef& typeConfig,
66 const ImportParameter& parameter,
67 Progress& progress) override;
68 };
69}
70
71#endif
#define OSMSCOUT_IMPORT_API
Definition ImportImportExport.h:45
Definition Area.h:88
void GetDescription(const ImportParameter &parameter, ImportModuleDescription &description) const override
bool Import(const TypeConfigRef &typeConfig, const ImportParameter &parameter, Progress &progress) override
Definition ImportModule.h:101
std::shared_ptr< TypeConfig > TypeConfigRef
Definition TypeConfig.h:1396
Definition Area.h:39