@loaders.gl/wkt 3.4.14 → 3.4.15
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/es5/bundle.js +1 -1
- package/dist/es5/bundle.js.map +1 -1
- package/dist/es5/index.js +6 -6
- package/dist/es5/lib/encode-wkb.js +62 -176
- package/dist/es5/lib/encode-wkb.js.map +1 -1
- package/dist/es5/lib/parse-wkb.js +75 -104
- package/dist/es5/lib/parse-wkb.js.map +1 -1
- package/dist/es5/lib/parse-wkt.js +24 -24
- package/dist/es5/lib/parse-wkt.js.map +1 -1
- package/dist/es5/lib/utils/binary-writer.js +101 -140
- package/dist/es5/lib/utils/binary-writer.js.map +1 -1
- package/dist/es5/lib/utils/version.js +1 -1
- package/dist/es5/lib/utils/version.js.map +1 -1
- package/dist/es5/wkb-loader.js +7 -27
- package/dist/es5/wkb-loader.js.map +1 -1
- package/dist/es5/wkb-writer.js +1 -1
- package/dist/es5/wkb-writer.js.map +1 -1
- package/dist/es5/wkt-loader.js +5 -25
- package/dist/es5/wkt-loader.js.map +1 -1
- package/dist/es5/wkt-writer.js +1 -1
- package/dist/es5/wkt-writer.js.map +1 -1
- package/dist/esm/lib/utils/version.js +1 -1
- package/dist/wkt-worker.js +1 -1
- package/package.json +4 -4
|
@@ -5,14 +5,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
9
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
10
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
(0, _classCallCheck2.default)(this, BinaryWriter);
|
|
9
|
+
const LE = true;
|
|
10
|
+
const BE = false;
|
|
11
|
+
class BinaryWriter {
|
|
12
|
+
constructor(size, allowResize) {
|
|
16
13
|
(0, _defineProperty2.default)(this, "arrayBuffer", void 0);
|
|
17
14
|
(0, _defineProperty2.default)(this, "dataView", void 0);
|
|
18
15
|
(0, _defineProperty2.default)(this, "byteOffset", 0);
|
|
@@ -22,140 +19,104 @@ var BinaryWriter = function () {
|
|
|
22
19
|
this.byteOffset = 0;
|
|
23
20
|
this.allowResize = allowResize || false;
|
|
24
21
|
}
|
|
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
|
-
value
|
|
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
|
-
value
|
|
98
|
-
this.
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
this.dataView.setFloat64(this.byteOffset, value, BE);
|
|
121
|
-
this.byteOffset += 8;
|
|
122
|
-
}
|
|
123
|
-
}, {
|
|
124
|
-
key: "writeVarInt",
|
|
125
|
-
value: function writeVarInt(value) {
|
|
126
|
-
var length = 1;
|
|
127
|
-
while ((value & 0xffffff80) !== 0) {
|
|
128
|
-
this.writeUInt8(value & 0x7f | 0x80);
|
|
129
|
-
value >>>= 7;
|
|
130
|
-
length++;
|
|
131
|
-
}
|
|
132
|
-
this.writeUInt8(value & 0x7f);
|
|
133
|
-
return length;
|
|
134
|
-
}
|
|
135
|
-
}, {
|
|
136
|
-
key: "writeBuffer",
|
|
137
|
-
value: function writeBuffer(arrayBuffer) {
|
|
138
|
-
this._ensureSize(arrayBuffer.byteLength);
|
|
139
|
-
var tempArray = new Uint8Array(this.arrayBuffer);
|
|
140
|
-
tempArray.set(new Uint8Array(arrayBuffer), this.byteOffset);
|
|
141
|
-
this.byteOffset += arrayBuffer.byteLength;
|
|
142
|
-
}
|
|
143
|
-
}, {
|
|
144
|
-
key: "_ensureSize",
|
|
145
|
-
value: function _ensureSize(size) {
|
|
146
|
-
if (this.arrayBuffer.byteLength < this.byteOffset + size) {
|
|
147
|
-
if (this.allowResize) {
|
|
148
|
-
var newArrayBuffer = new ArrayBuffer(this.byteOffset + size);
|
|
149
|
-
var tempArray = new Uint8Array(newArrayBuffer);
|
|
150
|
-
tempArray.set(new Uint8Array(this.arrayBuffer));
|
|
151
|
-
this.arrayBuffer = newArrayBuffer;
|
|
152
|
-
} else {
|
|
153
|
-
throw new Error('BinaryWriter overflow');
|
|
154
|
-
}
|
|
22
|
+
writeUInt8(value) {
|
|
23
|
+
this._ensureSize(1);
|
|
24
|
+
this.dataView.setUint8(this.byteOffset, value);
|
|
25
|
+
this.byteOffset += 1;
|
|
26
|
+
}
|
|
27
|
+
writeUInt16LE(value) {
|
|
28
|
+
this._ensureSize(2);
|
|
29
|
+
this.dataView.setUint16(this.byteOffset, value, LE);
|
|
30
|
+
this.byteOffset += 2;
|
|
31
|
+
}
|
|
32
|
+
writeUInt16BE(value) {
|
|
33
|
+
this._ensureSize(2);
|
|
34
|
+
this.dataView.setUint16(this.byteOffset, value, BE);
|
|
35
|
+
this.byteOffset += 2;
|
|
36
|
+
}
|
|
37
|
+
writeUInt32LE(value) {
|
|
38
|
+
this._ensureSize(4);
|
|
39
|
+
this.dataView.setUint32(this.byteOffset, value, LE);
|
|
40
|
+
this.byteOffset += 4;
|
|
41
|
+
}
|
|
42
|
+
writeUInt32BE(value) {
|
|
43
|
+
this._ensureSize(4);
|
|
44
|
+
this.dataView.setUint32(this.byteOffset, value, BE);
|
|
45
|
+
this.byteOffset += 4;
|
|
46
|
+
}
|
|
47
|
+
writeInt8(value) {
|
|
48
|
+
this._ensureSize(1);
|
|
49
|
+
this.dataView.setInt8(this.byteOffset, value);
|
|
50
|
+
this.byteOffset += 1;
|
|
51
|
+
}
|
|
52
|
+
writeInt16LE(value) {
|
|
53
|
+
this._ensureSize(2);
|
|
54
|
+
this.dataView.setInt16(this.byteOffset, value, LE);
|
|
55
|
+
this.byteOffset += 2;
|
|
56
|
+
}
|
|
57
|
+
writeInt16BE(value) {
|
|
58
|
+
this._ensureSize(2);
|
|
59
|
+
this.dataView.setInt16(this.byteOffset, value, BE);
|
|
60
|
+
this.byteOffset += 2;
|
|
61
|
+
}
|
|
62
|
+
writeInt32LE(value) {
|
|
63
|
+
this._ensureSize(4);
|
|
64
|
+
this.dataView.setInt32(this.byteOffset, value, LE);
|
|
65
|
+
this.byteOffset += 4;
|
|
66
|
+
}
|
|
67
|
+
writeInt32BE(value) {
|
|
68
|
+
this._ensureSize(4);
|
|
69
|
+
this.dataView.setInt32(this.byteOffset, value, BE);
|
|
70
|
+
this.byteOffset += 4;
|
|
71
|
+
}
|
|
72
|
+
writeFloatLE(value) {
|
|
73
|
+
this._ensureSize(4);
|
|
74
|
+
this.dataView.setFloat32(this.byteOffset, value, LE);
|
|
75
|
+
this.byteOffset += 4;
|
|
76
|
+
}
|
|
77
|
+
writeFloatBE(value) {
|
|
78
|
+
this._ensureSize(4);
|
|
79
|
+
this.dataView.setFloat32(this.byteOffset, value, BE);
|
|
80
|
+
this.byteOffset += 4;
|
|
81
|
+
}
|
|
82
|
+
writeDoubleLE(value) {
|
|
83
|
+
this._ensureSize(8);
|
|
84
|
+
this.dataView.setFloat64(this.byteOffset, value, LE);
|
|
85
|
+
this.byteOffset += 8;
|
|
86
|
+
}
|
|
87
|
+
writeDoubleBE(value) {
|
|
88
|
+
this._ensureSize(8);
|
|
89
|
+
this.dataView.setFloat64(this.byteOffset, value, BE);
|
|
90
|
+
this.byteOffset += 8;
|
|
91
|
+
}
|
|
92
|
+
writeVarInt(value) {
|
|
93
|
+
let length = 1;
|
|
94
|
+
while ((value & 0xffffff80) !== 0) {
|
|
95
|
+
this.writeUInt8(value & 0x7f | 0x80);
|
|
96
|
+
value >>>= 7;
|
|
97
|
+
length++;
|
|
98
|
+
}
|
|
99
|
+
this.writeUInt8(value & 0x7f);
|
|
100
|
+
return length;
|
|
101
|
+
}
|
|
102
|
+
writeBuffer(arrayBuffer) {
|
|
103
|
+
this._ensureSize(arrayBuffer.byteLength);
|
|
104
|
+
const tempArray = new Uint8Array(this.arrayBuffer);
|
|
105
|
+
tempArray.set(new Uint8Array(arrayBuffer), this.byteOffset);
|
|
106
|
+
this.byteOffset += arrayBuffer.byteLength;
|
|
107
|
+
}
|
|
108
|
+
_ensureSize(size) {
|
|
109
|
+
if (this.arrayBuffer.byteLength < this.byteOffset + size) {
|
|
110
|
+
if (this.allowResize) {
|
|
111
|
+
const newArrayBuffer = new ArrayBuffer(this.byteOffset + size);
|
|
112
|
+
const tempArray = new Uint8Array(newArrayBuffer);
|
|
113
|
+
tempArray.set(new Uint8Array(this.arrayBuffer));
|
|
114
|
+
this.arrayBuffer = newArrayBuffer;
|
|
115
|
+
} else {
|
|
116
|
+
throw new Error('BinaryWriter overflow');
|
|
155
117
|
}
|
|
156
118
|
}
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
}();
|
|
119
|
+
}
|
|
120
|
+
}
|
|
160
121
|
exports.default = BinaryWriter;
|
|
161
122
|
//# sourceMappingURL=binary-writer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"binary-writer.js","names":["LE","BE","BinaryWriter","size","allowResize","
|
|
1
|
+
{"version":3,"file":"binary-writer.js","names":["LE","BE","BinaryWriter","constructor","size","allowResize","_defineProperty2","default","arrayBuffer","ArrayBuffer","dataView","DataView","byteOffset","writeUInt8","value","_ensureSize","setUint8","writeUInt16LE","setUint16","writeUInt16BE","writeUInt32LE","setUint32","writeUInt32BE","writeInt8","setInt8","writeInt16LE","setInt16","writeInt16BE","writeInt32LE","setInt32","writeInt32BE","writeFloatLE","setFloat32","writeFloatBE","writeDoubleLE","setFloat64","writeDoubleBE","writeVarInt","length","writeBuffer","byteLength","tempArray","Uint8Array","set","newArrayBuffer","Error","exports"],"sources":["../../../../src/lib/utils/binary-writer.ts"],"sourcesContent":["// loaders.gl, MIT license\n// Forked from https://github.com/cschwarz/wkx under MIT license, Copyright (c) 2013 Christian Schwarz\n\nconst LE = true;\nconst BE = false;\n\nexport default class BinaryWriter {\n arrayBuffer: ArrayBuffer;\n dataView: DataView;\n byteOffset: number = 0;\n allowResize: boolean = false;\n\n constructor(size: number, allowResize?: boolean) {\n this.arrayBuffer = new ArrayBuffer(size);\n this.dataView = new DataView(this.arrayBuffer);\n this.byteOffset = 0;\n this.allowResize = allowResize || false;\n }\n\n writeUInt8(value: number): void {\n this._ensureSize(1);\n this.dataView.setUint8(this.byteOffset, value);\n this.byteOffset += 1;\n }\n writeUInt16LE(value: number): void {\n this._ensureSize(2);\n this.dataView.setUint16(this.byteOffset, value, LE);\n this.byteOffset += 2;\n }\n writeUInt16BE(value: number): void {\n this._ensureSize(2);\n this.dataView.setUint16(this.byteOffset, value, BE);\n this.byteOffset += 2;\n }\n writeUInt32LE(value: number): void {\n this._ensureSize(4);\n this.dataView.setUint32(this.byteOffset, value, LE);\n this.byteOffset += 4;\n }\n writeUInt32BE(value: number): void {\n this._ensureSize(4);\n this.dataView.setUint32(this.byteOffset, value, BE);\n this.byteOffset += 4;\n }\n writeInt8(value: number): void {\n this._ensureSize(1);\n this.dataView.setInt8(this.byteOffset, value);\n this.byteOffset += 1;\n }\n writeInt16LE(value: number): void {\n this._ensureSize(2);\n this.dataView.setInt16(this.byteOffset, value, LE);\n this.byteOffset += 2;\n }\n writeInt16BE(value: number): void {\n this._ensureSize(2);\n this.dataView.setInt16(this.byteOffset, value, BE);\n this.byteOffset += 2;\n }\n writeInt32LE(value: number): void {\n this._ensureSize(4);\n this.dataView.setInt32(this.byteOffset, value, LE);\n this.byteOffset += 4;\n }\n writeInt32BE(value: number): void {\n this._ensureSize(4);\n this.dataView.setInt32(this.byteOffset, value, BE);\n this.byteOffset += 4;\n }\n writeFloatLE(value: number): void {\n this._ensureSize(4);\n this.dataView.setFloat32(this.byteOffset, value, LE);\n this.byteOffset += 4;\n }\n writeFloatBE(value: number): void {\n this._ensureSize(4);\n this.dataView.setFloat32(this.byteOffset, value, BE);\n this.byteOffset += 4;\n }\n writeDoubleLE(value: number): void {\n this._ensureSize(8);\n this.dataView.setFloat64(this.byteOffset, value, LE);\n this.byteOffset += 8;\n }\n writeDoubleBE(value: number): void {\n this._ensureSize(8);\n this.dataView.setFloat64(this.byteOffset, value, BE);\n this.byteOffset += 8;\n }\n\n /** A varint uses a variable number of bytes */\n writeVarInt(value: number): number {\n // TODO - ensure size?\n let length = 1;\n while ((value & 0xffffff80) !== 0) {\n this.writeUInt8((value & 0x7f) | 0x80);\n value >>>= 7;\n length++;\n }\n this.writeUInt8(value & 0x7f);\n return length;\n }\n\n /** Append another ArrayBuffer to this ArrayBuffer */\n writeBuffer(arrayBuffer: ArrayBuffer): void {\n this._ensureSize(arrayBuffer.byteLength);\n const tempArray = new Uint8Array(this.arrayBuffer);\n tempArray.set(new Uint8Array(arrayBuffer), this.byteOffset);\n this.byteOffset += arrayBuffer.byteLength;\n }\n\n /** Resizes this.arrayBuffer if not enough space */\n _ensureSize(size: number) {\n if (this.arrayBuffer.byteLength < this.byteOffset + size) {\n if (this.allowResize) {\n const newArrayBuffer = new ArrayBuffer(this.byteOffset + size);\n const tempArray = new Uint8Array(newArrayBuffer);\n tempArray.set(new Uint8Array(this.arrayBuffer));\n this.arrayBuffer = newArrayBuffer;\n } else {\n throw new Error('BinaryWriter overflow');\n }\n }\n }\n}\n"],"mappings":"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"}
|
|
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.VERSION = void 0;
|
|
7
|
-
|
|
7
|
+
const VERSION = typeof "3.4.15" !== 'undefined' ? "3.4.15" : 'latest';
|
|
8
8
|
exports.VERSION = VERSION;
|
|
9
9
|
//# sourceMappingURL=version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","names":["VERSION","exports"],"sources":["../../../../src/lib/utils/version.ts"],"sourcesContent":["// Version constant cannot be imported, it needs to correspond to the build version of **this** module.\n// __VERSION__ is injected by babel-plugin-version-inline\n// @ts-ignore TS2304: Cannot find name '__VERSION__'.\nexport const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';\n"],"mappings":";;;;;;AAGO,
|
|
1
|
+
{"version":3,"file":"version.js","names":["VERSION","exports"],"sources":["../../../../src/lib/utils/version.ts"],"sourcesContent":["// Version constant cannot be imported, it needs to correspond to the build version of **this** module.\n// __VERSION__ is injected by babel-plugin-version-inline\n// @ts-ignore TS2304: Cannot find name '__VERSION__'.\nexport const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';\n"],"mappings":";;;;;;AAGO,MAAMA,OAAO,GAAG,eAAkB,KAAK,WAAW,cAAiB,QAAQ;AAACC,OAAA,CAAAD,OAAA,GAAAA,OAAA"}
|
package/dist/es5/wkb-loader.js
CHANGED
|
@@ -5,14 +5,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports._typecheckWKBWorkerLoader = exports._typecheckWKBLoader = exports.WKBWorkerLoader = exports.WKBLoader = void 0;
|
|
8
|
-
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
9
|
-
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
10
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
8
|
var _version = require("./lib/utils/version");
|
|
12
9
|
var _parseWkb = _interopRequireDefault(require("./lib/parse-wkb"));
|
|
13
|
-
|
|
14
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15
|
-
var WKBWorkerLoader = {
|
|
10
|
+
const WKBWorkerLoader = {
|
|
16
11
|
name: 'WKB',
|
|
17
12
|
id: 'wkb',
|
|
18
13
|
module: 'wkt',
|
|
@@ -26,29 +21,14 @@ var WKBWorkerLoader = {
|
|
|
26
21
|
}
|
|
27
22
|
};
|
|
28
23
|
exports.WKBWorkerLoader = WKBWorkerLoader;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
return _regenerator.default.wrap(function _callee$(_context) {
|
|
33
|
-
while (1) switch (_context.prev = _context.next) {
|
|
34
|
-
case 0:
|
|
35
|
-
return _context.abrupt("return", (0, _parseWkb.default)(arrayBuffer));
|
|
36
|
-
case 1:
|
|
37
|
-
case "end":
|
|
38
|
-
return _context.stop();
|
|
39
|
-
}
|
|
40
|
-
}, _callee);
|
|
41
|
-
}));
|
|
42
|
-
function parse(_x) {
|
|
43
|
-
return _parse.apply(this, arguments);
|
|
44
|
-
}
|
|
45
|
-
return parse;
|
|
46
|
-
}(),
|
|
24
|
+
const WKBLoader = {
|
|
25
|
+
...WKBWorkerLoader,
|
|
26
|
+
parse: async arrayBuffer => (0, _parseWkb.default)(arrayBuffer),
|
|
47
27
|
parseSync: _parseWkb.default
|
|
48
|
-
}
|
|
28
|
+
};
|
|
49
29
|
exports.WKBLoader = WKBLoader;
|
|
50
|
-
|
|
30
|
+
const _typecheckWKBWorkerLoader = WKBWorkerLoader;
|
|
51
31
|
exports._typecheckWKBWorkerLoader = _typecheckWKBWorkerLoader;
|
|
52
|
-
|
|
32
|
+
const _typecheckWKBLoader = WKBLoader;
|
|
53
33
|
exports._typecheckWKBLoader = _typecheckWKBLoader;
|
|
54
34
|
//# sourceMappingURL=wkb-loader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wkb-loader.js","names":["_version","require","_parseWkb","_interopRequireDefault","
|
|
1
|
+
{"version":3,"file":"wkb-loader.js","names":["_version","require","_parseWkb","_interopRequireDefault","WKBWorkerLoader","name","id","module","version","VERSION","worker","category","extensions","mimeTypes","options","wkb","exports","WKBLoader","parse","arrayBuffer","parseWKB","parseSync","_typecheckWKBWorkerLoader","_typecheckWKBLoader"],"sources":["../../src/wkb-loader.ts"],"sourcesContent":["import type {Loader, LoaderWithParser} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport parseWKB from './lib/parse-wkb';\n\n/**\n * Worker loader for WKB (Well-Known Binary)\n */\nexport const WKBWorkerLoader = {\n name: 'WKB',\n id: 'wkb',\n module: 'wkt',\n version: VERSION,\n worker: true,\n category: 'geometry',\n extensions: ['wkb'],\n mimeTypes: [],\n options: {\n wkb: {}\n }\n};\n\n/**\n * Loader for WKB (Well-Known Binary)\n */\nexport const WKBLoader = {\n ...WKBWorkerLoader,\n parse: async (arrayBuffer: ArrayBuffer) => parseWKB(arrayBuffer),\n parseSync: parseWKB\n};\n\nexport const _typecheckWKBWorkerLoader: Loader = WKBWorkerLoader;\nexport const _typecheckWKBLoader: LoaderWithParser = WKBLoader;\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,SAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,MAAMG,eAAe,GAAG;EAC7BC,IAAI,EAAE,KAAK;EACXC,EAAE,EAAE,KAAK;EACTC,MAAM,EAAE,KAAK;EACbC,OAAO,EAAEC,gBAAO;EAChBC,MAAM,EAAE,IAAI;EACZC,QAAQ,EAAE,UAAU;EACpBC,UAAU,EAAE,CAAC,KAAK,CAAC;EACnBC,SAAS,EAAE,EAAE;EACbC,OAAO,EAAE;IACPC,GAAG,EAAE,CAAC;EACR;AACF,CAAC;AAACC,OAAA,CAAAZ,eAAA,GAAAA,eAAA;AAKK,MAAMa,SAAS,GAAG;EACvB,GAAGb,eAAe;EAClBc,KAAK,EAAE,MAAOC,WAAwB,IAAK,IAAAC,iBAAQ,EAACD,WAAW,CAAC;EAChEE,SAAS,EAAED;AACb,CAAC;AAACJ,OAAA,CAAAC,SAAA,GAAAA,SAAA;AAEK,MAAMK,yBAAiC,GAAGlB,eAAe;AAACY,OAAA,CAAAM,yBAAA,GAAAA,yBAAA;AAC1D,MAAMC,mBAAqC,GAAGN,SAAS;AAACD,OAAA,CAAAO,mBAAA,GAAAA,mBAAA"}
|
package/dist/es5/wkb-writer.js
CHANGED
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.WKBWriter = void 0;
|
|
8
8
|
var _version = require("./lib/utils/version");
|
|
9
9
|
var _encodeWkb = _interopRequireDefault(require("./lib/encode-wkb"));
|
|
10
|
-
|
|
10
|
+
const WKBWriter = {
|
|
11
11
|
name: 'WKB (Well Known Binary)',
|
|
12
12
|
id: 'wkb',
|
|
13
13
|
module: 'wkt',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wkb-writer.js","names":["_version","require","_encodeWkb","_interopRequireDefault","WKBWriter","name","id","module","version","VERSION","extensions","encodeSync","encodeWKB","options","wkb","hasZ","hasM","exports"],"sources":["../../src/wkb-writer.ts"],"sourcesContent":["import type {Writer} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport encodeWKB from './lib/encode-wkb';\n\n/**\n * WKB exporter\n */\nexport const WKBWriter: Writer = {\n name: 'WKB (Well Known Binary)',\n id: 'wkb',\n module: 'wkt',\n version: VERSION,\n extensions: ['wkb'],\n // @ts-ignore\n encodeSync: encodeWKB,\n options: {\n wkb: {\n hasZ: false,\n hasM: false\n }\n }\n};\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,
|
|
1
|
+
{"version":3,"file":"wkb-writer.js","names":["_version","require","_encodeWkb","_interopRequireDefault","WKBWriter","name","id","module","version","VERSION","extensions","encodeSync","encodeWKB","options","wkb","hasZ","hasM","exports"],"sources":["../../src/wkb-writer.ts"],"sourcesContent":["import type {Writer} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport encodeWKB from './lib/encode-wkb';\n\n/**\n * WKB exporter\n */\nexport const WKBWriter: Writer = {\n name: 'WKB (Well Known Binary)',\n id: 'wkb',\n module: 'wkt',\n version: VERSION,\n extensions: ['wkb'],\n // @ts-ignore\n encodeSync: encodeWKB,\n options: {\n wkb: {\n hasZ: false,\n hasM: false\n }\n }\n};\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,MAAMG,SAAiB,GAAG;EAC/BC,IAAI,EAAE,yBAAyB;EAC/BC,EAAE,EAAE,KAAK;EACTC,MAAM,EAAE,KAAK;EACbC,OAAO,EAAEC,gBAAO;EAChBC,UAAU,EAAE,CAAC,KAAK,CAAC;EAEnBC,UAAU,EAAEC,kBAAS;EACrBC,OAAO,EAAE;IACPC,GAAG,EAAE;MACHC,IAAI,EAAE,KAAK;MACXC,IAAI,EAAE;IACR;EACF;AACF,CAAC;AAACC,OAAA,CAAAb,SAAA,GAAAA,SAAA"}
|
package/dist/es5/wkt-loader.js
CHANGED
|
@@ -5,14 +5,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.WKTWorkerLoader = exports.WKTLoader = void 0;
|
|
8
|
-
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
9
|
-
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
10
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
8
|
var _version = require("./lib/utils/version");
|
|
12
9
|
var _parseWkt = _interopRequireDefault(require("./lib/parse-wkt"));
|
|
13
|
-
|
|
14
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15
|
-
var WKTWorkerLoader = {
|
|
10
|
+
const WKTWorkerLoader = {
|
|
16
11
|
name: 'WKT (Well-Known Text)',
|
|
17
12
|
id: 'wkt',
|
|
18
13
|
module: 'wkt',
|
|
@@ -27,25 +22,10 @@ var WKTWorkerLoader = {
|
|
|
27
22
|
}
|
|
28
23
|
};
|
|
29
24
|
exports.WKTWorkerLoader = WKTWorkerLoader;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
return _regenerator.default.wrap(function _callee$(_context) {
|
|
34
|
-
while (1) switch (_context.prev = _context.next) {
|
|
35
|
-
case 0:
|
|
36
|
-
return _context.abrupt("return", (0, _parseWkt.default)(new TextDecoder().decode(arrayBuffer)));
|
|
37
|
-
case 1:
|
|
38
|
-
case "end":
|
|
39
|
-
return _context.stop();
|
|
40
|
-
}
|
|
41
|
-
}, _callee);
|
|
42
|
-
}));
|
|
43
|
-
function parse(_x) {
|
|
44
|
-
return _parse.apply(this, arguments);
|
|
45
|
-
}
|
|
46
|
-
return parse;
|
|
47
|
-
}(),
|
|
25
|
+
const WKTLoader = {
|
|
26
|
+
...WKTWorkerLoader,
|
|
27
|
+
parse: async arrayBuffer => (0, _parseWkt.default)(new TextDecoder().decode(arrayBuffer)),
|
|
48
28
|
parseTextSync: _parseWkt.default
|
|
49
|
-
}
|
|
29
|
+
};
|
|
50
30
|
exports.WKTLoader = WKTLoader;
|
|
51
31
|
//# sourceMappingURL=wkt-loader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wkt-loader.js","names":["_version","require","_parseWkt","_interopRequireDefault","
|
|
1
|
+
{"version":3,"file":"wkt-loader.js","names":["_version","require","_parseWkt","_interopRequireDefault","WKTWorkerLoader","name","id","module","version","VERSION","worker","extensions","mimeTypes","category","text","options","wkt","exports","WKTLoader","parse","arrayBuffer","parseWKT","TextDecoder","decode","parseTextSync"],"sources":["../../src/wkt-loader.ts"],"sourcesContent":["import type {Loader, LoaderWithParser} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport parseWKT from './lib/parse-wkt';\n\n/**\n * Well-Known text loader\n */\nexport const WKTWorkerLoader: Loader = {\n name: 'WKT (Well-Known Text)',\n id: 'wkt',\n module: 'wkt',\n version: VERSION,\n worker: true,\n extensions: ['wkt'],\n mimeTypes: ['text/plain'],\n category: 'geometry',\n text: true,\n options: {\n wkt: {}\n }\n};\n\n/**\n * Well-Known text loader\n */\nexport const WKTLoader: LoaderWithParser = {\n ...WKTWorkerLoader,\n parse: async (arrayBuffer) => parseWKT(new TextDecoder().decode(arrayBuffer)),\n parseTextSync: parseWKT\n};\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,SAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,MAAMG,eAAuB,GAAG;EACrCC,IAAI,EAAE,uBAAuB;EAC7BC,EAAE,EAAE,KAAK;EACTC,MAAM,EAAE,KAAK;EACbC,OAAO,EAAEC,gBAAO;EAChBC,MAAM,EAAE,IAAI;EACZC,UAAU,EAAE,CAAC,KAAK,CAAC;EACnBC,SAAS,EAAE,CAAC,YAAY,CAAC;EACzBC,QAAQ,EAAE,UAAU;EACpBC,IAAI,EAAE,IAAI;EACVC,OAAO,EAAE;IACPC,GAAG,EAAE,CAAC;EACR;AACF,CAAC;AAACC,OAAA,CAAAb,eAAA,GAAAA,eAAA;AAKK,MAAMc,SAA2B,GAAG;EACzC,GAAGd,eAAe;EAClBe,KAAK,EAAE,MAAOC,WAAW,IAAK,IAAAC,iBAAQ,EAAC,IAAIC,WAAW,CAAC,CAAC,CAACC,MAAM,CAACH,WAAW,CAAC,CAAC;EAC7EI,aAAa,EAAEH;AACjB,CAAC;AAACJ,OAAA,CAAAC,SAAA,GAAAA,SAAA"}
|
package/dist/es5/wkt-writer.js
CHANGED
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.WKTWriter = void 0;
|
|
8
8
|
var _version = require("./lib/utils/version");
|
|
9
9
|
var _encodeWkt = _interopRequireDefault(require("./lib/encode-wkt"));
|
|
10
|
-
|
|
10
|
+
const WKTWriter = {
|
|
11
11
|
name: 'WKT (Well Known Text)',
|
|
12
12
|
id: 'wkt',
|
|
13
13
|
module: 'wkt',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wkt-writer.js","names":["_version","require","_encodeWkt","_interopRequireDefault","WKTWriter","name","id","module","version","VERSION","extensions","encode","encodeWKT","options","wkt","exports"],"sources":["../../src/wkt-writer.ts"],"sourcesContent":["import type {Writer} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport encodeWKT from './lib/encode-wkt';\n\n/**\n * WKT exporter\n */\nexport const WKTWriter: Writer = {\n name: 'WKT (Well Known Text)',\n id: 'wkt',\n module: 'wkt',\n version: VERSION,\n extensions: ['wkt'],\n // @ts-ignore\n encode: encodeWKT,\n options: {\n wkt: {}\n }\n};\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,
|
|
1
|
+
{"version":3,"file":"wkt-writer.js","names":["_version","require","_encodeWkt","_interopRequireDefault","WKTWriter","name","id","module","version","VERSION","extensions","encode","encodeWKT","options","wkt","exports"],"sources":["../../src/wkt-writer.ts"],"sourcesContent":["import type {Writer} from '@loaders.gl/loader-utils';\nimport {VERSION} from './lib/utils/version';\nimport encodeWKT from './lib/encode-wkt';\n\n/**\n * WKT exporter\n */\nexport const WKTWriter: Writer = {\n name: 'WKT (Well Known Text)',\n id: 'wkt',\n module: 'wkt',\n version: VERSION,\n extensions: ['wkt'],\n // @ts-ignore\n encode: encodeWKT,\n options: {\n wkt: {}\n }\n};\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKO,MAAMG,SAAiB,GAAG;EAC/BC,IAAI,EAAE,uBAAuB;EAC7BC,EAAE,EAAE,KAAK;EACTC,MAAM,EAAE,KAAK;EACbC,OAAO,EAAEC,gBAAO;EAChBC,UAAU,EAAE,CAAC,KAAK,CAAC;EAEnBC,MAAM,EAAEC,kBAAS;EACjBC,OAAO,EAAE;IACPC,GAAG,EAAE,CAAC;EACR;AACF,CAAC;AAACC,OAAA,CAAAX,SAAA,GAAAA,SAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = typeof "3.4.
|
|
1
|
+
export const VERSION = typeof "3.4.15" !== 'undefined' ? "3.4.15" : 'latest';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/dist/wkt-worker.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/wkt",
|
|
3
3
|
"description": "Loader and Writer for the WKT (Well Known Text) Format",
|
|
4
|
-
"version": "3.4.
|
|
4
|
+
"version": "3.4.15",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"fuzzer": "^0.2.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@loaders.gl/loader-utils": "3.4.
|
|
39
|
-
"@loaders.gl/schema": "3.4.
|
|
38
|
+
"@loaders.gl/loader-utils": "3.4.15",
|
|
39
|
+
"@loaders.gl/schema": "3.4.15"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "19e941d5805568e449ef9092490d6568a4853298"
|
|
42
42
|
}
|