@loaders.gl/schema 4.0.0-alpha.7 → 4.0.0-alpha.8
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/index.js
CHANGED
|
@@ -39,7 +39,7 @@ var mesh_utils_1 = require("./lib/mesh/mesh-utils");
|
|
|
39
39
|
Object.defineProperty(exports, "getMeshSize", { enumerable: true, get: function () { return mesh_utils_1.getMeshSize; } });
|
|
40
40
|
Object.defineProperty(exports, "getMeshBoundingBox", { enumerable: true, get: function () { return mesh_utils_1.getMeshBoundingBox; } });
|
|
41
41
|
// Commented out due to https://github.com/visgl/deck.gl/issues/6906 and https://github.com/visgl/loaders.gl/issues/2177
|
|
42
|
-
// export {convertMesh} from './category/mesh/convert-mesh
|
|
42
|
+
// export {convertMesh} from './category/mesh/convert-mesh';
|
|
43
43
|
var deduce_mesh_schema_1 = require("./lib/mesh/deduce-mesh-schema");
|
|
44
44
|
Object.defineProperty(exports, "deduceMeshSchema", { enumerable: true, get: function () { return deduce_mesh_schema_1.deduceMeshSchema; } });
|
|
45
45
|
Object.defineProperty(exports, "deduceMeshField", { enumerable: true, get: function () { return deduce_mesh_schema_1.deduceMeshField; } });
|
|
@@ -10,9 +10,9 @@ import {
|
|
|
10
10
|
FixedSizeListVector
|
|
11
11
|
} from 'apache-arrow';
|
|
12
12
|
import {AbstractVector} from 'apache-arrow/vector';
|
|
13
|
-
import {getArrowType, getArrowVector} from '../table/arrow/arrow-type-utils
|
|
14
|
-
import type {Mesh} from './mesh-types
|
|
15
|
-
import {makeMeshAttributeMetadata} from './deduce-mesh-schema
|
|
13
|
+
import {getArrowType, getArrowVector} from '../table/arrow/arrow-type-utils';
|
|
14
|
+
import type {Mesh} from './mesh-types';
|
|
15
|
+
import {makeMeshAttributeMetadata} from './deduce-mesh-schema';
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* * Convert a loaders.gl Mesh to an Apache Arrow Table
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
// FixedSizeListVector
|
|
11
11
|
// } from 'apache-arrow/Arrow.dom';
|
|
12
12
|
// import {AbstractVector} from 'apache-arrow/vector';
|
|
13
|
-
// import {Table} from '../../types/category-table
|
|
14
|
-
// import {getArrowType, getArrowVector} from './arrow-type-utils
|
|
15
|
-
// import {makeMeshAttributeMetadata} from './deduce-mesh-schema
|
|
16
|
-
// import {getTableLength, getTableNumCols} from './table-accessors
|
|
13
|
+
// import {Table} from '../../types/category-table';
|
|
14
|
+
// import {getArrowType, getArrowVector} from './arrow-type-utils';
|
|
15
|
+
// import {makeMeshAttributeMetadata} from './deduce-mesh-schema';
|
|
16
|
+
// import {getTableLength, getTableNumCols} from './table-accessors';
|
|
17
17
|
/**
|
|
18
18
|
* * Convert a loaders.gl Mesh to an Apache Arrow Table
|
|
19
19
|
* @param mesh
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// loaders.gl, MIT license
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.RowTableBatchAggregator = void 0;
|
|
5
|
-
// import type {ArrayRowTableBatch, ObjectRowTableBatch} from '../../category/table
|
|
5
|
+
// import type {ArrayRowTableBatch, ObjectRowTableBatch} from '../../category/table';
|
|
6
6
|
const row_utils_1 = require("../simple-table/row-utils");
|
|
7
7
|
const DEFAULT_ROW_COUNT = 100;
|
|
8
8
|
class RowTableBatchAggregator {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/schema",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.8",
|
|
4
4
|
"description": "Table format APIs for JSON, CSV, etc...",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@types/geojson": "^7946.0.7"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "c35d6640c8d26deab99e277a8e698b5174233789"
|
|
38
38
|
}
|