-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparseMapbox.test.ts
277 lines (250 loc) · 7.36 KB
/
parseMapbox.test.ts
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/* eslint-disable @typescript-eslint/no-misused-promises */
import MapboxProtobuf from 'pbf';
import { VectorTile as MapboxVectorTile } from '@mapbox/vector-tile';
import { Pbf as Protobuf } from 'pbf-ts';
import { VectorTile } from '../src';
import { MapboxVectorFeature, MapboxVectorLayer } from '../src/mapbox';
import { describe, expect, it, test } from 'bun:test';
import type { VectorGeometry } from '../src/vectorTile.spec';
describe('parsing vector tiles', async (): Promise<void> => {
const data = await Bun.file(`${__dirname}/fixtures/14-8801-5371.vector.pbf`).arrayBuffer();
const uint8 = new Uint8Array(data, 0, data.byteLength);
const tile = new VectorTile(uint8);
it('should have all layers', () => {
expect(Object.keys(tile.layers)).toEqual([
'landuse',
'waterway',
'water',
'barrier_line',
'building',
'landuse_overlay',
'tunnel',
'road',
'bridge',
'place_label',
'water_label',
'poi_label',
'road_label',
'waterway_label',
]);
});
it('shoulnd contain mValues and have an empty bbox', () => {
const poi_label = tile.layers.poi_label;
const feature = poi_label.feature(11);
expect(feature.isPoints()).toBeTrue();
expect(feature.isLines()).toBeFalse();
expect(feature.isPolygons()).toBeFalse();
expect(feature.isPoints3D()).toBeFalse();
expect(feature.isLines3D()).toBeFalse();
expect(feature.isPolygons3D()).toBeFalse();
expect(feature.hasMValues).toEqual(false);
expect(feature.bbox()).toEqual([0, 0, 0, 0]);
});
it('should extract the tags of a feature', () => {
const poi_label = tile.layers.poi_label;
const road = tile.layers.road;
expect(poi_label.length).toEqual(558);
const park = poi_label.feature(11);
expect(() => {
const park = poi_label.feature(1e9);
park.loadGeometry();
}).toThrowError('feature index out of bounds');
expect(park.id).toEqual(3000003150561);
expect(park.properties.name).toEqual('Mauerpark');
expect(park.properties.type).toEqual('Park');
// Check point geometry
expect(park.loadGeometry()).toEqual([{ x: 3898, y: 1731 }]);
expect(park.loadLines()).toEqual([]);
expect(park.loadPoints()).toEqual([{ x: 3898, y: 1731 }]);
// Check line geometry
const feature_656 = road.feature(656);
expect(feature_656.loadGeometry()).toEqual([
[
{ x: 1988, y: 306 },
{ x: 1808, y: 321 },
{ x: 1506, y: 347 },
],
]);
expect(feature_656.loadLines()).toEqual([
{
geometry: [
{ x: 1988, y: 306 },
{ x: 1808, y: 321 },
{ x: 1506, y: 347 },
],
offset: 0,
},
]);
expect(feature_656.loadPoints()).toEqual([
{ x: 1988, y: 306 },
{ x: 1808, y: 321 },
{ x: 1506, y: 347 },
]);
});
it('changing first point of a polygon should not change last point', () => {
const buildingLayer = tile.layers.building;
const building = buildingLayer.feature(0);
expect(building.loadGeometry()).toEqual([
[
[
{ x: 2039, y: -32 },
{ x: 2035, y: -31 },
{ x: 2032, y: -31 },
{ x: 2032, y: -32 },
{ x: 2039, y: -32 },
],
],
]);
expect(building.loadLines()).toEqual([
{
geometry: [
{
x: 2039,
y: -32,
},
{
x: 2035,
y: -31,
},
{
x: 2032,
y: -31,
},
{
x: 2032,
y: -32,
},
{
x: 2039,
y: -32,
},
],
offset: 0,
},
]);
expect(building.loadPoints()).toEqual([
{
x: 2039,
y: -32,
},
{
x: 2035,
y: -31,
},
{
x: 2032,
y: -31,
},
{
x: 2032,
y: -32,
},
{
x: 2039,
y: -32,
},
]);
});
});
test('VectorLayer', () => {
const { version, name, extent, isS2, length } = new MapboxVectorLayer(
new Protobuf(Buffer.alloc(0)),
0,
);
expect({ version, name, extent, isS2, length }).toEqual({
version: 5,
name: 'default',
extent: 4096,
isS2: false,
length: 0,
});
});
test('VectorFeature', () => {
const { id, properties, extent, isS2, type, version } = new MapboxVectorFeature(
new Protobuf(Buffer.alloc(0)),
0,
false,
4096,
1,
[],
[],
);
expect({ id, properties, extent, isS2, type, version }).toEqual({
id: undefined,
properties: {},
extent: 4096,
isS2: false,
type: 1,
version: 1,
});
});
test('https://github.com/mapbox/vector-tile-js/issues/15', async () => {
const data = await Bun.file(`${__dirname}/fixtures/lots-of-tags.vector.pbf`).arrayBuffer();
const uint8 = new Uint8Array(data, 0, data.byteLength);
const tile = new VectorTile(uint8);
const feature = tile.layers['stuttgart-rails'].feature(0);
expect(feature.id).toEqual(22);
expect(feature.type).toEqual(2);
expect(feature.extent).toEqual(4096);
});
test('https://github.com/mapbox/mapbox-gl-js/issues/1019', async () => {
const data = await Bun.file(`${__dirname}/fixtures/12-1143-1497.vector.pbf`).arrayBuffer();
const uint8 = new Uint8Array(data, 0, data.byteLength);
const tile = new VectorTile(uint8);
const waterLayer = tile.layers.water;
const waterFeature = waterLayer.feature(1);
const waterGeometry = waterFeature.loadGeometry();
expect(waterGeometry).toHaveLength(1);
expect(waterLayer.feature(1).loadGeometry()).toHaveLength(1);
});
test('https://github.com/mapbox/vector-tile-js/issues/60', async () => {
const data = await Bun.file(
`${__dirname}/fixtures/multipolygon-with-closepath.pbf`,
).arrayBuffer();
const uint8 = new Uint8Array(data, 0, data.byteLength);
const tile = new VectorTile(uint8);
for (const id in tile.layers) {
const layer = tile.layers[id];
for (let i = 0; i < layer.length; i++) {
layer.feature(i).loadGeometry();
}
}
});
describe('parsing multi polygons are the same', async () => {
const data = await Bun.file(`${__dirname}/fixtures/1-1-0.vector.pbf`).arrayBuffer();
const uint8 = new Uint8Array(data, 0, data.byteLength);
it('should have all layers', () => {
const mTile = new MapboxVectorTile(new MapboxProtobuf(uint8));
const s2Tile = new VectorTile(uint8);
const { water: mWater } = mTile.layers;
const { water: s2Water } = s2Tile.layers;
// regular polygons
for (let i = 0; i < mWater.length; i++) {
if (i === 1) continue;
const mFeature = mWater.feature(i);
const mGeometry = mFeature.loadGeometry();
const mFlatGeometry = [];
mergePolygons(mFlatGeometry, mGeometry);
const s2Feature = (s2Water as MapboxVectorLayer).feature(i);
const s2Geometry = s2Feature.loadGeometry();
expect([mFlatGeometry] as VectorGeometry).toEqual(s2Geometry);
}
});
});
/**
* @param out - the output array
* @param input - the input array
*/
// @ts-expect-error this is just for testing purposes
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function mergePolygons(out: any[], input: any[]): any[] {
for (const arr of input) {
if (!Array.isArray(arr)) {
out.push({ x: arr.x, y: arr.y });
} else {
const outArr = [];
mergePolygons(outArr, arr);
out.push(outArr);
}
}
}