source: josm/trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java@ 6166

Last change on this file since 6166 was 6166, checked in by Don-vip, 11 years ago

see #8987 - refactor/add missing distance() methods to fix broken plugins

  • Property svn:eol-style set to native
File size: 3.9 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.data.coor;
3
4/**
5 * Northing, Easting of the projected coordinates.
6 *
7 * This class is immutable.
8 *
9 * @author Imi
10 */
11public class EastNorth extends Coordinate {
12
13 public EastNorth(double east, double north) {
14 super(east,north);
15 }
16
17 public double east() {
18 return x;
19 }
20
21 public double north() {
22 return y;
23 }
24
25 public EastNorth add(double dx, double dy) {
26 return new EastNorth(x+dx, y+dy);
27 }
28
29 public EastNorth add(EastNorth other) {
30 return new EastNorth(x+other.x, y+other.y);
31 }
32
33 public EastNorth scale(double s) {
34 return new EastNorth(s * x, s * y);
35 }
36
37 public EastNorth interpolate(EastNorth en2, double proportion) {
38 return new EastNorth(this.x + proportion * (en2.x - this.x),
39 this.y + proportion * (en2.y - this.y));
40 }
41
42 public EastNorth getCenter(EastNorth en2) {
43 return new EastNorth((this.x + en2.x)/2.0, (this.y + en2.y)/2.0);
44 }
45
46 /**
47 * Returns the euclidean distance from this {@code EastNorth} to a specified {@code EastNorth}.
48 *
49 * @param en the specified coordinate to be measured against this {@code EastNorth}
50 * @return the euclidean distance from this {@code EastNorth} to a specified {@code EastNorth}
51 * @since 6166
52 */
53 public double distance(final EastNorth en) {
54 return super.distance(en);
55 }
56
57 /**
58 * Returns the square of the euclidean distance from this {@code EastNorth} to a specified {@code EastNorth}.
59 *
60 * @param en the specified coordinate to be measured against this {@code EastNorth}
61 * @return the square of the euclidean distance from this {@code EastNorth} to a specified {@code EastNorth}
62 * @since 6166
63 */
64 public double distanceSq(final EastNorth en) {
65 return super.distanceSq(en);
66 }
67
68 /**
69 * Counts length (distance from [0,0]) of this.
70 *
71 * @return length of this
72 */
73 public double length(){
74 return Math.sqrt(x*x + y*y);
75 }
76
77 /**
78 * Returns the heading, in radians, that you have to use to get from
79 * this EastNorth to another. Heading is mapped into [0, 2pi)
80 *
81 * @param other the "destination" position
82 * @return heading
83 */
84 public double heading(EastNorth other) {
85 double hd = Math.atan2(other.east() - east(), other.north() - north());
86 if(hd < 0) hd = 2 * Math.PI + hd;
87 return hd;
88 }
89
90 /**
91 * Replies true if east and north are different from Double.NaN
92 *
93 * @return true if east and north are different from Double.NaN
94 */
95 public boolean isValid() {
96 return !java.lang.Double.isNaN(x) && !java.lang.Double.isNaN(y);
97 }
98
99 public EastNorth sub(EastNorth en) {
100 return new EastNorth(en.east() - east(), en.north() - north());
101 }
102
103 /**
104 * Returns an EastNorth representing the this EastNorth rotated around
105 * a given EastNorth by a given angle
106 * @param pivot the center of the rotation
107 * @param angle the angle of the rotation
108 * @return EastNorth rotated object
109 */
110 public EastNorth rotate(EastNorth pivot, double angle) {
111 double cosPhi = Math.cos(angle);
112 double sinPhi = Math.sin(angle);
113 double x = east() - pivot.east();
114 double y = north() - pivot.north();
115 double nx = cosPhi * x + sinPhi * y + pivot.east();
116 double ny = -sinPhi * x + cosPhi * y + pivot.north();
117 return new EastNorth(nx, ny);
118 }
119
120 @Override public String toString() {
121 return "EastNorth[e="+x+", n="+y+"]";
122 }
123
124 /**
125 * Compares two EastNorth values
126 *
127 * @return true if "x" and "y" values are within 1E-6 of each other
128 */
129 public boolean equalsEpsilon(EastNorth other, double e) {
130 return (Math.abs(x - other.x) < e && Math.abs(y - other.y) < e);
131 }
132}
Note: See TracBrowser for help on using the repository browser.