|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the Geotools library. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Antoine Corcy <[email protected]> |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace League\Geotools\Edge; |
|
13
|
|
|
|
|
14
|
|
|
use League\Geotools\AbstractGeotools; |
|
15
|
|
|
use League\Geotools\Coordinate\Coordinate; |
|
16
|
|
|
use League\Geotools\Coordinate\CoordinateInterface; |
|
17
|
|
|
use League\Geotools\Coordinate\Ellipsoid; |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
20
|
|
|
* Edge class |
|
21
|
|
|
* |
|
22
|
|
|
* @author Antoine Corcy <[email protected]> |
|
23
|
|
|
*/ |
|
24
|
|
|
class Edge extends AbstractGeotools implements EdgeInterface |
|
25
|
|
|
{ |
|
26
|
|
|
/** |
|
27
|
|
|
* @var integer |
|
28
|
|
|
*/ |
|
29
|
|
|
protected $gradient; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* @var integer |
|
33
|
|
|
*/ |
|
34
|
|
|
protected $ordinateIntercept; |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* @var integer |
|
38
|
|
|
*/ |
|
39
|
|
|
private $precision = 8; |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* {@inheritDoc} |
|
43
|
|
|
*/ |
|
44
|
54 |
|
public function setFrom(CoordinateInterface $from) |
|
45
|
|
|
{ |
|
46
|
54 |
|
$this->from = $from; |
|
47
|
|
|
|
|
48
|
54 |
|
if (empty($this->to) || ($this->to->getLatitude() - $this->from->getLatitude() === 0)) { |
|
49
|
54 |
|
return $this; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
$this->gradient = ($this->to->getLongitude() - $this->from->getLongitude()) / ($this->to->getLatitude() - $this->from->getLatitude()); |
|
|
|
|
|
|
53
|
|
|
$this->ordinateIntercept = $this->from->getLongitude() - $this->from->getLatitude() * $this->gradient; |
|
|
|
|
|
|
54
|
|
|
return $this; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* {@inheritDoc} |
|
59
|
|
|
*/ |
|
60
|
1 |
|
public function getFrom() |
|
61
|
|
|
{ |
|
62
|
1 |
|
return $this->from; |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
/** |
|
66
|
|
|
* {@inheritDoc} |
|
67
|
|
|
*/ |
|
68
|
45 |
|
public function setTo(CoordinateInterface $to) |
|
69
|
|
|
{ |
|
70
|
45 |
|
$this->to = $to; |
|
71
|
|
|
|
|
72
|
45 |
|
if (empty($this->from) || ($this->to->getLatitude() - $this->from->getLatitude() === 0)) { |
|
73
|
6 |
|
return $this; |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
39 |
|
$this->gradient = ($this->to->getLongitude() - $this->from->getLongitude()) / ($this->to->getLatitude() - $this->from->getLatitude()); |
|
|
|
|
|
|
77
|
39 |
|
$this->ordinateIntercept = $this->from->getLongitude() - $this->from->getLatitude() * $this->gradient; |
|
|
|
|
|
|
78
|
|
|
|
|
79
|
39 |
|
return $this; |
|
80
|
|
|
} |
|
81
|
|
|
|
|
82
|
|
|
/** |
|
83
|
|
|
* {@inheritDoc} |
|
84
|
|
|
*/ |
|
85
|
1 |
|
public function getTo() |
|
86
|
|
|
{ |
|
87
|
1 |
|
return $this->to; |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
/** |
|
91
|
|
|
* {@inheritDoc} |
|
92
|
|
|
*/ |
|
93
|
5 |
|
public function getGradient() |
|
94
|
|
|
{ |
|
95
|
5 |
|
return $this->gradient; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* {@inheritDoc} |
|
100
|
|
|
*/ |
|
101
|
2 |
|
public function getOrdinateIntercept() |
|
102
|
|
|
{ |
|
103
|
2 |
|
return $this->ordinateIntercept; |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* @return integer |
|
108
|
|
|
*/ |
|
109
|
5 |
|
public function getPrecision() |
|
110
|
|
|
{ |
|
111
|
5 |
|
return $this->precision; |
|
112
|
|
|
} |
|
113
|
|
|
|
|
114
|
|
|
/** |
|
115
|
|
|
* @param integer $precision |
|
116
|
|
|
* @return $this |
|
117
|
|
|
*/ |
|
118
|
|
|
public function setPrecision($precision) |
|
119
|
|
|
{ |
|
120
|
|
|
$this->precision = $precision; |
|
121
|
|
|
|
|
122
|
|
|
return $this; |
|
123
|
|
|
} |
|
124
|
|
|
|
|
125
|
|
|
/** |
|
126
|
|
|
* Returns the initial bearing from the origin coordinate |
|
127
|
|
|
* to the destination coordinate in degrees. |
|
128
|
|
|
* |
|
129
|
|
|
* @return float The initial bearing in degrees |
|
130
|
|
|
*/ |
|
131
|
14 |
|
public function initialBearing() |
|
132
|
|
|
{ |
|
133
|
14 |
|
Ellipsoid::checkCoordinatesEllipsoid($this->from, $this->to); |
|
134
|
|
|
|
|
135
|
14 |
|
$latA = deg2rad($this->from->getLatitude()); |
|
136
|
14 |
|
$latB = deg2rad($this->to->getLatitude()); |
|
137
|
14 |
|
$dLng = deg2rad($this->to->getLongitude() - $this->from->getLongitude()); |
|
138
|
|
|
|
|
139
|
14 |
|
$y = sin($dLng) * cos($latB); |
|
140
|
14 |
|
$x = cos($latA) * sin($latB) - sin($latA) * cos($latB) * cos($dLng); |
|
141
|
|
|
|
|
142
|
14 |
|
return (float) (rad2deg(atan2($y, $x)) + 360) % 360; |
|
143
|
|
|
} |
|
144
|
|
|
|
|
145
|
|
|
/** |
|
146
|
|
|
* Returns the final bearing from the origin coordinate |
|
147
|
|
|
* to the destination coordinate in degrees. |
|
148
|
|
|
* |
|
149
|
|
|
* @return float The final bearing in degrees |
|
150
|
|
|
*/ |
|
151
|
14 |
|
public function finalBearing() |
|
152
|
|
|
{ |
|
153
|
14 |
|
Ellipsoid::checkCoordinatesEllipsoid($this->from, $this->to); |
|
154
|
|
|
|
|
155
|
14 |
|
$latA = deg2rad($this->to->getLatitude()); |
|
156
|
14 |
|
$latB = deg2rad($this->from->getLatitude()); |
|
157
|
14 |
|
$dLng = deg2rad($this->from->getLongitude() - $this->to->getLongitude()); |
|
158
|
|
|
|
|
159
|
14 |
|
$y = sin($dLng) * cos($latB); |
|
160
|
14 |
|
$x = cos($latA) * sin($latB) - sin($latA) * cos($latB) * cos($dLng); |
|
161
|
|
|
|
|
162
|
14 |
|
return (float) ((rad2deg(atan2($y, $x)) + 360) % 360 + 180 ) % 360; |
|
163
|
|
|
} |
|
164
|
|
|
|
|
165
|
|
|
/** |
|
166
|
|
|
* Returns the initial cardinal point / direction from the origin coordinate to |
|
167
|
|
|
* the destination coordinate. |
|
168
|
|
|
* @see http://en.wikipedia.org/wiki/Cardinal_direction |
|
169
|
|
|
* |
|
170
|
|
|
* @return string The initial cardinal point / direction |
|
171
|
|
|
*/ |
|
172
|
7 |
|
public function initialCardinal() |
|
173
|
|
|
{ |
|
174
|
7 |
|
Ellipsoid::checkCoordinatesEllipsoid($this->from, $this->to); |
|
175
|
|
|
|
|
176
|
7 |
|
return $this->cardinalPoints[(integer) round($this->initialBearing() / 22.5)]; |
|
177
|
|
|
} |
|
178
|
|
|
|
|
179
|
|
|
/** |
|
180
|
|
|
* Returns the final cardinal point / direction from the origin coordinate to |
|
181
|
|
|
* the destination coordinate. |
|
182
|
|
|
* @see http://en.wikipedia.org/wiki/Cardinal_direction |
|
183
|
|
|
* |
|
184
|
|
|
* @return string The final cardinal point / direction |
|
185
|
|
|
*/ |
|
186
|
7 |
|
public function finalCardinal() |
|
187
|
|
|
{ |
|
188
|
7 |
|
Ellipsoid::checkCoordinatesEllipsoid($this->from, $this->to); |
|
189
|
|
|
|
|
190
|
7 |
|
return $this->cardinalPoints[(integer) round($this->finalBearing() / 22.5)]; |
|
191
|
|
|
} |
|
192
|
|
|
|
|
193
|
|
|
/** |
|
194
|
|
|
* Returns the half-way point / coordinate along a great circle |
|
195
|
|
|
* path between the origin and the destination coordinates. |
|
196
|
|
|
* |
|
197
|
|
|
* @return CoordinateInterface |
|
198
|
|
|
*/ |
|
199
|
7 |
|
public function middle() |
|
200
|
|
|
{ |
|
201
|
7 |
|
Ellipsoid::checkCoordinatesEllipsoid($this->from, $this->to); |
|
202
|
|
|
|
|
203
|
7 |
|
$latA = deg2rad($this->from->getLatitude()); |
|
204
|
7 |
|
$lngA = deg2rad($this->from->getLongitude()); |
|
205
|
7 |
|
$latB = deg2rad($this->to->getLatitude()); |
|
206
|
7 |
|
$lngB = deg2rad($this->to->getLongitude()); |
|
207
|
|
|
|
|
208
|
7 |
|
$bx = cos($latB) * cos($lngB - $lngA); |
|
209
|
7 |
|
$by = cos($latB) * sin($lngB - $lngA); |
|
210
|
|
|
|
|
211
|
7 |
|
$lat3 = rad2deg(atan2(sin($latA) + sin($latB), sqrt((cos($latA) + $bx) * (cos($latA) + $bx) + $by * $by))); |
|
212
|
7 |
|
$lng3 = rad2deg($lngA + atan2($by, cos($latA) + $bx)); |
|
213
|
|
|
|
|
214
|
7 |
|
return new Coordinate([$lat3, $lng3], $this->from->getEllipsoid()); |
|
215
|
|
|
} |
|
216
|
|
|
|
|
217
|
|
|
/** |
|
218
|
|
|
* Returns the destination point with a given bearing in degrees travelling along a |
|
219
|
|
|
* (shortest distance) great circle arc and a distance in meters. |
|
220
|
|
|
* |
|
221
|
|
|
* @param integer $bearing The bearing of the origin in degrees. |
|
222
|
|
|
* @param integer $distance The distance from the origin in meters. |
|
223
|
|
|
* |
|
224
|
|
|
* @return CoordinateInterface |
|
225
|
|
|
*/ |
|
226
|
9 |
|
public function destination($bearing, $distance) |
|
227
|
|
|
{ |
|
228
|
9 |
|
$lat = deg2rad($this->from->getLatitude()); |
|
229
|
9 |
|
$lng = deg2rad($this->from->getLongitude()); |
|
230
|
|
|
|
|
231
|
9 |
|
$bearing = deg2rad($bearing); |
|
232
|
|
|
|
|
233
|
9 |
|
$endLat = asin(sin($lat) * cos($distance / $this->from->getEllipsoid()->getA()) + cos($lat) * |
|
234
|
9 |
|
sin($distance / $this->from->getEllipsoid()->getA()) * cos($bearing)); |
|
235
|
9 |
|
$endLon = $lng + atan2(sin($bearing) * sin($distance / $this->from->getEllipsoid()->getA()) * cos($lat), |
|
236
|
9 |
|
cos($distance / $this->from->getEllipsoid()->getA()) - sin($lat) * sin($endLat)); |
|
237
|
|
|
|
|
238
|
9 |
|
return new Coordinate([rad2deg($endLat), rad2deg($endLon)], $this->from->getEllipsoid()); |
|
239
|
|
|
} |
|
240
|
|
|
|
|
241
|
|
|
/** |
|
242
|
|
|
* Returns true if the edge passed on argument is on the same line as this object |
|
243
|
|
|
* |
|
244
|
|
|
* @param Edge $edge The edge to compare |
|
245
|
|
|
* |
|
246
|
|
|
*@return boolean |
|
247
|
|
|
*/ |
|
248
|
5 |
|
public function isOnSameLine(Edge $edge) { |
|
249
|
5 |
|
if (is_null($this->getGradient()) && is_null($edge->getGradient()) && $this->from->getLongitude() == $edge->getFrom()->getLongitude()) { |
|
250
|
|
|
return true; |
|
251
|
5 |
|
} elseif (!is_null($this->getGradient()) && !is_null($edge->getGradient())) { |
|
252
|
|
|
return ( |
|
253
|
5 |
|
bccomp($this->getGradient(), $edge->getGradient(), $this->getPrecision()) === 0 |
|
254
|
|
|
&& |
|
255
|
5 |
|
bccomp($this->getOrdinateIntercept(), $edge->getOrdinateIntercept(), $this->getPrecision()) ===0 |
|
256
|
|
|
); |
|
257
|
|
|
} else { |
|
258
|
|
|
return false; |
|
259
|
|
|
} |
|
260
|
|
|
} |
|
261
|
|
|
|
|
262
|
|
|
/** |
|
263
|
|
|
* Returns the other coordinate who is not the coordinate passed on argument |
|
264
|
|
|
* @param Coordinate $point |
|
|
|
|
|
|
265
|
|
|
* @return null|Coordinate |
|
266
|
|
|
*/ |
|
267
|
3 |
|
public function getOtherCoordinate(CoordinateInterface $coordinate) { |
|
268
|
3 |
|
if ($coordinate->isEqual($this->from)) { |
|
269
|
1 |
|
return $this->to; |
|
270
|
2 |
|
} else if ($coordinate->isEqual($this->to)) { |
|
271
|
1 |
|
return $this->from; |
|
272
|
|
|
} |
|
273
|
1 |
|
return null; |
|
274
|
|
|
} |
|
275
|
|
|
|
|
276
|
|
|
} |
|
277
|
|
|
|
This check looks for assignments to scalar types that may be of the wrong type.
To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.