Total Complexity | 91 |
Total Lines | 559 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
Complex classes like LineString often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use LineString, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
13 | class LineString extends Curve |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @return string "LineString" |
||
18 | */ |
||
19 | public function geometryType(): string |
||
20 | { |
||
21 | return Geometry::LINESTRING; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param array<array> $array |
||
26 | * @return LineString |
||
27 | */ |
||
28 | public static function fromArray(array $array): LineString |
||
29 | { |
||
30 | $points = []; |
||
31 | foreach ($array as $point) { |
||
32 | $points[] = Point::fromArray($point); |
||
33 | } |
||
34 | return new LineString($points); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Returns the number of points of the LineString |
||
39 | * |
||
40 | * @return int |
||
41 | */ |
||
42 | public function numPoints(): int |
||
43 | { |
||
44 | return count($this->components); |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * Returns the 1-based Nth point of the LineString. |
||
49 | * Negative values are counted backwards from the end of the LineString. |
||
50 | * |
||
51 | * @param int $n Nth point of the LineString |
||
52 | * @return Point|null |
||
53 | */ |
||
54 | public function pointN(int $n) |
||
64 | } |
||
65 | |||
66 | /** |
||
67 | * @return Point |
||
68 | */ |
||
69 | public function getCentroid(): Point |
||
70 | { |
||
71 | if ($this->isEmpty()) { |
||
72 | return new Point(); |
||
73 | } |
||
74 | |||
75 | $geosObj = $this->getGeos(); |
||
76 | if (is_object($geosObj)) { |
||
77 | // @codeCoverageIgnoreStart |
||
78 | /** @noinspection PhpUndefinedMethodInspection */ |
||
79 | /** @var Point|null $geometry */ |
||
80 | $geometry = geoPHP::geosToGeometry($geosObj->centroid()); |
||
81 | return $geometry !== null ? $geometry : new Point(); |
||
82 | // @codeCoverageIgnoreEnd |
||
83 | } |
||
84 | |||
85 | $x = 0; |
||
86 | $y = 0; |
||
87 | $length = 0.0; |
||
88 | $points = $this->getPoints(); |
||
89 | $numPoints = count($points)-1; |
||
90 | for ($i=0; $i<$numPoints; ++$i) { |
||
91 | $currX = $points[$i]->getX(); |
||
92 | $currY = $points[$i]->getY(); |
||
93 | $nextX = $points[$i+1]->getX(); |
||
94 | $nextY = $points[$i+1]->getY(); |
||
95 | |||
96 | $dx = $nextX - $currX; |
||
97 | $dy = $nextY - $currY; |
||
98 | $segmentLength = sqrt($dx*$dx + $dy*$dy); |
||
99 | $length += $segmentLength; |
||
100 | $x += ($currX + $nextX) / 2 * $segmentLength; |
||
101 | $y += ($currY + $nextY) / 2 * $segmentLength; |
||
102 | } |
||
103 | |||
104 | return $length === 0.0 ? $this->startPoint() : new Point($x / $length, $y / $length); |
||
|
|||
105 | } |
||
106 | |||
107 | /** |
||
108 | * Returns the length of this Curve in its associated spatial reference. |
||
109 | * E.g. if Geometry is in geographical coordinate system it returns the length in degrees. |
||
110 | * |
||
111 | * @return float |
||
112 | */ |
||
113 | public function getLength(): float |
||
114 | { |
||
115 | $geosObj = $this->getGeos(); |
||
116 | if (is_object($geosObj)) { |
||
117 | // @codeCoverageIgnoreStart |
||
118 | /** @noinspection PhpUndefinedMethodInspection */ |
||
119 | return $geosObj->length(); |
||
120 | // @codeCoverageIgnoreEnd |
||
121 | } |
||
122 | |||
123 | $length = 0.0; |
||
124 | $points = $this->getPoints(); |
||
125 | $numPoints = count($points)-1; |
||
126 | for ($i=0; $i<$numPoints; ++$i) { |
||
127 | $length += sqrt( |
||
128 | pow(($points[$i]->getX() - $points[$i+1]->getX()), 2) + |
||
129 | pow(($points[$i]->getY() - $points[$i+1]->getY()), 2) |
||
130 | ); |
||
131 | } |
||
132 | |||
133 | return $length; |
||
134 | } |
||
135 | |||
136 | /** |
||
137 | * Returns the length of a 3-dimensional geometry. |
||
138 | * |
||
139 | * @return float |
||
140 | */ |
||
141 | public function length3D(): float |
||
142 | { |
||
143 | $length = 0.0; |
||
144 | |||
145 | $previousPoint = null; |
||
146 | foreach ($this->getPoints() as $point) { |
||
147 | if ($previousPoint) { |
||
148 | $length += sqrt( |
||
149 | pow(($previousPoint->getX() - $point->getX()), 2) + |
||
150 | pow(($previousPoint->getY() - $point->getY()), 2) + |
||
151 | pow(($previousPoint->getZ() - $point->getZ()), 2) |
||
152 | ); |
||
153 | } |
||
154 | /** @var Point $previousPoint */ |
||
155 | $previousPoint = $point; |
||
156 | } |
||
157 | return $length; |
||
158 | } |
||
159 | |||
160 | /** |
||
161 | * @param float|int $radius Default is the semi-major axis of WGS84. |
||
162 | * @return float length in meters |
||
163 | */ |
||
164 | public function greatCircleLength($radius = geoPHP::EARTH_WGS84_SEMI_MAJOR_AXIS): float |
||
165 | { |
||
166 | $length = 0.0; |
||
167 | $rad = M_PI / 180; |
||
168 | $points = $this->getPoints(); |
||
169 | $numPoints = $this->numPoints() - 1; |
||
170 | for ($i = 0; $i < $numPoints; ++$i) { |
||
171 | // Simplified Vincenty formula with equal major and minor axes (a sphere) |
||
172 | $lat1 = $points[$i]->getY() * $rad; |
||
173 | $lat2 = $points[$i + 1]->getY() * $rad; |
||
174 | $lon1 = $points[$i]->getX() * $rad; |
||
175 | $lon2 = $points[$i + 1]->getX() * $rad; |
||
176 | $deltaLon = $lon2 - $lon1; |
||
177 | $d = $radius * |
||
178 | atan2( |
||
179 | sqrt( |
||
180 | pow(cos($lat2) * sin($deltaLon), 2) + |
||
181 | pow(cos($lat1) * sin($lat2) - sin($lat1) * cos($lat2) * cos($deltaLon), 2) |
||
182 | ), |
||
183 | sin($lat1) * sin($lat2) + |
||
184 | cos($lat1) * cos($lat2) * cos($deltaLon) |
||
185 | ); |
||
186 | if ($points[$i]->is3D()) { |
||
187 | $d = sqrt( |
||
188 | pow($d, 2) + |
||
189 | pow($points[$i + 1]->getZ() - $points[$i]->getZ(), 2) |
||
190 | ); |
||
191 | } |
||
192 | |||
193 | $length += $d; |
||
194 | } |
||
195 | |||
196 | return $length; |
||
197 | } |
||
198 | |||
199 | /** |
||
200 | * @return float Haversine length of geometry in degrees |
||
201 | */ |
||
202 | public function haversineLength(): float |
||
222 | } |
||
223 | |||
224 | /** |
||
225 | * @source https://github.com/mjaschen/phpgeo/blob/master/src/Location/Distance/Vincenty.php |
||
226 | * @author Marcus Jaschen <[email protected]> |
||
227 | * @license https://opensource.org/licenses/GPL-3.0 GPL |
||
228 | * (note: geoPHP uses "GPL version 2 (or later)" license which is compatible with GPLv3) |
||
229 | * |
||
230 | * @return float Length in meters |
||
231 | */ |
||
232 | public function vincentyLength(): float |
||
233 | { |
||
234 | $length = 0.0; |
||
235 | $rad = M_PI / 180; |
||
236 | $points = $this->getPoints(); |
||
237 | $numPoints = count($points) - 1; |
||
238 | for ($i = 0; $i < $numPoints; ++$i) { |
||
239 | // Inverse Vincenty formula |
||
240 | $lat1 = $points[$i]->getY() * $rad; |
||
241 | $lat2 = $points[$i + 1]->getY() * $rad; |
||
242 | $lng1 = $points[$i]->getX() * $rad; |
||
243 | $lng2 = $points[$i + 1]->getX() * $rad; |
||
244 | |||
245 | $a = geoPHP::EARTH_WGS84_SEMI_MAJOR_AXIS; |
||
246 | $b = geoPHP::EARTH_WGS84_SEMI_MINOR_AXIS; |
||
247 | $f = 1 / geoPHP::EARTH_WGS84_FLATTENING; |
||
248 | $L = $lng2 - $lng1; |
||
249 | $U1 = atan((1 - $f) * tan($lat1)); |
||
250 | $U2 = atan((1 - $f) * tan($lat2)); |
||
251 | $iterationLimit = 100; |
||
252 | $lambda = $L; |
||
253 | $sinU1 = sin($U1); |
||
254 | $sinU2 = sin($U2); |
||
255 | $cosU1 = cos($U1); |
||
256 | $cosU2 = cos($U2); |
||
257 | do { |
||
258 | $sinLambda = sin($lambda); |
||
259 | $cosLambda = cos($lambda); |
||
260 | $sinSigma = sqrt( |
||
261 | ($cosU2 * $sinLambda) * |
||
262 | ($cosU2 * $sinLambda) + |
||
263 | ($cosU1 * $sinU2 - $sinU1 * $cosU2 * $cosLambda) * |
||
264 | ($cosU1 * $sinU2 - $sinU1 * $cosU2 * $cosLambda) |
||
265 | ); |
||
266 | if ($sinSigma == 0) { |
||
267 | return 0.0; |
||
268 | } |
||
269 | $cosSigma = $sinU1 * $sinU2 + $cosU1 * $cosU2 * $cosLambda; |
||
270 | $sigma = atan2($sinSigma, $cosSigma); |
||
271 | $sinAlpha = $cosU1 * $cosU2 * $sinLambda / $sinSigma; |
||
272 | $cosSqAlpha = 1 - $sinAlpha * $sinAlpha; |
||
273 | $cos2SigmaM = 0; |
||
274 | if ($cosSqAlpha <> 0) { |
||
275 | $cos2SigmaM = $cosSigma - 2 * $sinU1 * $sinU2 / $cosSqAlpha; |
||
276 | } |
||
277 | $C = $f / 16 * $cosSqAlpha * (4 + $f * (4 - 3 * $cosSqAlpha)); |
||
278 | $lambdaP = $lambda; |
||
279 | $lambda = $L + (1 - $C) * $f * $sinAlpha * |
||
280 | ($sigma + $C * $sinSigma * ($cos2SigmaM + $C * $cosSigma * (- 1 + 2 * $cos2SigmaM * $cos2SigmaM))); |
||
281 | } while (abs($lambda - $lambdaP) > 1e-12 && --$iterationLimit > 0); |
||
282 | if ($iterationLimit == 0) { |
||
283 | return 0.0; // not converging |
||
284 | } |
||
285 | $uSq = $cosSqAlpha * ($a * $a - $b * $b) / ($b * $b); |
||
286 | $A = 1 + $uSq / 16384 * (4096 + $uSq * (- 768 + $uSq * (320 - 175 * $uSq))); |
||
287 | $B = $uSq / 1024 * (256 + $uSq * (- 128 + $uSq * (74 - 47 * $uSq))); |
||
288 | $deltaSigma = $B * $sinSigma * ($cos2SigmaM + $B / 4 * |
||
289 | ($cosSigma * (-1 + 2 * $cos2SigmaM * $cos2SigmaM) - $B / 6 |
||
290 | * $cos2SigmaM * (-3 + 4 * $sinSigma * $sinSigma) |
||
291 | * (-3 + 4 * $cos2SigmaM * $cos2SigmaM))); |
||
292 | |||
293 | $length += $b * $A * ($sigma - $deltaSigma); |
||
294 | } |
||
295 | // Returns length in meters. |
||
296 | return $length; |
||
297 | } |
||
298 | |||
299 | /** |
||
300 | * @return int|float|null |
||
301 | */ |
||
302 | public function minimumZ() |
||
303 | { |
||
304 | $min = PHP_INT_MAX; |
||
305 | foreach ($this->getPoints() as $point) { |
||
306 | if (null !== ($z = $point->getZ()) && $z < $min) { |
||
307 | $min = $z; |
||
308 | } |
||
309 | } |
||
310 | return $min !== PHP_INT_MAX ? $min : null; |
||
311 | } |
||
312 | |||
313 | /** |
||
314 | * @return int|float|null |
||
315 | */ |
||
316 | public function maximumZ() |
||
326 | } |
||
327 | |||
328 | /** |
||
329 | * @return int|float|null |
||
330 | */ |
||
331 | public function zDifference() |
||
332 | { |
||
333 | $startPt = $this->startPoint(); |
||
334 | $endPt = $this->endPoint(); |
||
335 | |||
336 | if ($startPt->hasZ() && $endPt->hasZ()) { |
||
337 | return abs($startPt->getZ() - $endPt->getZ()); |
||
338 | } |
||
339 | |||
340 | return null; |
||
341 | } |
||
342 | |||
343 | /** |
||
344 | * Returns the cumulative elevation gain of the LineString |
||
345 | * |
||
346 | * @param int|float|null $verticalTolerance Smoothing factor filtering noisy elevation data. |
||
347 | * Its unit equals to the z-coordinates unit (meters for geographical coordinates) |
||
348 | * If the elevation data comes from a DEM, a value around 3.5 can be acceptable. |
||
349 | * |
||
350 | * @return float |
||
351 | */ |
||
352 | public function elevationGain($verticalTolerance = 0) |
||
368 | } |
||
369 | |||
370 | /** |
||
371 | * Returns the cumulative elevation loss of the LineString |
||
372 | * |
||
373 | * @param int|float|null $verticalTolerance Smoothing factor filtering noisy elevation data. |
||
374 | * Its unit equals to the z-coordinates unit (meters for geographical coordinates) |
||
375 | * If the elevation data comes from a DEM, a value around 3.5 can be acceptable. |
||
376 | * |
||
377 | * @return float |
||
378 | */ |
||
379 | public function elevationLoss($verticalTolerance = 0) |
||
380 | { |
||
381 | $loss = 0.0; |
||
382 | $lastEle = $this->startPoint()->getZ(); |
||
383 | $numPoints = $this->numPoints(); |
||
384 | |||
385 | foreach ($this->getPoints() as $i => $point) { |
||
386 | if (abs($point->getZ() - $lastEle) > $verticalTolerance || $i === $numPoints - 1) { |
||
387 | if ($point->getZ() < $lastEle) { |
||
388 | $loss += $lastEle - $point->getZ(); |
||
389 | } |
||
390 | $lastEle = $point->getZ(); |
||
391 | } |
||
392 | } |
||
393 | |||
394 | return $loss; |
||
395 | } |
||
396 | |||
397 | public function minimumM() |
||
398 | { |
||
399 | $min = PHP_INT_MAX; |
||
400 | foreach ($this->getPoints() as $point) { |
||
401 | if ($point->isMeasured() && $point->m() < $min) { |
||
402 | $min = $point->m(); |
||
403 | } |
||
404 | } |
||
405 | return $min !== PHP_INT_MAX ? $min : null; |
||
406 | } |
||
407 | |||
408 | public function maximumM() |
||
418 | } |
||
419 | |||
420 | /** |
||
421 | * Get all line segments |
||
422 | * |
||
423 | * @param bool $toArray return segments as LineString or array of start and end points. |
||
424 | * @return LineString[]|Point[][] |
||
425 | */ |
||
426 | public function explode(bool $toArray = false): array |
||
427 | { |
||
428 | $points = $this->getPoints(); |
||
429 | $numPoints = count($points); |
||
430 | if ($numPoints < 2) { |
||
431 | return []; |
||
432 | } |
||
433 | $parts = []; |
||
434 | for ($i = 1; $i < $numPoints; ++$i) { |
||
435 | $segment = [$points[$i - 1], $points[$i]]; |
||
436 | $parts[] = $toArray ? $segment : new LineString($segment); |
||
437 | } |
||
438 | return $parts; |
||
439 | } |
||
440 | |||
441 | /** |
||
442 | * Checks that LineString is a Simple Geometry |
||
443 | * |
||
444 | * @return bool |
||
445 | */ |
||
446 | public function isSimple(): bool |
||
447 | { |
||
448 | $geosObj = $this->getGeos(); |
||
449 | if (is_object($geosObj)) { |
||
450 | // @codeCoverageIgnoreStart |
||
451 | /** @noinspection PhpUndefinedMethodInspection */ |
||
452 | return $geosObj->isSimple(); |
||
453 | // @codeCoverageIgnoreEnd |
||
454 | } |
||
455 | |||
456 | $segments = $this->explode(true); |
||
457 | /** @var Point[][] $segments */ |
||
458 | foreach ($segments as $i => $segment) { |
||
459 | foreach ($segments as $j => $checkSegment) { |
||
460 | if ($i != $j) { |
||
461 | if (Geometry::segmentIntersects($segment[0], $segment[1], $checkSegment[0], $checkSegment[1])) { |
||
462 | return false; |
||
463 | } |
||
464 | } |
||
465 | } |
||
466 | } |
||
467 | |||
468 | return true; |
||
469 | } |
||
470 | |||
471 | /** |
||
472 | * @return bool |
||
473 | */ |
||
474 | public function isValid(): bool |
||
495 | } |
||
496 | |||
497 | /** |
||
498 | * @param LineString $segment |
||
499 | * @return bool |
||
500 | */ |
||
501 | public function lineSegmentIntersect($segment): bool |
||
502 | { |
||
503 | return Geometry::segmentIntersects( |
||
504 | $this->startPoint() ?? new Point(), |
||
505 | $this->endPoint() ?? new Point(), |
||
506 | $segment->startPoint() ?? new Point(), |
||
507 | $segment->endPoint() ?? new Point() |
||
508 | ); |
||
509 | } |
||
510 | |||
511 | /** |
||
512 | * @param Geometry|Collection $geometry |
||
513 | * @return float|null |
||
514 | */ |
||
515 | public function distance(Geometry $geometry) |
||
516 | { |
||
517 | $geosObj = $this->getGeos(); |
||
518 | if (is_object($geosObj)) { |
||
519 | // @codeCoverageIgnoreStart |
||
520 | /** @noinspection PhpUndefinedMethodInspection */ |
||
521 | $geosObj2 = $geometry->getGeos(); |
||
522 | return $geosObj2 !== false ? $geosObj->distance($geosObj2) : null; |
||
523 | // @codeCoverageIgnoreEnd |
||
524 | } |
||
525 | |||
526 | if ($geometry->geometryType() === Geometry::POINT) { |
||
527 | // This is defined in the Point class nicely |
||
528 | return $geometry->distance($this); |
||
529 | } |
||
530 | |||
531 | if ($geometry->geometryType() === Geometry::LINESTRING) { |
||
532 | /** @var LineString $geometry */ |
||
533 | return $this->distanceToLinestring($geometry); |
||
534 | } |
||
535 | |||
536 | // It can be treated as a collection |
||
537 | return parent::distance($geometry); |
||
538 | } |
||
539 | |||
540 | /** |
||
541 | * @param LineString $geometry |
||
542 | * @return float |
||
543 | */ |
||
544 | private function distanceToLinestring(LineString $geometry): float |
||
572 | } |
||
573 | } |
||
574 |