1 : /******************************************************************************
2 : * $Id: kmlutility.h 16908 2009-05-02 14:53:26Z rouault $
3 : *
4 : * Project: KML Driver
5 : * Purpose: KML driver utilities
6 : * Author: Jens Oberender, j.obi@troja.net
7 : *
8 : ******************************************************************************
9 : * Copyright (c) 2007, Jens Oberender
10 : *
11 : * Permission is hereby granted, free of charge, to any person obtaining a
12 : * copy of this software and associated documentation files (the "Software"),
13 : * to deal in the Software without restriction, including without limitation
14 : * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 : * and/or sell copies of the Software, and to permit persons to whom the
16 : * Software is furnished to do so, subject to the following conditions:
17 : *
18 : * The above copyright notice and this permission notice shall be included
19 : * in all copies or substantial portions of the Software.
20 : *
21 : * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 : * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 : * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 : * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 : * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 : * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 : * DEALINGS IN THE SOFTWARE.
28 : ****************************************************************************/
29 : #ifndef OGR_KMLUTILITY_H_INCLUDED
30 : #define OGR_KMLUTILITY_H_INCLUDED
31 :
32 : #include <string>
33 : #include <vector>
34 : #include "ogr_geometry.h"
35 :
36 : enum Nodetype
37 : {
38 : Unknown, Empty, Mixed, Point, LineString, Polygon, Rest, MultiGeometry, MultiPoint, MultiLineString, MultiPolygon
39 : };
40 :
41 : struct Attribute
42 1636 : {
43 : std::string sName;
44 : std::string sValue;
45 : };
46 :
47 : struct Coordinate
48 : {
49 : double dfLongitude;
50 : double dfLatitude;
51 : double dfAltitude;
52 : int bHasZ;
53 :
54 4588 : Coordinate()
55 4588 : : dfLongitude(0), dfLatitude(0), dfAltitude(0), bHasZ(FALSE)
56 4588 : {}
57 : };
58 :
59 : struct Feature
60 : {
61 : Nodetype eType;
62 : std::string sName;
63 : std::string sDescription;
64 : OGRGeometry* poGeom;
65 :
66 534 : Feature()
67 534 : : eType(Unknown), poGeom(NULL)
68 534 : {}
69 :
70 534 : ~Feature()
71 : {
72 534 : delete poGeom;
73 534 : }
74 : };
75 :
76 :
77 : #endif /* OGR_KMLUTILITY_H_INCLUDED */
78 :
|