@maplibre/mlt 0.0.1-alpha.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{encodings → decoding}/decodingUtils.js +18 -33
- package/dist/decoding/decodingUtils.js.map +1 -0
- package/dist/decoding/decodingUtils.spec.d.ts +1 -0
- package/dist/decoding/decodingUtils.spec.js +125 -0
- package/dist/decoding/decodingUtils.spec.js.map +1 -0
- package/dist/{encodings → decoding}/fsstDecoder.js +1 -4
- package/dist/decoding/fsstDecoder.js.map +1 -0
- package/dist/decoding/fsstDecoder.spec.d.ts +1 -0
- package/dist/decoding/fsstDecoder.spec.js +36 -0
- package/dist/decoding/fsstDecoder.spec.js.map +1 -0
- package/dist/{encodings → decoding}/geometryDecoder.js +83 -101
- package/dist/decoding/geometryDecoder.js.map +1 -0
- package/dist/decoding/geometryDecoder.spec.d.ts +1 -0
- package/dist/decoding/geometryDecoder.spec.js +5 -0
- package/dist/decoding/geometryDecoder.spec.js.map +1 -0
- package/dist/decoding/geometryScaling.js +2 -0
- package/dist/decoding/geometryScaling.js.map +1 -0
- package/dist/{encodings → decoding}/intWrapper.js +2 -4
- package/dist/decoding/intWrapper.js.map +1 -0
- package/dist/{encodings → decoding}/integerDecodingUtils.d.ts +13 -0
- package/dist/{encodings → decoding}/integerDecodingUtils.js +127 -130
- package/dist/decoding/integerDecodingUtils.js.map +1 -0
- package/dist/decoding/integerDecodingUtils.spec.d.ts +1 -0
- package/dist/decoding/integerDecodingUtils.spec.js +194 -0
- package/dist/decoding/integerDecodingUtils.spec.js.map +1 -0
- package/dist/{encodings → decoding}/integerStreamDecoder.d.ts +1 -1
- package/dist/decoding/integerStreamDecoder.js +263 -0
- package/dist/decoding/integerStreamDecoder.js.map +1 -0
- package/dist/decoding/integerStreamDecoder.spec.d.ts +1 -0
- package/dist/decoding/integerStreamDecoder.spec.js +125 -0
- package/dist/decoding/integerStreamDecoder.spec.js.map +1 -0
- package/dist/{encodings → decoding}/propertyDecoder.d.ts +1 -1
- package/dist/decoding/propertyDecoder.js +140 -0
- package/dist/decoding/propertyDecoder.js.map +1 -0
- package/dist/decoding/propertyDecoder.spec.d.ts +1 -0
- package/dist/decoding/propertyDecoder.spec.js +682 -0
- package/dist/decoding/propertyDecoder.spec.js.map +1 -0
- package/dist/{encodings → decoding}/stringDecoder.d.ts +1 -1
- package/dist/decoding/stringDecoder.js +142 -0
- package/dist/decoding/stringDecoder.js.map +1 -0
- package/dist/decoding/stringDecoder.spec.d.ts +1 -0
- package/dist/decoding/stringDecoder.spec.js +311 -0
- package/dist/decoding/stringDecoder.spec.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -18
- package/dist/index.js.map +1 -1
- package/dist/metadata/tile/dictionaryType.js +2 -5
- package/dist/metadata/tile/dictionaryType.js.map +1 -1
- package/dist/metadata/tile/lengthType.js +2 -5
- package/dist/metadata/tile/lengthType.js.map +1 -1
- package/dist/metadata/tile/logicalLevelTechnique.js +2 -5
- package/dist/metadata/tile/logicalLevelTechnique.js.map +1 -1
- package/dist/metadata/tile/logicalStreamType.d.ts +3 -3
- package/dist/metadata/tile/logicalStreamType.js +4 -5
- package/dist/metadata/tile/logicalStreamType.js.map +1 -1
- package/dist/metadata/tile/mortonEncodedStreamMetadata.d.ts +6 -6
- package/dist/metadata/tile/mortonEncodedStreamMetadata.js +8 -10
- package/dist/metadata/tile/mortonEncodedStreamMetadata.js.map +1 -1
- package/dist/metadata/tile/offsetType.js +2 -5
- package/dist/metadata/tile/offsetType.js.map +1 -1
- package/dist/metadata/tile/physicalLevelTechnique.js +2 -5
- package/dist/metadata/tile/physicalLevelTechnique.js.map +1 -1
- package/dist/metadata/tile/physicalStreamType.js +2 -5
- package/dist/metadata/tile/physicalStreamType.js.map +1 -1
- package/dist/metadata/tile/rleEncodedStreamMetadata.d.ts +10 -6
- package/dist/metadata/tile/rleEncodedStreamMetadata.js +14 -10
- package/dist/metadata/tile/rleEncodedStreamMetadata.js.map +1 -1
- package/dist/metadata/tile/scalarType.js +2 -5
- package/dist/metadata/tile/scalarType.js.map +1 -1
- package/dist/metadata/tile/streamMetadata.d.ts +11 -5
- package/dist/metadata/tile/streamMetadata.js +35 -24
- package/dist/metadata/tile/streamMetadata.js.map +1 -1
- package/dist/metadata/tile/streamMetadataDecoder.d.ts +2 -2
- package/dist/metadata/tile/streamMetadataDecoder.js +13 -17
- package/dist/metadata/tile/streamMetadataDecoder.js.map +1 -1
- package/dist/metadata/tileset/embeddedTilesetMetadataDecoder.d.ts +2 -2
- package/dist/metadata/tileset/embeddedTilesetMetadataDecoder.js +40 -32
- package/dist/metadata/tileset/embeddedTilesetMetadataDecoder.js.map +1 -1
- package/dist/metadata/tileset/tilesetMetadata.d.ts +80 -0
- package/dist/metadata/tileset/tilesetMetadata.js +29 -0
- package/dist/metadata/tileset/tilesetMetadata.js.map +1 -0
- package/dist/metadata/tileset/typeMap.d.ts +1 -1
- package/dist/metadata/tileset/typeMap.js +63 -59
- package/dist/metadata/tileset/typeMap.js.map +1 -1
- package/dist/mltDecoder.d.ts +1 -1
- package/dist/mltDecoder.js +58 -64
- package/dist/mltDecoder.js.map +1 -1
- package/dist/mltDecoder.spec.d.ts +1 -0
- package/dist/mltDecoder.spec.js +152 -0
- package/dist/mltDecoder.spec.js.map +1 -0
- package/dist/mltMetadata.js +4 -7
- package/dist/mltMetadata.js.map +1 -1
- package/dist/vector/constant/intConstVector.d.ts +0 -13
- package/dist/vector/constant/intConstVector.js +2 -81
- package/dist/vector/constant/intConstVector.js.map +1 -1
- package/dist/vector/constant/longConstVector.d.ts +0 -13
- package/dist/vector/constant/longConstVector.js +2 -79
- package/dist/vector/constant/longConstVector.js.map +1 -1
- package/dist/vector/dictionary/stringDictionaryVector.d.ts +0 -14
- package/dist/vector/dictionary/stringDictionaryVector.js +6 -167
- package/dist/vector/dictionary/stringDictionaryVector.js.map +1 -1
- package/dist/vector/featureTable.d.ts +4 -0
- package/dist/vector/featureTable.js +48 -12
- package/dist/vector/featureTable.js.map +1 -1
- package/dist/vector/fixedSizeVector.js +2 -9
- package/dist/vector/fixedSizeVector.js.map +1 -1
- package/dist/vector/flat/bitVector.js +3 -4
- package/dist/vector/flat/bitVector.js.map +1 -1
- package/dist/vector/flat/booleanFlatVector.d.ts +0 -13
- package/dist/vector/flat/booleanFlatVector.js +3 -46
- package/dist/vector/flat/booleanFlatVector.js.map +1 -1
- package/dist/vector/flat/doubleFlatVector.d.ts +0 -13
- package/dist/vector/flat/doubleFlatVector.js +2 -101
- package/dist/vector/flat/doubleFlatVector.js.map +1 -1
- package/dist/vector/flat/floatFlatVector.d.ts +0 -13
- package/dist/vector/flat/floatFlatVector.js +2 -101
- package/dist/vector/flat/floatFlatVector.js.map +1 -1
- package/dist/vector/flat/floatFlatVector.spec.d.ts +1 -0
- package/dist/vector/flat/floatFlatVector.spec.js +14 -0
- package/dist/vector/flat/floatFlatVector.spec.js.map +1 -0
- package/dist/vector/flat/intFlatVector.d.ts +0 -13
- package/dist/vector/flat/intFlatVector.js +2 -115
- package/dist/vector/flat/intFlatVector.js.map +1 -1
- package/dist/vector/flat/intFlatVector.spec.d.ts +1 -0
- package/dist/vector/flat/intFlatVector.spec.js +15 -0
- package/dist/vector/flat/intFlatVector.spec.js.map +1 -0
- package/dist/vector/flat/longFlatVector.d.ts +0 -13
- package/dist/vector/flat/longFlatVector.js +2 -116
- package/dist/vector/flat/longFlatVector.js.map +1 -1
- package/dist/vector/flat/longFlatVector.spec.d.ts +1 -0
- package/dist/vector/flat/longFlatVector.spec.js +14 -0
- package/dist/vector/flat/longFlatVector.spec.js.map +1 -0
- package/dist/vector/flat/stringFlatVector.d.ts +0 -13
- package/dist/vector/flat/stringFlatVector.js +5 -155
- package/dist/vector/flat/stringFlatVector.js.map +1 -1
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.d.ts +0 -13
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.js +14 -51
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.js.map +1 -1
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.spec.d.ts +1 -0
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.spec.js +28 -0
- package/dist/vector/fsst-dictionary/stringFsstDictionaryVector.spec.js.map +1 -0
- package/dist/vector/geometry/constGeometryVector.d.ts +0 -4
- package/dist/vector/geometry/constGeometryVector.js +9 -30
- package/dist/vector/geometry/constGeometryVector.js.map +1 -1
- package/dist/vector/geometry/constGpuVector.d.ts +0 -4
- package/dist/vector/geometry/constGpuVector.js +4 -25
- package/dist/vector/geometry/constGpuVector.js.map +1 -1
- package/dist/vector/geometry/flatGeometryVector.d.ts +0 -4
- package/dist/vector/geometry/flatGeometryVector.js +8 -36
- package/dist/vector/geometry/flatGeometryVector.js.map +1 -1
- package/dist/vector/geometry/flatGpuVector.d.ts +0 -4
- package/dist/vector/geometry/flatGpuVector.js +3 -29
- package/dist/vector/geometry/flatGpuVector.js.map +1 -1
- package/dist/vector/geometry/geometryType.js +4 -7
- package/dist/vector/geometry/geometryType.js.map +1 -1
- package/dist/vector/geometry/geometryVector.d.ts +8 -7
- package/dist/vector/geometry/geometryVector.js +13 -14
- package/dist/vector/geometry/geometryVector.js.map +1 -1
- package/dist/vector/geometry/geometryVectorConverter.d.ts +2 -2
- package/dist/vector/geometry/geometryVectorConverter.js +38 -41
- package/dist/vector/geometry/geometryVectorConverter.js.map +1 -1
- package/dist/vector/geometry/gpuVector.d.ts +8 -7
- package/dist/vector/geometry/gpuVector.js +97 -13
- package/dist/vector/geometry/gpuVector.js.map +1 -1
- package/dist/vector/geometry/spaceFillingCurve.js +10 -5
- package/dist/vector/geometry/spaceFillingCurve.js.map +1 -1
- package/dist/vector/geometry/topologyVector.js +4 -4
- package/dist/vector/geometry/topologyVector.js.map +1 -1
- package/dist/vector/geometry/vertexBufferType.js +2 -5
- package/dist/vector/geometry/vertexBufferType.js.map +1 -1
- package/dist/vector/geometry/zOrderCurve.d.ts +1 -1
- package/dist/vector/geometry/zOrderCurve.js +3 -9
- package/dist/vector/geometry/zOrderCurve.js.map +1 -1
- package/dist/vector/geometry/zOrderCurve.spec.d.ts +1 -0
- package/dist/vector/geometry/zOrderCurve.spec.js +14 -0
- package/dist/vector/geometry/zOrderCurve.spec.js.map +1 -0
- package/dist/vector/intVector.js +1 -2
- package/dist/vector/sequence/intSequenceVector.d.ts +0 -13
- package/dist/vector/sequence/intSequenceVector.js +2 -64
- package/dist/vector/sequence/intSequenceVector.js.map +1 -1
- package/dist/vector/sequence/longSequenceVector.d.ts +0 -13
- package/dist/vector/sequence/longSequenceVector.js +2 -49
- package/dist/vector/sequence/longSequenceVector.js.map +1 -1
- package/dist/vector/sequence/longSequenceVektor.spec.d.ts +1 -0
- package/dist/vector/sequence/longSequenceVektor.spec.js +11 -0
- package/dist/vector/sequence/longSequenceVektor.spec.js.map +1 -0
- package/dist/vector/sequence/sequenceVector.js +3 -9
- package/dist/vector/sequence/sequenceVector.js.map +1 -1
- package/dist/vector/variableSizeVector.js +3 -9
- package/dist/vector/variableSizeVector.js.map +1 -1
- package/dist/vector/vector.d.ts +0 -17
- package/dist/vector/vector.js +6 -49
- package/dist/vector/vector.js.map +1 -1
- package/dist/vector/vectorType.js +2 -5
- package/dist/vector/vectorType.js.map +1 -1
- package/package.json +10 -31
- package/dist/encodings/decodingUtils.js.map +0 -1
- package/dist/encodings/doubleDecoder.d.ts +0 -4
- package/dist/encodings/doubleDecoder.js +0 -22
- package/dist/encodings/doubleDecoder.js.map +0 -1
- package/dist/encodings/fastpfor/bitpacking.d.ts +0 -51
- package/dist/encodings/fastpfor/bitpacking.js +0 -4444
- package/dist/encodings/fastpfor/bitpacking.js.map +0 -1
- package/dist/encodings/fastpfor/codec.d.ts +0 -19
- package/dist/encodings/fastpfor/codec.js +0 -3
- package/dist/encodings/fastpfor/codec.js.map +0 -1
- package/dist/encodings/fastpfor/fastpfor.d.ts +0 -38
- package/dist/encodings/fastpfor/fastpfor.js +0 -123
- package/dist/encodings/fastpfor/fastpfor.js.map +0 -1
- package/dist/encodings/fastpfor/index.d.ts +0 -20
- package/dist/encodings/fastpfor/index.js +0 -47
- package/dist/encodings/fastpfor/index.js.map +0 -1
- package/dist/encodings/fastpfor/util.d.ts +0 -2
- package/dist/encodings/fastpfor/util.js +0 -16
- package/dist/encodings/fastpfor/util.js.map +0 -1
- package/dist/encodings/fastpfor/varint.d.ts +0 -18
- package/dist/encodings/fastpfor/varint.js +0 -125
- package/dist/encodings/fastpfor/varint.js.map +0 -1
- package/dist/encodings/fsstDecoder.js.map +0 -1
- package/dist/encodings/geometryDecoder.js.map +0 -1
- package/dist/encodings/geometryScaling.js +0 -3
- package/dist/encodings/geometryScaling.js.map +0 -1
- package/dist/encodings/intWrapper.js.map +0 -1
- package/dist/encodings/integerDecodingUtils.js.map +0 -1
- package/dist/encodings/integerStreamDecoder.js +0 -254
- package/dist/encodings/integerStreamDecoder.js.map +0 -1
- package/dist/encodings/propertyDecoder.js +0 -146
- package/dist/encodings/propertyDecoder.js.map +0 -1
- package/dist/encodings/stringDecoder.js +0 -147
- package/dist/encodings/stringDecoder.js.map +0 -1
- package/dist/metadata/tileset/tilesetMetadata.g.d.ts +0 -418
- package/dist/metadata/tileset/tilesetMetadata.g.js +0 -476
- package/dist/metadata/tileset/tilesetMetadata.g.js.map +0 -1
- package/dist/vector/filter/constSelectionVector.d.ts +0 -0
- package/dist/vector/filter/constSelectionVector.js +0 -1
- package/dist/vector/filter/constSelectionVector.js.map +0 -1
- package/dist/vector/filter/flatSelectionVector.d.ts +0 -16
- package/dist/vector/filter/flatSelectionVector.js +0 -42
- package/dist/vector/filter/flatSelectionVector.js.map +0 -1
- package/dist/vector/filter/selectionVector.d.ts +0 -8
- package/dist/vector/filter/selectionVector.js +0 -3
- package/dist/vector/filter/selectionVector.js.map +0 -1
- package/dist/vector/filter/selectionVectorUtils.d.ts +0 -7
- package/dist/vector/filter/selectionVectorUtils.js +0 -44
- package/dist/vector/filter/selectionVectorUtils.js.map +0 -1
- package/dist/vector/filter/sequenceSelectionVector.d.ts +0 -0
- package/dist/vector/filter/sequenceSelectionVector.js +0 -1
- package/dist/vector/filter/sequenceSelectionVector.js.map +0 -1
- package/dist/vector/geometry/point.d.ts +0 -195
- package/dist/vector/geometry/point.js +0 -283
- package/dist/vector/geometry/point.js.map +0 -1
- /package/dist/{encodings → decoding}/decodingUtils.d.ts +0 -0
- /package/dist/{encodings → decoding}/fsstDecoder.d.ts +0 -0
- /package/dist/{encodings → decoding}/geometryDecoder.d.ts +0 -0
- /package/dist/{encodings → decoding}/geometryScaling.d.ts +0 -0
- /package/dist/{encodings → decoding}/intWrapper.d.ts +0 -0
|
@@ -1,476 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
|
|
3
|
-
// @generated from file mlt_tileset_metadata.proto (package mlt, syntax proto3)
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
// @ts-nocheck
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ComplexField = exports.ScalarField = exports.Field = exports.ComplexColumn = exports.ScalarColumn = exports.Column = exports.FeatureTableSchema = exports.TileSetMetadata = exports.LogicalComplexType = exports.LogicalScalarType = exports.ComplexType = exports.ScalarType = exports.ColumnScope = void 0;
|
|
8
|
-
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
|
-
/**
|
|
10
|
-
* @generated from enum mlt.ColumnScope
|
|
11
|
-
*/
|
|
12
|
-
var ColumnScope;
|
|
13
|
-
(function (ColumnScope) {
|
|
14
|
-
/**
|
|
15
|
-
* 1:1 Mapping of property and feature -> id and geometry
|
|
16
|
-
*
|
|
17
|
-
* @generated from enum value: FEATURE = 0;
|
|
18
|
-
*/
|
|
19
|
-
ColumnScope[ColumnScope["FEATURE"] = 0] = "FEATURE";
|
|
20
|
-
/**
|
|
21
|
-
* For M-Values -> 1:1 Mapping for property and vertex
|
|
22
|
-
*
|
|
23
|
-
* @generated from enum value: VERTEX = 1;
|
|
24
|
-
*/
|
|
25
|
-
ColumnScope[ColumnScope["VERTEX"] = 1] = "VERTEX";
|
|
26
|
-
})(ColumnScope || (exports.ColumnScope = ColumnScope = {}));
|
|
27
|
-
// Retrieve enum metadata with: proto3.getEnumType(ColumnScope)
|
|
28
|
-
protobuf_1.proto3.util.setEnumType(ColumnScope, "mlt.ColumnScope", [
|
|
29
|
-
{ no: 0, name: "FEATURE" },
|
|
30
|
-
{ no: 1, name: "VERTEX" },
|
|
31
|
-
]);
|
|
32
|
-
/**
|
|
33
|
-
* @generated from enum mlt.ScalarType
|
|
34
|
-
*/
|
|
35
|
-
var ScalarType;
|
|
36
|
-
(function (ScalarType) {
|
|
37
|
-
/**
|
|
38
|
-
* @generated from enum value: BOOLEAN = 0;
|
|
39
|
-
*/
|
|
40
|
-
ScalarType[ScalarType["BOOLEAN"] = 0] = "BOOLEAN";
|
|
41
|
-
/**
|
|
42
|
-
* @generated from enum value: INT_8 = 1;
|
|
43
|
-
*/
|
|
44
|
-
ScalarType[ScalarType["INT_8"] = 1] = "INT_8";
|
|
45
|
-
/**
|
|
46
|
-
* @generated from enum value: UINT_8 = 2;
|
|
47
|
-
*/
|
|
48
|
-
ScalarType[ScalarType["UINT_8"] = 2] = "UINT_8";
|
|
49
|
-
/**
|
|
50
|
-
* @generated from enum value: INT_32 = 3;
|
|
51
|
-
*/
|
|
52
|
-
ScalarType[ScalarType["INT_32"] = 3] = "INT_32";
|
|
53
|
-
/**
|
|
54
|
-
* @generated from enum value: UINT_32 = 4;
|
|
55
|
-
*/
|
|
56
|
-
ScalarType[ScalarType["UINT_32"] = 4] = "UINT_32";
|
|
57
|
-
/**
|
|
58
|
-
* @generated from enum value: INT_64 = 5;
|
|
59
|
-
*/
|
|
60
|
-
ScalarType[ScalarType["INT_64"] = 5] = "INT_64";
|
|
61
|
-
/**
|
|
62
|
-
* @generated from enum value: UINT_64 = 6;
|
|
63
|
-
*/
|
|
64
|
-
ScalarType[ScalarType["UINT_64"] = 6] = "UINT_64";
|
|
65
|
-
/**
|
|
66
|
-
* @generated from enum value: FLOAT = 7;
|
|
67
|
-
*/
|
|
68
|
-
ScalarType[ScalarType["FLOAT"] = 7] = "FLOAT";
|
|
69
|
-
/**
|
|
70
|
-
* @generated from enum value: DOUBLE = 8;
|
|
71
|
-
*/
|
|
72
|
-
ScalarType[ScalarType["DOUBLE"] = 8] = "DOUBLE";
|
|
73
|
-
/**
|
|
74
|
-
* @generated from enum value: STRING = 9;
|
|
75
|
-
*/
|
|
76
|
-
ScalarType[ScalarType["STRING"] = 9] = "STRING";
|
|
77
|
-
})(ScalarType || (exports.ScalarType = ScalarType = {}));
|
|
78
|
-
// Retrieve enum metadata with: proto3.getEnumType(ScalarType)
|
|
79
|
-
protobuf_1.proto3.util.setEnumType(ScalarType, "mlt.ScalarType", [
|
|
80
|
-
{ no: 0, name: "BOOLEAN" },
|
|
81
|
-
{ no: 1, name: "INT_8" },
|
|
82
|
-
{ no: 2, name: "UINT_8" },
|
|
83
|
-
{ no: 3, name: "INT_32" },
|
|
84
|
-
{ no: 4, name: "UINT_32" },
|
|
85
|
-
{ no: 5, name: "INT_64" },
|
|
86
|
-
{ no: 6, name: "UINT_64" },
|
|
87
|
-
{ no: 7, name: "FLOAT" },
|
|
88
|
-
{ no: 8, name: "DOUBLE" },
|
|
89
|
-
{ no: 9, name: "STRING" },
|
|
90
|
-
]);
|
|
91
|
-
/**
|
|
92
|
-
* @generated from enum mlt.ComplexType
|
|
93
|
-
*/
|
|
94
|
-
var ComplexType;
|
|
95
|
-
(function (ComplexType) {
|
|
96
|
-
/**
|
|
97
|
-
* @generated from enum value: GEOMETRY = 0;
|
|
98
|
-
*/
|
|
99
|
-
ComplexType[ComplexType["GEOMETRY"] = 0] = "GEOMETRY";
|
|
100
|
-
/**
|
|
101
|
-
* @generated from enum value: STRUCT = 1;
|
|
102
|
-
*/
|
|
103
|
-
ComplexType[ComplexType["STRUCT"] = 1] = "STRUCT";
|
|
104
|
-
})(ComplexType || (exports.ComplexType = ComplexType = {}));
|
|
105
|
-
// Retrieve enum metadata with: proto3.getEnumType(ComplexType)
|
|
106
|
-
protobuf_1.proto3.util.setEnumType(ComplexType, "mlt.ComplexType", [
|
|
107
|
-
{ no: 0, name: "GEOMETRY" },
|
|
108
|
-
{ no: 1, name: "STRUCT" },
|
|
109
|
-
]);
|
|
110
|
-
/**
|
|
111
|
-
* @generated from enum mlt.LogicalScalarType
|
|
112
|
-
*/
|
|
113
|
-
var LogicalScalarType;
|
|
114
|
-
(function (LogicalScalarType) {
|
|
115
|
-
/**
|
|
116
|
-
* @generated from enum value: ID = 0;
|
|
117
|
-
*/
|
|
118
|
-
LogicalScalarType[LogicalScalarType["ID"] = 0] = "ID";
|
|
119
|
-
})(LogicalScalarType || (exports.LogicalScalarType = LogicalScalarType = {}));
|
|
120
|
-
// Retrieve enum metadata with: proto3.getEnumType(LogicalScalarType)
|
|
121
|
-
protobuf_1.proto3.util.setEnumType(LogicalScalarType, "mlt.LogicalScalarType", [
|
|
122
|
-
{ no: 0, name: "ID" },
|
|
123
|
-
]);
|
|
124
|
-
/**
|
|
125
|
-
* @generated from enum mlt.LogicalComplexType
|
|
126
|
-
*/
|
|
127
|
-
var LogicalComplexType;
|
|
128
|
-
(function (LogicalComplexType) {
|
|
129
|
-
/**
|
|
130
|
-
* physical type: list<UInt8>
|
|
131
|
-
*
|
|
132
|
-
* @generated from enum value: BINARY = 0;
|
|
133
|
-
*/
|
|
134
|
-
LogicalComplexType[LogicalComplexType["BINARY"] = 0] = "BINARY";
|
|
135
|
-
/**
|
|
136
|
-
* physical type: map<vec2<double, T>> -> special data structure which can be used for a efficient representation of linear referencing
|
|
137
|
-
*
|
|
138
|
-
* @generated from enum value: RANGE_MAP = 1;
|
|
139
|
-
*/
|
|
140
|
-
LogicalComplexType[LogicalComplexType["RANGE_MAP"] = 1] = "RANGE_MAP";
|
|
141
|
-
})(LogicalComplexType || (exports.LogicalComplexType = LogicalComplexType = {}));
|
|
142
|
-
// Retrieve enum metadata with: proto3.getEnumType(LogicalComplexType)
|
|
143
|
-
protobuf_1.proto3.util.setEnumType(LogicalComplexType, "mlt.LogicalComplexType", [
|
|
144
|
-
{ no: 0, name: "BINARY" },
|
|
145
|
-
{ no: 1, name: "RANGE_MAP" },
|
|
146
|
-
]);
|
|
147
|
-
/**
|
|
148
|
-
* @generated from message mlt.TileSetMetadata
|
|
149
|
-
*/
|
|
150
|
-
class TileSetMetadata extends protobuf_1.Message {
|
|
151
|
-
constructor(data) {
|
|
152
|
-
super();
|
|
153
|
-
/**
|
|
154
|
-
* @generated from field: int32 version = 1;
|
|
155
|
-
*/
|
|
156
|
-
this.version = 0;
|
|
157
|
-
/**
|
|
158
|
-
* @generated from field: repeated mlt.FeatureTableSchema featureTables = 2;
|
|
159
|
-
*/
|
|
160
|
-
this.featureTables = [];
|
|
161
|
-
/**
|
|
162
|
-
* order left, bottom, right, top in WGS84
|
|
163
|
-
*
|
|
164
|
-
* @generated from field: repeated double bounds = 8;
|
|
165
|
-
*/
|
|
166
|
-
this.bounds = [];
|
|
167
|
-
/**
|
|
168
|
-
* order longitude, latitude in WGS84
|
|
169
|
-
*
|
|
170
|
-
* @generated from field: repeated double center = 9;
|
|
171
|
-
*/
|
|
172
|
-
this.center = [];
|
|
173
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
174
|
-
}
|
|
175
|
-
static fromBinary(bytes, options) {
|
|
176
|
-
return new TileSetMetadata().fromBinary(bytes, options);
|
|
177
|
-
}
|
|
178
|
-
static fromJson(jsonValue, options) {
|
|
179
|
-
return new TileSetMetadata().fromJson(jsonValue, options);
|
|
180
|
-
}
|
|
181
|
-
static fromJsonString(jsonString, options) {
|
|
182
|
-
return new TileSetMetadata().fromJsonString(jsonString, options);
|
|
183
|
-
}
|
|
184
|
-
static equals(a, b) {
|
|
185
|
-
return protobuf_1.proto3.util.equals(TileSetMetadata, a, b);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
exports.TileSetMetadata = TileSetMetadata;
|
|
189
|
-
TileSetMetadata.runtime = protobuf_1.proto3;
|
|
190
|
-
TileSetMetadata.typeName = "mlt.TileSetMetadata";
|
|
191
|
-
TileSetMetadata.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
192
|
-
{ no: 1, name: "version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
193
|
-
{ no: 2, name: "featureTables", kind: "message", T: FeatureTableSchema, repeated: true },
|
|
194
|
-
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
195
|
-
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
196
|
-
{ no: 5, name: "attribution", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
197
|
-
{ no: 6, name: "minZoom", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
198
|
-
{ no: 7, name: "maxZoom", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
199
|
-
{ no: 8, name: "bounds", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, repeated: true },
|
|
200
|
-
{ no: 9, name: "center", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, repeated: true },
|
|
201
|
-
]);
|
|
202
|
-
/**
|
|
203
|
-
* @generated from message mlt.FeatureTableSchema
|
|
204
|
-
*/
|
|
205
|
-
class FeatureTableSchema extends protobuf_1.Message {
|
|
206
|
-
constructor(data) {
|
|
207
|
-
super();
|
|
208
|
-
/**
|
|
209
|
-
* @generated from field: string name = 1;
|
|
210
|
-
*/
|
|
211
|
-
this.name = "";
|
|
212
|
-
/**
|
|
213
|
-
* @generated from field: repeated mlt.Column columns = 2;
|
|
214
|
-
*/
|
|
215
|
-
this.columns = [];
|
|
216
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
217
|
-
}
|
|
218
|
-
static fromBinary(bytes, options) {
|
|
219
|
-
return new FeatureTableSchema().fromBinary(bytes, options);
|
|
220
|
-
}
|
|
221
|
-
static fromJson(jsonValue, options) {
|
|
222
|
-
return new FeatureTableSchema().fromJson(jsonValue, options);
|
|
223
|
-
}
|
|
224
|
-
static fromJsonString(jsonString, options) {
|
|
225
|
-
return new FeatureTableSchema().fromJsonString(jsonString, options);
|
|
226
|
-
}
|
|
227
|
-
static equals(a, b) {
|
|
228
|
-
return protobuf_1.proto3.util.equals(FeatureTableSchema, a, b);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
exports.FeatureTableSchema = FeatureTableSchema;
|
|
232
|
-
FeatureTableSchema.runtime = protobuf_1.proto3;
|
|
233
|
-
FeatureTableSchema.typeName = "mlt.FeatureTableSchema";
|
|
234
|
-
FeatureTableSchema.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
235
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
236
|
-
{ no: 2, name: "columns", kind: "message", T: Column, repeated: true },
|
|
237
|
-
]);
|
|
238
|
-
/**
|
|
239
|
-
* Column are top-level types in the schema
|
|
240
|
-
*
|
|
241
|
-
* @generated from message mlt.Column
|
|
242
|
-
*/
|
|
243
|
-
class Column extends protobuf_1.Message {
|
|
244
|
-
constructor(data) {
|
|
245
|
-
super();
|
|
246
|
-
/**
|
|
247
|
-
* @generated from field: string name = 1;
|
|
248
|
-
*/
|
|
249
|
-
this.name = "";
|
|
250
|
-
/**
|
|
251
|
-
* specifies if the values are optional in the column and a present stream should be used
|
|
252
|
-
*
|
|
253
|
-
* @generated from field: bool nullable = 2;
|
|
254
|
-
*/
|
|
255
|
-
this.nullable = false;
|
|
256
|
-
/**
|
|
257
|
-
* @generated from field: mlt.ColumnScope columnScope = 3;
|
|
258
|
-
*/
|
|
259
|
-
this.columnScope = ColumnScope.FEATURE;
|
|
260
|
-
/**
|
|
261
|
-
* @generated from oneof mlt.Column.type
|
|
262
|
-
*/
|
|
263
|
-
this.type = { case: undefined };
|
|
264
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
265
|
-
}
|
|
266
|
-
static fromBinary(bytes, options) {
|
|
267
|
-
return new Column().fromBinary(bytes, options);
|
|
268
|
-
}
|
|
269
|
-
static fromJson(jsonValue, options) {
|
|
270
|
-
return new Column().fromJson(jsonValue, options);
|
|
271
|
-
}
|
|
272
|
-
static fromJsonString(jsonString, options) {
|
|
273
|
-
return new Column().fromJsonString(jsonString, options);
|
|
274
|
-
}
|
|
275
|
-
static equals(a, b) {
|
|
276
|
-
return protobuf_1.proto3.util.equals(Column, a, b);
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
exports.Column = Column;
|
|
280
|
-
Column.runtime = protobuf_1.proto3;
|
|
281
|
-
Column.typeName = "mlt.Column";
|
|
282
|
-
Column.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
283
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
284
|
-
{ no: 2, name: "nullable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
285
|
-
{ no: 3, name: "columnScope", kind: "enum", T: protobuf_1.proto3.getEnumType(ColumnScope) },
|
|
286
|
-
{ no: 4, name: "scalarType", kind: "message", T: ScalarColumn, oneof: "type" },
|
|
287
|
-
{ no: 5, name: "complexType", kind: "message", T: ComplexColumn, oneof: "type" },
|
|
288
|
-
]);
|
|
289
|
-
/**
|
|
290
|
-
* @generated from message mlt.ScalarColumn
|
|
291
|
-
*/
|
|
292
|
-
class ScalarColumn extends protobuf_1.Message {
|
|
293
|
-
constructor(data) {
|
|
294
|
-
super();
|
|
295
|
-
/**
|
|
296
|
-
* this belongs elsewhere, but is here for now
|
|
297
|
-
*
|
|
298
|
-
* @generated from field: bool longID = 1;
|
|
299
|
-
*/
|
|
300
|
-
this.longID = false;
|
|
301
|
-
/**
|
|
302
|
-
* @generated from oneof mlt.ScalarColumn.type
|
|
303
|
-
*/
|
|
304
|
-
this.type = { case: undefined };
|
|
305
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
306
|
-
}
|
|
307
|
-
static fromBinary(bytes, options) {
|
|
308
|
-
return new ScalarColumn().fromBinary(bytes, options);
|
|
309
|
-
}
|
|
310
|
-
static fromJson(jsonValue, options) {
|
|
311
|
-
return new ScalarColumn().fromJson(jsonValue, options);
|
|
312
|
-
}
|
|
313
|
-
static fromJsonString(jsonString, options) {
|
|
314
|
-
return new ScalarColumn().fromJsonString(jsonString, options);
|
|
315
|
-
}
|
|
316
|
-
static equals(a, b) {
|
|
317
|
-
return protobuf_1.proto3.util.equals(ScalarColumn, a, b);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
exports.ScalarColumn = ScalarColumn;
|
|
321
|
-
ScalarColumn.runtime = protobuf_1.proto3;
|
|
322
|
-
ScalarColumn.typeName = "mlt.ScalarColumn";
|
|
323
|
-
ScalarColumn.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
324
|
-
{ no: 1, name: "longID", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
325
|
-
{ no: 4, name: "physicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(ScalarType), oneof: "type" },
|
|
326
|
-
{ no: 5, name: "logicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(LogicalScalarType), oneof: "type" },
|
|
327
|
-
]);
|
|
328
|
-
/**
|
|
329
|
-
* The type tree is flattened in to a list via a pre-order traversal
|
|
330
|
-
* Represents a column if it is a root (top-level) type or a child of a nested type
|
|
331
|
-
*
|
|
332
|
-
* @generated from message mlt.ComplexColumn
|
|
333
|
-
*/
|
|
334
|
-
class ComplexColumn extends protobuf_1.Message {
|
|
335
|
-
constructor(data) {
|
|
336
|
-
super();
|
|
337
|
-
/**
|
|
338
|
-
* @generated from oneof mlt.ComplexColumn.type
|
|
339
|
-
*/
|
|
340
|
-
this.type = { case: undefined };
|
|
341
|
-
/**
|
|
342
|
-
* The complex type Geometry and the logical type BINARY have no children since there layout is implicit known.
|
|
343
|
-
* RangeMap has only one child specifying the type of the value since the key is always a vec2<double>.
|
|
344
|
-
*
|
|
345
|
-
* @generated from field: repeated mlt.Field children = 6;
|
|
346
|
-
*/
|
|
347
|
-
this.children = [];
|
|
348
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
349
|
-
}
|
|
350
|
-
static fromBinary(bytes, options) {
|
|
351
|
-
return new ComplexColumn().fromBinary(bytes, options);
|
|
352
|
-
}
|
|
353
|
-
static fromJson(jsonValue, options) {
|
|
354
|
-
return new ComplexColumn().fromJson(jsonValue, options);
|
|
355
|
-
}
|
|
356
|
-
static fromJsonString(jsonString, options) {
|
|
357
|
-
return new ComplexColumn().fromJsonString(jsonString, options);
|
|
358
|
-
}
|
|
359
|
-
static equals(a, b) {
|
|
360
|
-
return protobuf_1.proto3.util.equals(ComplexColumn, a, b);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
exports.ComplexColumn = ComplexColumn;
|
|
364
|
-
ComplexColumn.runtime = protobuf_1.proto3;
|
|
365
|
-
ComplexColumn.typeName = "mlt.ComplexColumn";
|
|
366
|
-
ComplexColumn.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
367
|
-
{ no: 4, name: "physicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(ComplexType), oneof: "type" },
|
|
368
|
-
{ no: 5, name: "logicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(LogicalComplexType), oneof: "type" },
|
|
369
|
-
{ no: 6, name: "children", kind: "message", T: Field, repeated: true },
|
|
370
|
-
]);
|
|
371
|
-
/**
|
|
372
|
-
* Fields define nested or leaf types in the schema as part of a complex type definition
|
|
373
|
-
*
|
|
374
|
-
* @generated from message mlt.Field
|
|
375
|
-
*/
|
|
376
|
-
class Field extends protobuf_1.Message {
|
|
377
|
-
constructor(data) {
|
|
378
|
-
super();
|
|
379
|
-
/**
|
|
380
|
-
* @generated from oneof mlt.Field.type
|
|
381
|
-
*/
|
|
382
|
-
this.type = { case: undefined };
|
|
383
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
384
|
-
}
|
|
385
|
-
static fromBinary(bytes, options) {
|
|
386
|
-
return new Field().fromBinary(bytes, options);
|
|
387
|
-
}
|
|
388
|
-
static fromJson(jsonValue, options) {
|
|
389
|
-
return new Field().fromJson(jsonValue, options);
|
|
390
|
-
}
|
|
391
|
-
static fromJsonString(jsonString, options) {
|
|
392
|
-
return new Field().fromJsonString(jsonString, options);
|
|
393
|
-
}
|
|
394
|
-
static equals(a, b) {
|
|
395
|
-
return protobuf_1.proto3.util.equals(Field, a, b);
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
exports.Field = Field;
|
|
399
|
-
Field.runtime = protobuf_1.proto3;
|
|
400
|
-
Field.typeName = "mlt.Field";
|
|
401
|
-
Field.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
402
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
403
|
-
{ no: 2, name: "nullable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
404
|
-
{ no: 3, name: "scalarField", kind: "message", T: ScalarField, oneof: "type" },
|
|
405
|
-
{ no: 4, name: "complexField", kind: "message", T: ComplexField, oneof: "type" },
|
|
406
|
-
]);
|
|
407
|
-
/**
|
|
408
|
-
* @generated from message mlt.ScalarField
|
|
409
|
-
*/
|
|
410
|
-
class ScalarField extends protobuf_1.Message {
|
|
411
|
-
constructor(data) {
|
|
412
|
-
super();
|
|
413
|
-
/**
|
|
414
|
-
* @generated from oneof mlt.ScalarField.type
|
|
415
|
-
*/
|
|
416
|
-
this.type = { case: undefined };
|
|
417
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
418
|
-
}
|
|
419
|
-
static fromBinary(bytes, options) {
|
|
420
|
-
return new ScalarField().fromBinary(bytes, options);
|
|
421
|
-
}
|
|
422
|
-
static fromJson(jsonValue, options) {
|
|
423
|
-
return new ScalarField().fromJson(jsonValue, options);
|
|
424
|
-
}
|
|
425
|
-
static fromJsonString(jsonString, options) {
|
|
426
|
-
return new ScalarField().fromJsonString(jsonString, options);
|
|
427
|
-
}
|
|
428
|
-
static equals(a, b) {
|
|
429
|
-
return protobuf_1.proto3.util.equals(ScalarField, a, b);
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
exports.ScalarField = ScalarField;
|
|
433
|
-
ScalarField.runtime = protobuf_1.proto3;
|
|
434
|
-
ScalarField.typeName = "mlt.ScalarField";
|
|
435
|
-
ScalarField.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
436
|
-
{ no: 1, name: "physicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(ScalarType), oneof: "type" },
|
|
437
|
-
{ no: 2, name: "logicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(LogicalScalarType), oneof: "type" },
|
|
438
|
-
]);
|
|
439
|
-
/**
|
|
440
|
-
* @generated from message mlt.ComplexField
|
|
441
|
-
*/
|
|
442
|
-
class ComplexField extends protobuf_1.Message {
|
|
443
|
-
constructor(data) {
|
|
444
|
-
super();
|
|
445
|
-
/**
|
|
446
|
-
* @generated from oneof mlt.ComplexField.type
|
|
447
|
-
*/
|
|
448
|
-
this.type = { case: undefined };
|
|
449
|
-
/**
|
|
450
|
-
* @generated from field: repeated mlt.Field children = 3;
|
|
451
|
-
*/
|
|
452
|
-
this.children = [];
|
|
453
|
-
protobuf_1.proto3.util.initPartial(data, this);
|
|
454
|
-
}
|
|
455
|
-
static fromBinary(bytes, options) {
|
|
456
|
-
return new ComplexField().fromBinary(bytes, options);
|
|
457
|
-
}
|
|
458
|
-
static fromJson(jsonValue, options) {
|
|
459
|
-
return new ComplexField().fromJson(jsonValue, options);
|
|
460
|
-
}
|
|
461
|
-
static fromJsonString(jsonString, options) {
|
|
462
|
-
return new ComplexField().fromJsonString(jsonString, options);
|
|
463
|
-
}
|
|
464
|
-
static equals(a, b) {
|
|
465
|
-
return protobuf_1.proto3.util.equals(ComplexField, a, b);
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
exports.ComplexField = ComplexField;
|
|
469
|
-
ComplexField.runtime = protobuf_1.proto3;
|
|
470
|
-
ComplexField.typeName = "mlt.ComplexField";
|
|
471
|
-
ComplexField.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
472
|
-
{ no: 1, name: "physicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(ComplexType), oneof: "type" },
|
|
473
|
-
{ no: 2, name: "logicalType", kind: "enum", T: protobuf_1.proto3.getEnumType(LogicalComplexType), oneof: "type" },
|
|
474
|
-
{ no: 3, name: "children", kind: "message", T: Field, repeated: true },
|
|
475
|
-
]);
|
|
476
|
-
//# sourceMappingURL=tilesetMetadata.g.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tilesetMetadata.g.js","sourceRoot":"","sources":["../../../src/metadata/tileset/tilesetMetadata.g.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=constSelectionVector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constSelectionVector.js","sourceRoot":"","sources":["../../../src/vector/filter/constSelectionVector.ts"],"names":[],"mappings":""}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { type SelectionVector } from "./selectionVector";
|
|
2
|
-
export declare class FlatSelectionVector implements SelectionVector {
|
|
3
|
-
private _selectionVector;
|
|
4
|
-
private _limit?;
|
|
5
|
-
/**
|
|
6
|
-
* @param _limit In write mode the limit of a Buffer is the limit of how much data you can write into the buffer.
|
|
7
|
-
* In write mode the limit is equal to the capacity of the Buffer.
|
|
8
|
-
*/
|
|
9
|
-
constructor(_selectionVector: number[], _limit?: number);
|
|
10
|
-
getIndex(index: number): number;
|
|
11
|
-
setIndex(index: number, value: number): void;
|
|
12
|
-
setLimit(limit: number): void;
|
|
13
|
-
selectionValues(): number[];
|
|
14
|
-
get capacity(): number;
|
|
15
|
-
get limit(): number;
|
|
16
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FlatSelectionVector = void 0;
|
|
4
|
-
class FlatSelectionVector {
|
|
5
|
-
/**
|
|
6
|
-
* @param _limit In write mode the limit of a Buffer is the limit of how much data you can write into the buffer.
|
|
7
|
-
* In write mode the limit is equal to the capacity of the Buffer.
|
|
8
|
-
*/
|
|
9
|
-
constructor(_selectionVector, _limit) {
|
|
10
|
-
this._selectionVector = _selectionVector;
|
|
11
|
-
this._limit = _limit;
|
|
12
|
-
if (!this._limit) {
|
|
13
|
-
this._limit = this._selectionVector.length;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
getIndex(index) {
|
|
17
|
-
if (index >= this._limit) {
|
|
18
|
-
throw new Error("Index out of bounds");
|
|
19
|
-
}
|
|
20
|
-
return this._selectionVector[index];
|
|
21
|
-
}
|
|
22
|
-
setIndex(index, value) {
|
|
23
|
-
if (index >= this._limit) {
|
|
24
|
-
throw new Error("Index out of bounds");
|
|
25
|
-
}
|
|
26
|
-
this._selectionVector[index] = value;
|
|
27
|
-
}
|
|
28
|
-
setLimit(limit) {
|
|
29
|
-
this._limit = limit;
|
|
30
|
-
}
|
|
31
|
-
selectionValues() {
|
|
32
|
-
return this._selectionVector;
|
|
33
|
-
}
|
|
34
|
-
get capacity() {
|
|
35
|
-
return this._selectionVector.length;
|
|
36
|
-
}
|
|
37
|
-
get limit() {
|
|
38
|
-
return this._limit;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
exports.FlatSelectionVector = FlatSelectionVector;
|
|
42
|
-
//# sourceMappingURL=flatSelectionVector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"flatSelectionVector.js","sourceRoot":"","sources":["../../../src/vector/filter/flatSelectionVector.ts"],"names":[],"mappings":";;;AAGA,MAAa,mBAAmB;IAC5B;;;OAGG;IACH,YAAoB,gBAA0B,EAAU,MAAe;QAAnD,qBAAgB,GAAhB,gBAAgB,CAAU;QAAU,WAAM,GAAN,MAAM,CAAS;QACnE,IAAG,CAAC,IAAI,CAAC,MAAM,EAAC,CAAC;YACb,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;QAC/C,CAAC;IACL,CAAC;IAED,QAAQ,CAAC,KAAa;QAClB,IAAG,KAAK,IAAI,IAAI,CAAC,MAAM,EAAC,CAAC;YACrB,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAC3C,CAAC;QAED,OAAO,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;IACxC,CAAC;IAED,QAAQ,CAAC,KAAa,EAAE,KAAa;QACjC,IAAG,KAAK,IAAI,IAAI,CAAC,MAAM,EAAC,CAAC;YACrB,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAC3C,CAAC;QAED,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC;IACzC,CAAC;IAED,QAAQ,CAAC,KAAa;QAClB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;IACxB,CAAC;IAED,eAAe;QACX,OAAO,IAAI,CAAC,gBAAgB,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;IACxC,CAAC;IAED,IAAI,KAAK;QACL,OAAO,IAAI,CAAC,MAAM,CAAC;IACvB,CAAC;CAEJ;AA3CD,kDA2CC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"selectionVector.js","sourceRoot":"","sources":["../../../src/vector/filter/selectionVector.ts"],"names":[],"mappings":""}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type SelectionVector } from "./selectionVector";
|
|
2
|
-
import { FlatSelectionVector } from "./flatSelectionVector";
|
|
3
|
-
import type BitVector from "../flat/bitVector";
|
|
4
|
-
export declare function createSelectionVector(size: number): FlatSelectionVector;
|
|
5
|
-
export declare function createNullableSelectionVector(size: number, nullabilityBuffer: BitVector): FlatSelectionVector;
|
|
6
|
-
export declare function updateSelectionVector(selectionVector: SelectionVector, nullabilityBuffer: BitVector): void;
|
|
7
|
-
export declare function updateNullableSelectionVector(selectionVector: SelectionVector, nullabilityBuffer: BitVector): void;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createSelectionVector = createSelectionVector;
|
|
4
|
-
exports.createNullableSelectionVector = createNullableSelectionVector;
|
|
5
|
-
exports.updateSelectionVector = updateSelectionVector;
|
|
6
|
-
exports.updateNullableSelectionVector = updateNullableSelectionVector;
|
|
7
|
-
const flatSelectionVector_1 = require("./flatSelectionVector");
|
|
8
|
-
function createSelectionVector(size) {
|
|
9
|
-
const selectionVector = new Array(size);
|
|
10
|
-
for (let i = 0; i < size; i++) {
|
|
11
|
-
selectionVector[i] = i;
|
|
12
|
-
}
|
|
13
|
-
return new flatSelectionVector_1.FlatSelectionVector(selectionVector);
|
|
14
|
-
}
|
|
15
|
-
function createNullableSelectionVector(size, nullabilityBuffer) {
|
|
16
|
-
const selectionVector = [];
|
|
17
|
-
for (let i = 0; i < size; i++) {
|
|
18
|
-
if (nullabilityBuffer || nullabilityBuffer.get(i)) {
|
|
19
|
-
selectionVector.push(i);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
return new flatSelectionVector_1.FlatSelectionVector(selectionVector);
|
|
23
|
-
}
|
|
24
|
-
function updateSelectionVector(selectionVector, nullabilityBuffer) {
|
|
25
|
-
const buffer = selectionVector.selectionValues();
|
|
26
|
-
let limit = 0;
|
|
27
|
-
for (let i = 0; i < selectionVector.limit; i++) {
|
|
28
|
-
if (!nullabilityBuffer || nullabilityBuffer.get(i)) {
|
|
29
|
-
buffer[limit++] = buffer[i];
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
selectionVector.setLimit(limit);
|
|
33
|
-
}
|
|
34
|
-
function updateNullableSelectionVector(selectionVector, nullabilityBuffer) {
|
|
35
|
-
const buffer = selectionVector.selectionValues();
|
|
36
|
-
let limit = 0;
|
|
37
|
-
for (let i = 0; i < selectionVector.limit; i++) {
|
|
38
|
-
if (!nullabilityBuffer || nullabilityBuffer.get(i)) {
|
|
39
|
-
buffer[limit++] = buffer[i];
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
selectionVector.setLimit(limit);
|
|
43
|
-
}
|
|
44
|
-
//# sourceMappingURL=selectionVectorUtils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"selectionVectorUtils.js","sourceRoot":"","sources":["../../../src/vector/filter/selectionVectorUtils.ts"],"names":[],"mappings":";;AAIA,sDAMC;AAED,sEAQC;AAED,sDAUC;AAED,sEAUC;AA3CD,+DAA4D;AAG5D,SAAgB,qBAAqB,CAAC,IAAY;IAC9C,MAAM,eAAe,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC;IACxC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;QAC5B,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAC3B,CAAC;IACD,OAAO,IAAI,yCAAmB,CAAC,eAAe,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,6BAA6B,CAAC,IAAY,EAAE,iBAA4B;IACpF,MAAM,eAAe,GAAG,EAAE,CAAC;IAC3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;QAC5B,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;YAChD,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC5B,CAAC;IACL,CAAC;IACD,OAAO,IAAI,yCAAmB,CAAC,eAAe,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,qBAAqB,CAAC,eAAgC,EAAE,iBAA4B;IAChG,MAAM,MAAM,GAAG,eAAe,CAAC,eAAe,EAAE,CAAC;IACjD,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QAC7C,IAAI,CAAC,iBAAiB,IAAI,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;YACjD,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED,eAAe,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;AACpC,CAAC;AAED,SAAgB,6BAA6B,CAAC,eAAgC,EAAE,iBAA4B;IACxG,MAAM,MAAM,GAAG,eAAe,CAAC,eAAe,EAAE,CAAC;IACjD,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QAC7C,IAAI,CAAC,iBAAiB,IAAI,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;YACjD,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAChC,CAAC;IACL,CAAC;IAED,eAAe,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;AACpC,CAAC"}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=sequenceSelectionVector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequenceSelectionVector.js","sourceRoot":"","sources":["../../../src/vector/filter/sequenceSelectionVector.ts"],"names":[],"mappings":""}
|