Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / operations / strategies / QueryByPointVisitor.java @ 6535

History | View | Annotate | Download (3.27 KB)

1 1100 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41 214 fernando
package com.iver.cit.gvsig.fmap.operations.strategies;
42
43 5317 fjp
import java.awt.geom.Point2D;
44
import java.awt.geom.Rectangle2D;
45
46 305 fjp
import com.iver.cit.gvsig.fmap.core.IGeometry;
47 683 fernando
import com.iver.cit.gvsig.fmap.layers.FBitSet;
48 229 vcaballero
import com.iver.cit.gvsig.fmap.layers.FLayer;
49 214 fernando
50 229 vcaballero
51
/**
52
 * Query by point Visitor.
53
 *
54
 * @author Vicente Caballero Navarro
55
 */
56
public class QueryByPointVisitor implements FeatureVisitor {
57 1034 vcaballero
        private Point2D point = null;
58
        private double tolerance;
59
        private FLayer layer = null;
60
        private FBitSet bitset = null;
61
        private Rectangle2D recPoint = null;
62 1295 fjp
        // private ICoordTrans ct = null;
63 990 fjp
64 1034 vcaballero
        /**
65
         * Devuelve un FBitSet con los ?ndices de los registros de la consulta.
66
         *
67
         * @return FBitSet con los ?ndices de la consulta.
68
         */
69
        public FBitSet getBitSet() {
70
                return bitset;
71
        }
72 214 fernando
73 1034 vcaballero
        /**
74
         * DOCUMENT ME!
75
         *
76
         * @param layer DOCUMENT ME!
77
         */
78
        public void setLayer(FLayer layer) {
79
                this.layer = layer;
80 1295 fjp
                // this.ct = layer.getCoordTrans();
81 1034 vcaballero
        }
82 214 fernando
83 1034 vcaballero
        /**
84
         * Inserta la tolerancia que se aplica en la selecci?n.
85
         *
86
         * @param t tolerancia.
87
         */
88
        public void setTolerance(double t) {
89
                tolerance = t;
90
        }
91 990 fjp
92 1034 vcaballero
        /**
93
         * Inserta el punto de consulta.
94
         *
95
         * @param p punto de consulta.
96
         */
97
        public void setQueriedPoint(Point2D p) {
98
                point = p;
99
        }
100 214 fernando
101 1034 vcaballero
        /**
102
         * @see com.iver.cit.gvsig.fmap.operations.strategies.FeatureVisitor#visit(com.iver.cit.gvsig.fmap.core.IGeometry,
103
         *                 int)
104
         */
105
        public void visit(IGeometry g, int index) {
106 1151 vcaballero
                if (g==null)return;
107 1295 fjp
                /* if (ct != null) {
108 1034 vcaballero
                        g.reProject(ct);
109 1295 fjp
                } */
110 1151 vcaballero
111 1034 vcaballero
                if (g.intersects(recPoint)) {
112
                        bitset.set(index, true);
113
                } else {
114
                        bitset.set(index, false);
115
                }
116
        }
117
118
        /**
119
         * @see com.iver.cit.gvsig.fmap.operations.strategies.FeatureVisitor#stop()
120
         */
121
        public void stop(FLayer layer) {
122
        }
123
124
        /**
125
         * @see com.iver.cit.gvsig.fmap.operations.strategies.FeatureVisitor#start()
126
         */
127
        public boolean start(FLayer layer) {
128
                bitset = new FBitSet();
129
                recPoint = new Rectangle2D.Double(point.getX() - (tolerance / 2),
130
                                point.getY() - (tolerance / 2), tolerance, tolerance);
131
132
                return true;
133
        }
134 4311 azabala
135
        public String getProcessDescription() {
136
                return "Selecting geometries that intersects a point";
137
        }
138 214 fernando
}