Skip to content

Commit

Permalink
Merge pull request #63 from TileDB-Inc/xan/point-tiles
Browse files Browse the repository at this point in the history
Point tiles support
  • Loading branch information
XanthosXanthopoulos committed Dec 14, 2023
2 parents 838316b + 133c97a commit e4138c0
Show file tree
Hide file tree
Showing 5 changed files with 5,521 additions and 4,015 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ When developing extensions you need to manually enable the extensions with the n
```bash
jupyter labextension install @jupyter-widgets/jupyterlab-manager
yarn run build
jupyter labextension install .
jupyter labextension develop . --overwrite
```

For a classic notebook you need to run:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"dependencies": {
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@jupyterlab/application": "^3 || ^4",
"@tiledb-inc/viz-core": "1.0.2-alpha.12"
"@tiledb-inc/viz-core": "^1.0.2-alpha.13"
},
"devDependencies": {
"@jupyterlab/builder": "^3 || ^4",
Expand Down
3 changes: 2 additions & 1 deletion pybabylonjs/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"name_space": None,
"array_name": None,
"group_name": None,
"geometry_array_name": None,
"geometry_array_names": None,
"point_group_names": None,
"base_group": None,
"token": None,
"tiledb_env": None,
Expand Down
3 changes: 2 additions & 1 deletion src/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ export class BabylonTileImageView extends BabylonBaseView {
namespace: this.values.name_space,
arrayID: this.values.array_name,
groupID: this.values.group_name,
geometryArrayID: this.values.geometry_array_name,
geometryArrayID: this.values.geometry_array_names,
pointGroupID: this.values.point_group_names,
baseGroup: this.values.base_group,
token: this.values.token,
tiledbEnv: this.values.tiledb_env,
Expand Down

0 comments on commit e4138c0

Please sign in to comment.