Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGeoProcessing / src / com / iver / cit / gvsig / geoprocess / impl / spatialjoin / fmap / NearestFeatureVisitor.java @ 10626

History | View | Annotate | Download (3.66 KB)

1
/*
2
 * Created on 01-mar-2006
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
*
46
* $Id: NearestFeatureVisitor.java 10626 2007-03-06 16:55:54Z caballero $
47
* $Log$
48
* Revision 1.2  2007-03-06 16:47:58  caballero
49
* Exceptions
50
*
51
* Revision 1.1  2006/06/20 18:20:45  azabala
52
* first version in cvs
53
*
54
* Revision 1.2  2006/06/02 18:21:28  azabala
55
* *** empty log message ***
56
*
57
* Revision 1.1  2006/05/24 21:09:47  azabala
58
* primera version en cvs despues de refactoring orientado a crear un framework extensible de geoprocessing
59
*
60
* Revision 1.2  2006/03/07 21:01:33  azabala
61
* *** empty log message ***
62
*
63
* Revision 1.1  2006/03/06 19:48:39  azabala
64
* *** empty log message ***
65
*
66
* Revision 1.1  2006/03/05 19:59:47  azabala
67
* *** empty log message ***
68
*
69
*
70
*/
71
package com.iver.cit.gvsig.geoprocess.impl.spatialjoin.fmap;
72

    
73

    
74
import com.iver.cit.gvsig.exceptions.visitors.ProcessVisitorException;
75
import com.iver.cit.gvsig.exceptions.visitors.StartVisitorException;
76
import com.iver.cit.gvsig.exceptions.visitors.VisitorException;
77
import com.iver.cit.gvsig.fmap.core.IGeometry;
78
import com.iver.cit.gvsig.fmap.layers.FLayer;
79
import com.iver.cit.gvsig.fmap.layers.layerOperations.VectorialData;
80
import com.iver.cit.gvsig.fmap.operations.strategies.FeatureVisitor;
81
import com.vividsolutions.jts.geom.Geometry;
82
/**
83
 * This Visitor looks for the nearest feature of a FLayer B
84
 *  to a specified feature of a FLayer A.
85
 * @author azabala
86
 *
87
 */
88
public class NearestFeatureVisitor implements FeatureVisitor {
89
        
90
        private Geometry queryGeometry;
91
        private int solutionIndex = -1;
92
        private double shortestDist = Double.MAX_VALUE;
93
        
94
        public NearestFeatureVisitor(Geometry geometry){
95
                this.queryGeometry = geometry;
96
        }
97
        
98
        public NearestFeatureVisitor(){        
99
        }
100
        
101
        public void visit(IGeometry g, int index) throws VisitorException, ProcessVisitorException {
102
                if(g == null)
103
                        return;
104
                double dist = queryGeometry.distance(g.toJTSGeometry());
105
                if(dist < shortestDist){
106
                        shortestDist = dist;
107
                        solutionIndex = index;
108
                }//if
109
        }
110
        
111
        public int getNearestFeatureIndex(){
112
                return solutionIndex;
113
        }
114
        
115
        public double getShortestDist(){
116
                return shortestDist;
117
        }
118
        
119
        public boolean hasFoundShortest(){
120
                return solutionIndex != -1;
121
        }
122
        
123
        public void stop(FLayer layer) throws VisitorException {
124
        }
125

    
126
        public boolean start(FLayer layer) throws StartVisitorException {
127
                if (layer instanceof VectorialData) {
128
                        return true;
129
                }
130
                return false;
131
        }
132
        
133
        public String getProcessDescription() {
134
                return "Looking nearest geometry for a spatial join";
135
        }
136

    
137

    
138
        public void setQueryGeometry(Geometry queryGeometry) {
139
                this.queryGeometry = queryGeometry;
140
        }
141

    
142
}
143