Statistics
| Revision:

gvsig-gazetteer / org.gvsig.gazetteer / trunk / org.gvsig.gazetteer / org.gvsig.gazetteer.lib / src / main / java / org / gvsig / gazetteer / wfsg / parsers / WfsgFeatureParser.java @ 103

History | View | Annotate | Download (5.24 KB)

1

    
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
package org.gvsig.gazetteer.wfsg.parsers;
43
import java.awt.geom.Point2D;
44

    
45
import org.gvsig.catalog.metadataxml.XMLNode;
46
import org.gvsig.catalog.metadataxml.XMLTree;
47
import org.gvsig.fmap.geom.GeometryLocator;
48
import org.gvsig.fmap.geom.GeometryManager;
49
import org.gvsig.fmap.geom.Geometry.SUBTYPES;
50
import org.gvsig.fmap.geom.exception.CreateGeometryException;
51
import org.gvsig.fmap.geom.primitive.Point;
52
import org.gvsig.gazetteer.idec.parsers.IdecFeatureParser;
53
import org.gvsig.gazetteer.querys.Feature;
54
import org.slf4j.Logger;
55
import org.slf4j.LoggerFactory;
56

    
57

    
58
/**
59
 * This class is used to parse the getFeature request
60
 *
61
 *
62
 * @author Jorge Piera Llodra (piera_jor@gva.es)
63
 */
64
public class WfsgFeatureParser {
65
    private static final Logger logger =
66
        LoggerFactory.getLogger(WfsgFeatureParser.class);
67
        private String geomType = null;
68
        private String namespace = null;
69
        private static final String POSITION_NODE = "position->gml:Point->gml:coordinates";
70
        private static final String GEOGRAPHICIDENTIFIER_NODE = "geographicIdentifier";
71
        private static final String FEATUREMEMBER = "gml:featureMember";
72

    
73
        /**
74
         * It parses the answer
75
         *
76
         *
77
         * @return Array of features
78
         * @param node XML tree that contains the getFeature Answer
79
         * @param featureType FEature selected in the thesaurus list
80
         * @param attribute Attribute to do the search
81
         */
82
        public Feature[] parse(XMLNode node) {
83
                XMLNode[] nodeFeatures = XMLTree.searchMultipleNode(node,FEATUREMEMBER);
84
                namespace = "";
85

    
86
                if ((nodeFeatures != null) && (nodeFeatures.length > 0)){
87
                        if (nodeFeatures[0].getSubnodes().length > 0){
88
                                String nodeName = nodeFeatures[0].getSubnodes()[0].getName();
89
                                if (nodeName.split(":").length == 2){
90
                                        namespace = nodeName.split(":")[0] + ":";
91
                                }
92
                                return parseWFS(nodeFeatures,nodeName);
93
                        }
94
                }
95
                return null;
96
        }
97

    
98
        /**
99
         * It parses the a WFS answer
100
         *
101
         *
102
         * @return Array of features
103
         * @param nodeFeatures XML tree that contains the Features
104
         * @param featureType FEature selected in the thesaurus list
105
         * @param attribute Attribute to do the search
106
         * @param geomField Field that contains the geometry
107
         */
108
        public Feature[] parseWFS(XMLNode[] nodeFeatures, String featureType) {
109
                Feature[] features = new Feature[nodeFeatures.length];
110

    
111

    
112
                for (int i=0 ; i<nodeFeatures.length ; i++){
113
                        XMLNode nodeName = XMLTree.searchNode(nodeFeatures[i],featureType + "->" + GEOGRAPHICIDENTIFIER_NODE);
114
                        String name = "";
115

    
116
                        if (nodeName != null){
117
                                if ((nodeName.getText() != null) && (!(nodeName.getText().equals("")))){
118
                                        name = nodeName.getText();
119
                                } else if ((nodeName.getCdata() != null) && (!(nodeName.getCdata().equals("")))){
120
                                        name = nodeName.getCdata();
121
                                }
122
                        }
123

    
124
                        String id = XMLTree.searchNodeAtribute(nodeFeatures[i],featureType,"fid");
125
                        String description = name;
126
                        Point point = getCoordinates(XMLTree.searchNodeValue(nodeFeatures[i],
127
                                        featureType + "->" + POSITION_NODE));
128

    
129
                        features[i] = new Feature(id,name,description,point);
130
                }
131
                return features;
132
        }
133

    
134
        /**
135
         * It returns a pair of coordinates of the Feature
136
         * @return
137
         * @param sCoordinates String that contains the coordinates
138
         */
139
        private Point getCoordinates(String sCoordinates) {
140
            GeometryManager geomManager = GeometryLocator.getGeometryManager();
141
                if (sCoordinates != null){
142
                        double x = Double.parseDouble(sCoordinates.split(",")[0]);
143
                        double y = Double.parseDouble(sCoordinates.split(",")[1]);
144
                        Point point =null;
145
                        try {
146
                point = geomManager.createPoint(x, y, SUBTYPES.GEOM2D);
147
            } catch (CreateGeometryException | NumberFormatException e) {
148
                StringBuilder builder = new StringBuilder();
149
                builder.append("Can't create point: (");
150
                builder.append(x);
151
                builder.append(",");
152
                builder.append(y);
153
                builder.append(")");
154
                logger.warn(builder.toString());
155
            }
156
                        return point;
157
                }return null;
158
        }
159

    
160

    
161

    
162
}