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 / ProjPoint.java @ 40559

History | View | Annotate | Download (2.44 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
import org.cresques.geo.Projected;
29

    
30
import java.awt.geom.Point2D;
31

    
32

    
33
/**
34
 *
35
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>*
36
 */
37
public class ProjPoint extends Point2D implements Projected {
38
    IProjection proj = Mercator.getProjection(Ellipsoid.ed50);
39
    public double X;
40
    public double Y;
41

    
42
    public ProjPoint() {
43
        setLocation(0.0, 0.0);
44
    }
45

    
46
    public ProjPoint(Projection proj) {
47
        setLocation(0.0, 0.0);
48
        this.proj = proj;
49
    }
50

    
51
    public ProjPoint(double x, double y) {
52
        setLocation(x, y);
53
    }
54

    
55
    public ProjPoint(Projection proj, double x, double y) {
56
        setLocation(x, y);
57
        this.proj = proj;
58
    }
59

    
60
    public ProjPoint(Point2D pt) {
61
        setLocation(pt.getX(), pt.getY());
62
    }
63

    
64
    public ProjPoint(Projection proj, Point2D pt) {
65
        setLocation(pt.getX(), pt.getY());
66
        this.proj = proj;
67
    }
68

    
69
    public IProjection getProjection() {
70
        return proj;
71
    }
72

    
73
    public void reProject(ICoordTrans rp) {
74
        // TODO metodo reProject pendiente de implementar
75
    }
76

    
77
    public double getX() {
78
        return X;
79
    }
80

    
81
    public double getY() {
82
        return Y;
83
    }
84

    
85
    public void setLocation(double x, double y) {
86
        X = x;
87
        Y = y;
88
    }
89

    
90
    public String toString() {
91
        return "(" + proj + ": " + getX() + "," + getY() + ")";
92
    }
93

    
94
    public Point2D toGeo() {
95
        return ((Projection) proj).toGeo(this);
96
    }
97
}