Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / view / toolListeners / AreaListener.java @ 20100

History | View | Annotate | Download (4.94 KB)

1
/* 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
package com.iver.cit.gvsig.project.documents.view.toolListeners;
42

    
43
import java.awt.geom.Point2D;
44
import java.text.NumberFormat;
45

    
46
import com.iver.andami.PluginServices;
47
import com.iver.andami.ui.mdiFrame.MainFrame;
48
import com.iver.cit.gvsig.fmap.MapContext;
49
import com.iver.cit.gvsig.fmap.MapControl;
50
import com.iver.cit.gvsig.fmap.ViewPort;
51
import com.iver.cit.gvsig.fmap.tools.AreaListenerImpl;
52
import com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent;
53

    
54

    
55
/**
56
 * <p>Listener for calculating the area of a polygon, defined in the associated {@link MapControl MapControl}
57
 *  object.</p>
58
 * <p>Moves the extent of the associated {@link MapControl MapControl} object
59
 *  according the movement between the initial and final points of the line determined by the movement
60
 *  dragged with the third button of the mouse.</p>
61
 * 
62
 * <p>Updates the status bar of the main frame of the application with the current area.</p>
63
 *
64
 * @see AreaListenerImpl
65
 * 
66
 * @author Vicente Caballero Navarro
67
 */
68
public class AreaListener extends AreaListenerImpl {
69
        /**
70
          * <p>Creates a new listener for calculating the area of a polygon and displaying it at the status bar
71
          *  of the main frame of the application.</p>
72
         *
73
         * @param mc the <code>MapControl</code> where is calculated the area
74
         */
75
    public AreaListener(MapControl mc) {
76
            super(mc);
77
    }
78

    
79
    /*
80
     * (non-Javadoc)
81
     * @see com.iver.cit.gvsig.fmap.tools.AreaListenerImpl#points(com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent)
82
     */
83
    public void points(MeasureEvent event) {
84
        this.event = event;
85

    
86
        double dist = 0;
87
        double distAll = 0;
88

    
89
        ViewPort vp = mapCtrl.getMapContext().getViewPort();
90
        for (int i = 0; i < (event.getXs().length - 1); i++) {
91
            dist = 0;
92

    
93
            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()));
94
            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()));
95
            ///dist = vp.toMapDistance((int) p.distance(p2));
96
            dist = vp.distanceWorld(p,p2);
97
            System.out.println("distancia parcial = "+dist);
98
            distAll += dist;
99
        }
100

    
101
       // System.out.println("Per?metro = " + distAll + " ?rea = " +
102
       //     (returnArea(vp.toMapPoint(
103
       //             new Point2D.Double(
104
       //                 event.getXs()[event.getXs().length - 2].doubleValue(),
105
       //                 event.getYs()[event.getYs().length - 2].doubleValue())))));
106
        NumberFormat nf = NumberFormat.getInstance();
107
        nf.setMaximumFractionDigits(2);
108
        MainFrame mF = PluginServices.getMainFrame();
109
        if (mF != null)
110
        {
111
                int distanceUnits=mapCtrl.getViewPort().getDistanceUnits();
112
            mF.getStatusBar().setMessage("4",
113
                                "P:" + nf.format(distAll/MapContext.CHANGEM[distanceUnits]) + "");
114
                        mF.getStatusBar().setMessage("5",
115
                                ///"A:" + nf.format(returnArea(vp.toMapPoint(
116
                    ///        new Point2D.Double(
117
                    ///                event.getXs()[event.getXs().length - 2].doubleValue(),
118
                    ///                event.getYs()[event.getYs().length - 2].doubleValue())))/FMap.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
119
                                        "A:" + nf.format(returnArea(
120
                                new Point2D.Double(
121
                                        event.getXs()[event.getXs().length - 2].doubleValue(),
122
                                        event.getYs()[event.getYs().length - 2].doubleValue()))/Math.pow(MapContext.CHANGEM[distanceUnits],2)) + "");
123
        }
124
    }
125

    
126

    
127
}