-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
GeoJSONWriter.php
226 lines (186 loc) · 6.56 KB
/
GeoJSONWriter.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
<?php
declare(strict_types = 1);
namespace Brick\Geo\IO;
use Brick\Geo\BoundingBox;
use Brick\Geo\Exception\GeometryIOException;
use Brick\Geo\Geometry;
use Brick\Geo\GeometryCollection;
use Brick\Geo\IO\GeoJSON\Feature;
use Brick\Geo\IO\GeoJSON\FeatureCollection;
use InvalidArgumentException;
use stdClass;
/**
* Converter class from Geometry to GeoJSON.
*/
class GeoJSONWriter
{
private readonly bool $prettyPrint;
private readonly bool $setBbox;
/**
* @param bool $prettyPrint Whether to pretty-print the JSON output.
* @param bool $setBbox Whether to set the bbox attribute of each non-empty GeoJSON object.
*/
public function __construct(bool $prettyPrint = false, bool $setBbox = false)
{
$this->prettyPrint = $prettyPrint;
$this->setBbox = $setBbox;
}
/**
* Writes the given object as GeoJSON.
*
* @param Geometry|Feature|FeatureCollection $object The object to export as GeoJSON.
*
* @return string The GeoJSON representation of the given object.
*
* @throws GeometryIOException If the given geometry cannot be exported as GeoJSON.
*/
public function write(Geometry|Feature|FeatureCollection $object) : string
{
return json_encode($this->writeRaw($object), $this->prettyPrint ? JSON_PRETTY_PRINT : 0);
}
/**
* Writes the given object as a raw stdClass object that can be JSON-encoded.
*
* @param Geometry|Feature|FeatureCollection $object
*
* @return stdClass An object to be JSON-encoded.
*
* @throws GeometryIOException
*/
public function writeRaw(Geometry|Feature|FeatureCollection $object): stdClass
{
if ($object instanceof Feature) {
return $this->writeFeature($object);
}
if ($object instanceof FeatureCollection) {
return $this->writeFeatureCollection($object);
}
return $this->writeGeometry($object);
}
/**
* @psalm-suppress MoreSpecificReturnType
* @psalm-suppress LessSpecificReturnStatement
* @see https://github.com/vimeo/psalm/issues/8187
*
* @throws GeometryIOException
*/
private function writeFeature(Feature $feature): stdClass
{
$boundingBox = null;
$geometry = $feature->getGeometry();
if ($geometry !== null) {
if ($this->setBbox) {
$boundingBox = $geometry->getBoundingBox();
}
$geometry = $this->writeGeometry($geometry);
}
$result = [
'type' => 'Feature',
'properties' => $feature->getProperties(),
'geometry' => $geometry
];
if ($boundingBox !== null && ! $boundingBox->isEmpty()) {
$result['bbox'] = $this->bboxToCoordinateArray($boundingBox);
}
return (object) $result;
}
/**
* @psalm-suppress MoreSpecificReturnType
* @psalm-suppress LessSpecificReturnStatement
* @see https://github.com/vimeo/psalm/issues/8187
*
* @throws GeometryIOException
*/
private function writeFeatureCollection(FeatureCollection $featureCollection): stdClass
{
$features = $featureCollection->getFeatures();
$features = array_map(fn(Feature $feature) => $this->writeFeature($feature), $features);
$result = [
'type' => 'FeatureCollection',
'features' => $features
];
if ($this->setBbox) {
$boundingBox = new BoundingBox();
foreach ($featureCollection->getFeatures() as $feature) {
$featureGeometry = $feature->getGeometry();
if ($featureGeometry !== null) {
$boundingBox = $boundingBox->extendedWithBoundingBox($featureGeometry->getBoundingBox());
}
}
if (! $boundingBox->isEmpty()) {
$result['bbox'] = $this->bboxToCoordinateArray($boundingBox);
}
}
return (object) $result;
}
/**
* @psalm-suppress MoreSpecificReturnType
* @psalm-suppress LessSpecificReturnStatement
* @see https://github.com/vimeo/psalm/issues/8187
*
* @throws GeometryIOException
*/
private function writeGeometry(Geometry $geometry): stdClass
{
// GeoJSON supports XY & XYZ only
$geometry = $geometry->withoutM();
// filter out MultiPoint, MultiLineString and MultiPolygon
if ($geometry instanceof GeometryCollection && $geometry->geometryType() === 'GeometryCollection') {
return $this->writeGeometryCollection($geometry);
}
$geometryType = $geometry->geometryType();
$validGeometries = [
'Point',
'LineString',
'Polygon',
'MultiPoint',
'MultiLineString',
'MultiPolygon'
];
if (! in_array($geometryType, $validGeometries, true)) {
throw GeometryIOException::unsupportedGeometryType($geometry->geometryType());
}
$result = [
'type' => $geometryType,
'coordinates' => $geometry->toArray()
];
$boundingBox = $geometry->getBoundingBox();
if ($this->setBbox && ! $boundingBox->isEmpty()) {
$result['bbox'] = $this->bboxToCoordinateArray($boundingBox);
}
return (object) $result;
}
/**
* @psalm-suppress MoreSpecificReturnType
* @psalm-suppress LessSpecificReturnStatement
* @see https://github.com/vimeo/psalm/issues/8187
*
* @throws GeometryIOException
*/
private function writeGeometryCollection(GeometryCollection $geometryCollection): stdClass
{
$geometries = $geometryCollection->geometries();
$geometries = array_map(function(Geometry $geometry) {
if ($geometry instanceof GeometryCollection) {
throw new GeometryIOException('GeoJSON does not allow nested GeometryCollections.');
}
return $this->writeGeometry($geometry);
}, $geometries);
$result = [
'type' => 'GeometryCollection',
'geometries' => $geometries
];
$boundingBox = $geometryCollection->getBoundingBox();
if ($this->setBbox && ! $boundingBox->isEmpty()) {
$result['bbox'] = $this->bboxToCoordinateArray($boundingBox);
}
return (object) $result;
}
private function bboxToCoordinateArray(BoundingBox $boundingBox): array
{
return array_merge(
$boundingBox->getSouthWest()->toArray(),
$boundingBox->getNorthEast()->toArray()
);
}
}