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 / ContainsEnvelopeEvaluator.java @ 43739

History | View | Annotate | Download (4.47 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 modify it under
7
 * the terms of the GNU General Public License as published by the Free Software
8
 * Foundation; either version 3 of the License, or (at your option) any later
9
 * version.
10
 *
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14
 * details.
15
 *
16
 * You should have received a copy of the GNU General Public License along with
17
 * this program; if not, write to the Free Software Foundation, Inc., 51
18
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.mapcontext.layers.vectorial;
24

    
25
import org.cresques.cts.IProjection;
26
import org.gvsig.fmap.dal.ExpressionBuilder;
27

    
28
import org.gvsig.fmap.dal.feature.Feature;
29
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
30
import org.gvsig.fmap.dal.feature.FeatureType;
31
import org.gvsig.fmap.geom.Geometry;
32
import org.gvsig.fmap.geom.primitive.Envelope;
33
import org.gvsig.tools.evaluator.AbstractEvaluator;
34
import org.gvsig.tools.evaluator.EvaluatorData;
35
import org.gvsig.tools.evaluator.EvaluatorException;
36

    
37
public class ContainsEnvelopeEvaluator extends AbstractEvaluator {
38

    
39
    private final Envelope envelope;
40
    private final String geomName;
41
    private final Envelope envelopeTrans;
42
    private final boolean isDefault;
43
    private final ExpressionBuilder builder;
44
    private final IProjection projection;
45
    private final FeatureAttributeDescriptor fad;
46
    
47
    /**
48
     * @deprecated  use @{link org.gvsig.fmap.mapcontext.layers.vectorial.SpatialEvaluatorsFactory}
49
     * @param envelope
50
     * @param envelopeProjection
51
     * @param featureType
52
     * @param geomName
53
     */
54
    public ContainsEnvelopeEvaluator(
55
            Envelope envelope,
56
            IProjection envelopeProjection,
57
            FeatureType featureType,
58
            String geomName
59
        ) {
60
        this(
61
                envelope, 
62
                envelopeProjection, 
63
                featureType, 
64
                geomName, 
65
                SpatialEvaluatorsFactory.getInstance().createBuilder()
66
        );
67
    }
68
    
69
    ContainsEnvelopeEvaluator(
70
            Envelope envelope,
71
            IProjection envelopeProjection,
72
            FeatureType featureType,
73
            String geomName,
74
            ExpressionBuilder builder
75
        ) {
76
        fad = (FeatureAttributeDescriptor) featureType.get(geomName);
77
        this.isDefault = featureType.getDefaultGeometryAttributeName().equals(geomName);
78
        this.projection = envelopeProjection;
79
        this.builder = builder;
80
        this.envelope = envelope;
81
        // this.srs = envelopeProjection.getAbrev();
82
        // this.projection=CRSFactory.getCRS(fad.getSRS());
83
        // this.envelopeProjection=envelopeProjection;
84
//                ICoordTrans ct = null;
85
//                if (!this.srs.equals(fad.getSRS())) { // FIXME comparaci�n
86
//                        ct = envelopeProjection.getCT(fad.getSRS());
87
//                }
88
//                if (ct != null) {
89
//                        this.envelopeTrans = envelope.convert(ct);
90
//                } else {
91
        this.envelopeTrans = envelope;
92
//                }
93
        this.geomName = geomName;
94
        this.getFieldsInfo().addMatchFieldValue(geomName, envelopeTrans);
95

    
96
    }
97

    
98
    @Override
99
    public Object evaluate(EvaluatorData data) throws EvaluatorException {
100
        Envelope featureEnvelope;
101
        if (isDefault) {
102
            featureEnvelope = ((Feature) data.getContextValue("feature"))
103
                    .getDefaultEnvelope();
104

    
105
        } else {
106
            Geometry geom = (Geometry) data.getDataValue(geomName);
107
            if (geom == null) {
108
                return false;
109
            }
110
            featureEnvelope = geom.getEnvelope();
111
        }
112
        return envelopeTrans.contains(featureEnvelope);
113
    }
114

    
115
    @Override
116
    public String getName() {
117
        return "contains in envelope";
118
    }
119

    
120
    @Override
121
    public String getSQL() {
122
        return this.builder.set(
123
                builder.ST_Contains(
124
                        builder.envelope(envelope, projection),
125
                        builder.column(fad)
126
                )
127
        ).toString();
128
    }
129

    
130
}