Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / view / toolListeners / AreaListener.java @ 38605

History | View | Annotate | Download (5.13 KB)

1 7771 caballero
/* 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 29596 jpiera
package org.gvsig.app.project.documents.view.toolListeners;
42 7771 caballero
43
import java.awt.geom.Point2D;
44
import java.text.NumberFormat;
45
46 29596 jpiera
import org.gvsig.andami.PluginServices;
47
import org.gvsig.andami.ui.mdiFrame.MainFrame;
48 20994 jmvivo
import org.gvsig.fmap.mapcontext.MapContext;
49
import org.gvsig.fmap.mapcontext.ViewPort;
50
import org.gvsig.fmap.mapcontrol.MapControl;
51
import org.gvsig.fmap.mapcontrol.tools.AreaListenerImpl;
52
import org.gvsig.fmap.mapcontrol.tools.Events.MeasureEvent;
53
54 7771 caballero
55
56
/**
57 20098 jmvivo
 * <p>Listener for calculating the area of a polygon, defined in the associated {@link MapControl MapControl}
58
 *  object.</p>
59
 * <p>Moves the extent of the associated {@link MapControl MapControl} object
60
 *  according the movement between the initial and final points of the line determined by the movement
61
 *  dragged with the third button of the mouse.</p>
62 20334 vcaballero
 *
63 20098 jmvivo
 * <p>Updates the status bar of the main frame of the application with the current area.</p>
64 7771 caballero
 *
65 20098 jmvivo
 * @see AreaListenerImpl
66 20334 vcaballero
 *
67 7771 caballero
 * @author Vicente Caballero Navarro
68
 */
69
public class AreaListener extends AreaListenerImpl {
70
        /**
71 20098 jmvivo
          * <p>Creates a new listener for calculating the area of a polygon and displaying it at the status bar
72
          *  of the main frame of the application.</p>
73
         *
74
         * @param mc the <code>MapControl</code> where is calculated the area
75
         */
76 7771 caballero
    public AreaListener(MapControl mc) {
77
            super(mc);
78
    }
79
80 20098 jmvivo
    /*
81
     * (non-Javadoc)
82
     * @see com.iver.cit.gvsig.fmap.tools.AreaListenerImpl#points(com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent)
83 7771 caballero
     */
84
    public void points(MeasureEvent event) {
85
        this.event = event;
86
87
        double dist = 0;
88
        double distAll = 0;
89
90
        ViewPort vp = mapCtrl.getMapContext().getViewPort();
91
        for (int i = 0; i < (event.getXs().length - 1); i++) {
92
            dist = 0;
93
94
            Point2D p = new Point2D.Double(event.getXs()[i].doubleValue(), event.getYs()[i].doubleValue());//vp.toMapPoint(new Point(event.getXs()[i].intValue(), event.getYs()[i].intValue()));
95
            Point2D p2 = new Point2D.Double(event.getXs()[i + 1].doubleValue(), event.getYs()[i + 1].doubleValue());//vp.toMapPoint(new Point(event.getXs()[i + 1].intValue(), event.getYs()[i + 1].intValue()));
96
            ///dist = vp.toMapDistance((int) p.distance(p2));
97
            dist = vp.distanceWorld(p,p2);
98 20334 vcaballero
//            System.out.println("distancia parcial = "+dist);
99 7771 caballero
            distAll += dist;
100
        }
101
102
       // System.out.println("Per?metro = " + distAll + " ?rea = " +
103
       //     (returnArea(vp.toMapPoint(
104
       //             new Point2D.Double(
105
       //                 event.getXs()[event.getXs().length - 2].doubleValue(),
106
       //                 event.getYs()[event.getYs().length - 2].doubleValue())))));
107
        NumberFormat nf = NumberFormat.getInstance();
108
        nf.setMaximumFractionDigits(2);
109
        MainFrame mF = PluginServices.getMainFrame();
110
        if (mF != null)
111
        {
112 9817 caballero
                int distanceUnits=mapCtrl.getViewPort().getDistanceUnits();
113 20334 vcaballero
                int distanceArea=mapCtrl.getViewPort().getDistanceArea();
114 7771 caballero
            mF.getStatusBar().setMessage("4",
115 20334 vcaballero
                                "P:" + nf.format(distAll/MapContext.getDistanceTrans2Meter()[distanceUnits]) + "");
116 7771 caballero
                        mF.getStatusBar().setMessage("5",
117
                                ///"A:" + nf.format(returnArea(vp.toMapPoint(
118
                    ///        new Point2D.Double(
119
                    ///                event.getXs()[event.getXs().length - 2].doubleValue(),
120
                    ///                event.getYs()[event.getYs().length - 2].doubleValue())))/FMap.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
121
                                        "A:" + nf.format(returnArea(
122
                                new Point2D.Double(
123
                                        event.getXs()[event.getXs().length - 2].doubleValue(),
124 20334 vcaballero
                                        event.getYs()[event.getYs().length - 2].doubleValue()))/Math.pow(MapContext.getAreaTrans2Meter()[distanceArea],2)) + "");
125 20345 vcaballero
                        mF.getStatusBar().setMessage("distancearea",MapContext.getAreaAbbr()[distanceArea]);
126 7771 caballero
        }
127
    }
128
}