@loaders.gl/arrow 4.4.0-alpha.13 → 4.4.0-alpha.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/arrow-worker.js +3079 -2732
- package/dist/arrow-writer.js +1 -1
- package/dist/dist.dev.js +3170 -2822
- package/dist/dist.min.js +5 -5
- package/dist/exports/arrow-loader.js +1 -1
- package/dist/geoarrow-writer.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/triangulate-on-worker.js +1 -1
- package/dist/triangulation-worker.js +3076 -2729
- package/package.json +9 -9
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Copyright (c) vis.gl contributors
|
|
4
4
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
5
5
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
6
|
-
const VERSION = typeof "4.4.0-alpha.
|
|
6
|
+
const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
|
|
7
7
|
/** ArrowJS table loader */
|
|
8
8
|
export const ArrowWorkerLoader = {
|
|
9
9
|
dataType: null,
|
package/dist/geoarrow-writer.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { encodeGeoArrowSync } from "./lib/encoders/encode-geoarrow.js";
|
|
3
3
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
4
4
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
5
|
-
const VERSION = typeof "4.4.0-alpha.
|
|
5
|
+
const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
|
|
6
6
|
/** Apache Arrow writer */
|
|
7
7
|
export const GeoArrowWriter = {
|
|
8
8
|
name: 'Apache Arrow',
|
package/dist/index.cjs
CHANGED
|
@@ -68,7 +68,7 @@ var ArrowFormat = {
|
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
// dist/exports/arrow-loader.js
|
|
71
|
-
var VERSION = true ? "4.4.0-alpha.
|
|
71
|
+
var VERSION = true ? "4.4.0-alpha.15" : "latest";
|
|
72
72
|
var ArrowWorkerLoader = {
|
|
73
73
|
dataType: null,
|
|
74
74
|
batchType: null,
|
|
@@ -160,7 +160,7 @@ function createVector(array, type) {
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
// dist/arrow-writer.js
|
|
163
|
-
var VERSION2 = true ? "4.4.0-alpha.
|
|
163
|
+
var VERSION2 = true ? "4.4.0-alpha.15" : "latest";
|
|
164
164
|
var ArrowWriter = {
|
|
165
165
|
name: "Apache Arrow",
|
|
166
166
|
id: "arrow",
|
|
@@ -262,7 +262,7 @@ function cloneBuffer(arr, force) {
|
|
|
262
262
|
|
|
263
263
|
// dist/triangulate-on-worker.js
|
|
264
264
|
var import_worker_utils = require("@loaders.gl/worker-utils");
|
|
265
|
-
var VERSION3 = true ? "4.4.0-alpha.
|
|
265
|
+
var VERSION3 = true ? "4.4.0-alpha.15" : "latest";
|
|
266
266
|
var TriangulationWorker = {
|
|
267
267
|
id: "triangulation",
|
|
268
268
|
name: "Triangulate",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { processOnWorker } from '@loaders.gl/worker-utils';
|
|
5
5
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
6
6
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
7
|
-
const VERSION = typeof "4.4.0-alpha.
|
|
7
|
+
const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
|
|
8
8
|
/**
|
|
9
9
|
* Worker for tessellating geometries. Normally called through triangulateOnWorker
|
|
10
10
|
*/
|