Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / layers / vectorial / IntersectsGeometryEvaluator.java @ 40559

History | View | Annotate | Download (3.57 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.fmap.mapcontext.layers.vectorial;
25

    
26
import org.cresques.cts.ICoordTrans;
27
import org.cresques.cts.IProjection;
28
import org.gvsig.fmap.dal.exception.DataEvaluatorRuntimeException;
29
import org.gvsig.fmap.dal.feature.Feature;
30
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
31
import org.gvsig.fmap.dal.feature.FeatureType;
32
import org.gvsig.fmap.geom.Geometry;
33
import org.gvsig.fmap.geom.operation.GeometryOperationException;
34
import org.gvsig.fmap.geom.operation.GeometryOperationNotSupportedException;
35
import org.gvsig.tools.evaluator.AbstractEvaluator;
36
import org.gvsig.tools.evaluator.EvaluatorData;
37
import org.gvsig.tools.evaluator.EvaluatorException;
38

    
39
public class IntersectsGeometryEvaluator extends AbstractEvaluator {
40

    
41
        private String geomName;
42
        private Geometry geometry;
43
        private String geometryWKT = null;
44
        private Geometry geometryTrans;
45
        private String srs;
46
        private boolean isDefault;
47

    
48
        public IntersectsGeometryEvaluator(Geometry geometry,
49
                        IProjection projection, FeatureType featureType,
50
                        String geomName) {
51
                FeatureAttributeDescriptor fad = (FeatureAttributeDescriptor) featureType
52
                                .get(geomName);
53
                this.isDefault = featureType.getDefaultGeometryAttributeName().equals(
54
                                geomName);
55
                this.geometry = geometry;
56
                this.geometryTrans = geometry.cloneGeometry();
57
                this.srs = projection.getAbrev();
58
                ICoordTrans ct = null;
59
                
60
                IProjection ipro = fad.getSRS();
61
                if (ipro != null && !ipro.equals(projection)) {
62
                    ct = projection.getCT(ipro);
63
                }
64
                
65
                if (ct != null) {
66
                        geometryTrans.reProject(ct);
67
                }
68
                this.geomName = geomName;
69

    
70
                this.getFieldsInfo().addMatchFieldValue(geomName, geometryTrans);
71

    
72
        }
73

    
74
        public Object evaluate(EvaluatorData data) throws EvaluatorException {
75
                try {
76
                        Geometry geom = null;
77
                        if (isDefault) {
78
                                Feature feature = (Feature) data.getContextValue("feature");
79
                                geom =feature.getDefaultGeometry();
80

    
81
                        } else {
82
                                geom = (Geometry) data.getDataValue(geomName);
83
                        }
84
                        return new Boolean(geometryTrans.intersects(geom));
85

    
86
                } catch (Exception e) {
87
                        throw new EvaluatorException(e);
88
                }
89
        }
90

    
91
        public String getName() {
92
                return "intersects with geometry";
93
        }
94

    
95
        public String getSQL() {
96
                if (geometryWKT == null) {
97
                        try {
98
                                geometryWKT = geometry.convertToWKT();
99
                        } catch (GeometryOperationNotSupportedException e) {
100
                                throw new DataEvaluatorRuntimeException(e);
101
                        } catch (GeometryOperationException e) {
102
                                throw new DataEvaluatorRuntimeException(e);
103
                        }
104
                }
105
                return " ST_intersects(ST_GeomFromText('" + geometryWKT + "', " + "'"
106
                                + srs + "'" + "), " + geomName + ") ";
107
        }
108

    
109
}