Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.projection / org.gvsig.projection.cresques / org.gvsig.projection.cresques.impl / src / main / java / org / cresques / impl / geo / UtmPoint.java @ 40559

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

    
26
import org.cresques.cts.ICoordTrans;
27
import org.cresques.cts.IProjection;
28

    
29
import java.awt.geom.Point2D;
30

    
31

    
32
public class UtmPoint extends ProjPoint {
33
    public UtmPoint() {
34
        proj = UtmZone.getProjection(Ellipsoid.hayford, 30, UtmZone.NORTH);
35
        setLocation(0.0, 0.0);
36
    }
37

    
38
    public UtmPoint(double x, double y) {
39
        proj = UtmZone.getProjection(Ellipsoid.hayford, 30, UtmZone.NORTH);
40
        setLocation(x, y);
41
    }
42

    
43
    public UtmPoint(Point2D pt) {
44
        proj = UtmZone.getProjection(Ellipsoid.hayford, 30, UtmZone.NORTH);
45
        setLocation(pt.getX(), pt.getY());
46
    }
47

    
48
    public UtmPoint(UtmZone zone) {
49
        setLocation(0.0, 0.0);
50
        proj = zone;
51
    }
52

    
53
    public UtmPoint(UtmZone zone, double x, double y) {
54
        setLocation(x, y);
55
        proj = zone;
56
    }
57

    
58
    public UtmPoint(UtmZone zone, Point2D pt) {
59
        setLocation(pt.getX(), pt.getY());
60
        proj = zone;
61
    }
62

    
63
    public IProjection getProjection() {
64
        return proj;
65
    }
66

    
67
    public void reProject(ICoordTrans rp) {
68
        // TODO metodo reProject pendiente de implementar
69
    }
70

    
71
    public double getX() {
72
        return X;
73
    }
74

    
75
    public double getY() {
76
        return Y;
77
    }
78

    
79
    public void setLocation(double x, double y) {
80
        X = x;
81
        Y = y;
82
    }
83

    
84
    public String toString() {
85
        return "(" + ((UtmZone) proj).Zone + ": " + getX() + "," + getY() +
86
               ")";
87
    }
88

    
89
    public Point2D toGeo() {
90
        return ((Projection) proj).toGeo(this);
91
    }
92
}