-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
GeometryCollection.php
231 lines (198 loc) · 6.27 KB
/
GeometryCollection.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
declare(strict_types=1);
namespace Brick\Geo;
use ArrayIterator;
use Brick\Geo\Attribute\NoProxy;
use Brick\Geo\Exception\CoordinateSystemException;
use Brick\Geo\Exception\NoSuchGeometryException;
use Brick\Geo\Exception\UnexpectedGeometryException;
use Brick\Geo\Projector\Projector;
/**
* A GeometryCollection is a geometric object that is a collection of some number of geometric objects.
*
* All the elements in a GeometryCollection shall be in the same Spatial Reference System. This is also the Spatial
* Reference System for the GeometryCollection.
*
* GeometryCollection places no other constraints on its elements. Subclasses of GeometryCollection may restrict
* membership based on dimension and may also place other constraints on the degree of spatial overlap between
* elements.
*
* By the nature of digital representations, collections are inherently ordered by the underlying storage mechanism.
* Two collections whose difference is only this order are spatially equal and will return equivalent results in any
* geometric-defined operations.
*
* @template T of Geometry
*/
class GeometryCollection extends Geometry
{
/**
* The geometries that compose this GeometryCollection.
*
* This array can be empty.
*
* @psalm-var list<T>
*
* @var Geometry[]
*/
protected array $geometries = [];
/**
* @psalm-param T ...$geometries
*
* @throws CoordinateSystemException If different coordinate systems are used.
* @throws UnexpectedGeometryException If a geometry is not a valid type for a sub-class of GeometryCollection.
*/
public function __construct(CoordinateSystem $cs, Geometry ...$geometries)
{
$isEmpty = true;
foreach ($geometries as $geometry) {
if (! $geometry->isEmpty()) {
$isEmpty = false;
break;
}
}
parent::__construct($cs, $isEmpty);
if (! $geometries) {
return;
}
CoordinateSystem::check($this, ...$geometries);
$containedGeometryType = $this->containedGeometryType();
foreach ($geometries as $geometry) {
if (! $geometry instanceof $containedGeometryType) {
throw new UnexpectedGeometryException(sprintf(
'%s expects instance of %s, instance of %s given.',
static::class,
$containedGeometryType,
$geometry::class
));
}
}
$this->geometries = array_values($geometries);
}
/**
* Creates a non-empty GeometryCollection composed of the given geometries.
*
* @psalm-suppress UnsafeInstantiation
*
* @param Geometry $geometry1 The first geometry.
* @param Geometry ...$geometryN The subsequent geometries, if any.
*
* @return static
*
* @throws CoordinateSystemException If the geometries use different coordinate systems.
* @throws UnexpectedGeometryException If a geometry is not a valid type for a sub-class of GeometryCollection.
*/
public static function of(Geometry $geometry1, Geometry ...$geometryN) : GeometryCollection
{
return new static($geometry1->coordinateSystem(), $geometry1, ...$geometryN);
}
/**
* Returns the number of geometries in this GeometryCollection.
*/
public function numGeometries() : int
{
return count($this->geometries);
}
/**
* Returns the specified geometry N in this GeometryCollection.
*
* @param int $n The geometry number, 1-based.
*
* @return T
*
* @throws NoSuchGeometryException If there is no Geometry at this index.
*/
public function geometryN(int $n) : Geometry
{
if (! isset($this->geometries[$n - 1])) {
throw new NoSuchGeometryException('There is no Geometry in this GeometryCollection at index ' . $n);
}
return $this->geometries[$n - 1];
}
/**
* Returns the geometries that compose this GeometryCollection.
*
* @psalm-return list<T>
*
* @return Geometry[]
*/
public function geometries() : array
{
return $this->geometries;
}
#[NoProxy]
public function geometryType() : string
{
return 'GeometryCollection';
}
#[NoProxy]
public function geometryTypeBinary() : int
{
return Geometry::GEOMETRYCOLLECTION;
}
public function dimension() : int
{
$dimension = 0;
foreach ($this->geometries as $geometry) {
$dim = $geometry->dimension();
if ($dim > $dimension) {
$dimension = $dim;
}
}
return $dimension;
}
public function getBoundingBox() : BoundingBox
{
$boundingBox = new BoundingBox();
foreach ($this->geometries as $geometry) {
$boundingBox = $boundingBox->extendedWithBoundingBox($geometry->getBoundingBox());
}
return $boundingBox;
}
public function toArray() : array
{
$result = [];
foreach ($this->geometries as $geometry) {
$result[] = $geometry->toArray();
}
return $result;
}
public function project(Projector $projector): GeometryCollection
{
return new GeometryCollection(
$projector->getTargetCoordinateSystem($this->coordinateSystem),
...array_map(
fn (Geometry $geometry) => $geometry->project($projector),
$this->geometries,
),
);
}
/**
* Returns the number of geometries in this GeometryCollection.
*
* Required by interface Countable.
*/
public function count() : int
{
return count($this->geometries);
}
/**
* Returns an iterator for the geometries in this GeometryCollection.
*
* Required by interface IteratorAggregate.
*
* @psalm-return ArrayIterator<int, T>
*/
public function getIterator() : ArrayIterator
{
return new ArrayIterator($this->geometries);
}
/**
* Returns the FQCN of the contained Geometry type.
*
* @psalm-return class-string<T>
*/
protected function containedGeometryType() : string
{
return Geometry::class;
}
}