Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4138c0

Browse files
authoredDec 14, 2023
Merge pull request #63 from TileDB-Inc/xan/point-tiles
Point tiles support
2 parents 838316b + 133c97a commit e4138c0

File tree

5 files changed

+5521
-4015
lines changed

5 files changed

+5521
-4015
lines changed
 

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ When developing extensions you need to manually enable the extensions with the n
4545
```bash
4646
jupyter labextension install @jupyter-widgets/jupyterlab-manager
4747
yarn run build
48-
jupyter labextension install .
48+
jupyter labextension develop . --overwrite
4949
```
5050

5151
For a classic notebook you need to run:

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"dependencies": {
5959
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
6060
"@jupyterlab/application": "^3 || ^4",
61-
"@tiledb-inc/viz-core": "1.0.2-alpha.12"
61+
"@tiledb-inc/viz-core": "^1.0.2-alpha.13"
6262
},
6363
"devDependencies": {
6464
"@jupyterlab/builder": "^3 || ^4",

‎pybabylonjs/args.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"name_space": None,
4949
"array_name": None,
5050
"group_name": None,
51-
"geometry_array_name": None,
51+
"geometry_array_names": None,
52+
"point_group_names": None,
5253
"base_group": None,
5354
"token": None,
5455
"tiledb_env": None,

‎src/widget.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ export class BabylonTileImageView extends BabylonBaseView {
161161
namespace: this.values.name_space,
162162
arrayID: this.values.array_name,
163163
groupID: this.values.group_name,
164-
geometryArrayID: this.values.geometry_array_name,
164+
geometryArrayID: this.values.geometry_array_names,
165+
pointGroupID: this.values.point_group_names,
165166
baseGroup: this.values.base_group,
166167
token: this.values.token,
167168
tiledbEnv: this.values.tiledb_env,
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.