Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / reader / bindings / geometries / LineStringTypeBinding.java @ 11573

History | View | Annotate | Download (4.13 KB)

1
package org.gvsig.gpe.kml.reader.bindings.geometries;
2

    
3
import java.io.IOException;
4

    
5
import org.gvsig.gpe.kml.GPEKmlParser;
6
import org.gvsig.gpe.kml.KmlTags;
7
import org.gvsig.gpe.kml.exceptions.KmlBodyParseException;
8
import org.kxml2.io.KXmlParser;
9
import org.xmlpull.v1.XmlPullParser;
10
import org.xmlpull.v1.XmlPullParserException;
11

    
12
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
13
 *
14
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
15
 *
16
 * This program is free software; you can redistribute it and/or
17
 * modify it under the terms of the GNU General Public License
18
 * as published by the Free Software Foundation; either version 2
19
 * of the License, or (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
29
 *
30
 * For more information, contact:
31
 *
32
 *  Generalitat Valenciana
33
 *   Conselleria d'Infraestructures i Transport
34
 *   Av. Blasco Ib??ez, 50
35
 *   46010 VALENCIA
36
 *   SPAIN
37
 *
38
 *      +34 963862235
39
 *   gvsig@gva.es
40
 *      www.gvsig.gva.es
41
 *
42
 *    or
43
 *
44
 *   IVER T.I. S.A
45
 *   Salamanca 50
46
 *   46005 Valencia
47
 *   Spain
48
 *
49
 *   +34 963163400
50
 *   dac@iver.es
51
 */
52
/* CVS MESSAGES:
53
 *
54
 * $Id: LineStringTypeBinding.java 11573 2007-05-11 07:06:29Z jorpiell $
55
 * $Log$
56
 * Revision 1.1  2007-05-11 07:06:29  jorpiell
57
 * Refactoring of some package names
58
 *
59
 * Revision 1.4  2007/05/08 08:22:37  jorpiell
60
 * Add comments to create javadocs
61
 *
62
 * Revision 1.3  2007/05/02 11:46:50  jorpiell
63
 * Writing tests updated
64
 *
65
 * Revision 1.2  2007/04/20 08:38:59  jorpiell
66
 * Tests updating
67
 *
68
 * Revision 1.1  2007/04/13 13:16:21  jorpiell
69
 * Add KML reading support
70
 *
71
 * Revision 1.1  2007/03/07 08:19:10  jorpiell
72
 * Pasadas las clases de KML de libGPE-GML a libGPE-KML
73
 *
74
 * Revision 1.1  2007/02/28 11:48:31  csanchez
75
 * *** empty log message ***
76
 *
77
 * Revision 1.1  2007/02/20 10:53:20  jorpiell
78
 * A?adidos los proyectos de kml y gml antiguos
79
 *
80
 * Revision 1.1  2007/02/12 13:49:18  jorpiell
81
 * A?adido el driver de KML
82
 *
83
 *
84
 */
85
/**
86
 * It parses the LineString tag. Example:
87
 * <p>
88
 * <pre>
89
 * <code>
90
 * &lt;LineString&gt;
91
 * &lt;coord&gt;&lt;X&gt;56.1&lt;/X&gt;&lt;Y&gt;0.45&lt;/Y&gt;&lt;/coord&gt;
92
 * &lt;coord&gt;&lt;X&gt;67.23&lt;/X&gt;&lt;Y&gt;0.98&lt;/Y&gt;&lt;/coord&gt;
93
 * &lt;/LineString&gt;
94
 * </code>
95
 * </pre>
96
 * </p> 
97
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
98
 * @see http://code.google.com/apis/kml/documentation/kml_tags_21.html#linestring
99
 */
100
public class LineStringTypeBinding {
101

    
102
        /**
103
         * It parses the LineString tag
104
         * @param parser
105
         * The XML parser
106
         * @param handler
107
         * The GPE parser that contains the content handler and
108
         * the error handler
109
         * @return
110
         * A line string
111
         * @throws IOException 
112
         * @throws XmlPullParserException 
113
         * @throws XmlPullParserException
114
         * @throws IOException
115
         */
116
        public static Object parse(XmlPullParser parser,GPEKmlParser handler) throws XmlPullParserException, IOException {
117
                boolean endFeature = false;
118
                int currentTag;
119
                Object lineString = null;
120

    
121
                String id = GeometryBinding.getID(parser, handler);
122

    
123
                String tag = parser.getName();
124
                currentTag = parser.getEventType();
125

    
126
                while (!endFeature){
127
                        switch(currentTag){
128
                        case KXmlParser.START_TAG:
129
                                if (tag.compareTo(KmlTags.COORDINATES) == 0){
130
                                        double[][] coordinates = CoordinatesTypeBinding.parse(parser, handler);
131
                                        lineString = handler.getContentHandler().startLineString(id,
132
                                                        coordinates[0],
133
                                                        coordinates[1],
134
                                                        coordinates[2],                                                                
135
                                                        KmlTags.DEFAULT_SRS);                                                
136
                                }
137
                                break;
138
                        case KXmlParser.END_TAG:
139
                                if (tag.compareTo(KmlTags.LINESTRING) == 0){                                                
140
                                        endFeature = true;
141
                                        handler.getContentHandler().endLineString(lineString);
142
                                }
143
                                break;
144
                        case KXmlParser.TEXT:                                        
145

    
146
                                break;
147
                        }
148
                        if (!endFeature){                                        
149
                                currentTag = parser.next();
150
                                tag = parser.getName();
151
                        }
152
                }                        
153
                return lineString;        
154
        }
155
}