@geode/opengeodeweb-viewer 1.14.0-rc.1 → 1.14.0
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/opengeodeweb_viewer_schemas.json +232 -0
- package/package.json +2 -2
|
@@ -76,6 +76,35 @@
|
|
|
76
76
|
],
|
|
77
77
|
"additionalProperties": false
|
|
78
78
|
},
|
|
79
|
+
"vertex_color_map": {
|
|
80
|
+
"$id": "opengeodeweb_viewer.mesh.cells.color_map",
|
|
81
|
+
"rpc": "color_map",
|
|
82
|
+
"type": "object",
|
|
83
|
+
"properties": {
|
|
84
|
+
"id": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"minLength": 1
|
|
87
|
+
},
|
|
88
|
+
"points": {
|
|
89
|
+
"type": "array",
|
|
90
|
+
"items": {
|
|
91
|
+
"type": "array",
|
|
92
|
+
"description": "[value, r, g, b]",
|
|
93
|
+
"items": {
|
|
94
|
+
"type": "number"
|
|
95
|
+
},
|
|
96
|
+
"minItems": 4,
|
|
97
|
+
"maxItems": 4
|
|
98
|
+
},
|
|
99
|
+
"minLength": 2
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"required": [
|
|
103
|
+
"id",
|
|
104
|
+
"points"
|
|
105
|
+
],
|
|
106
|
+
"additionalProperties": false
|
|
107
|
+
},
|
|
79
108
|
"vertex_attribute": {
|
|
80
109
|
"$id": "opengeodeweb_viewer.mesh.cells.vertex_attribute",
|
|
81
110
|
"rpc": "vertex_attribute",
|
|
@@ -167,6 +196,35 @@
|
|
|
167
196
|
],
|
|
168
197
|
"additionalProperties": false
|
|
169
198
|
},
|
|
199
|
+
"cell_color_map": {
|
|
200
|
+
"$id": "opengeodeweb_viewer.mesh.cells.color_map",
|
|
201
|
+
"rpc": "color_map",
|
|
202
|
+
"type": "object",
|
|
203
|
+
"properties": {
|
|
204
|
+
"id": {
|
|
205
|
+
"type": "string",
|
|
206
|
+
"minLength": 1
|
|
207
|
+
},
|
|
208
|
+
"points": {
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"type": "array",
|
|
212
|
+
"description": "[value, r, g, b]",
|
|
213
|
+
"items": {
|
|
214
|
+
"type": "number"
|
|
215
|
+
},
|
|
216
|
+
"minItems": 4,
|
|
217
|
+
"maxItems": 4
|
|
218
|
+
},
|
|
219
|
+
"minLength": 2
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"required": [
|
|
223
|
+
"id",
|
|
224
|
+
"points"
|
|
225
|
+
],
|
|
226
|
+
"additionalProperties": false
|
|
227
|
+
},
|
|
170
228
|
"cell_attribute": {
|
|
171
229
|
"$id": "opengeodeweb_viewer.mesh.cells.cell_attribute",
|
|
172
230
|
"rpc": "cell_attribute",
|
|
@@ -250,6 +308,35 @@
|
|
|
250
308
|
],
|
|
251
309
|
"additionalProperties": false
|
|
252
310
|
},
|
|
311
|
+
"vertex_color_map": {
|
|
312
|
+
"$id": "opengeodeweb_viewer.mesh.edges.color_map",
|
|
313
|
+
"rpc": "color_map",
|
|
314
|
+
"type": "object",
|
|
315
|
+
"properties": {
|
|
316
|
+
"id": {
|
|
317
|
+
"type": "string",
|
|
318
|
+
"minLength": 1
|
|
319
|
+
},
|
|
320
|
+
"points": {
|
|
321
|
+
"type": "array",
|
|
322
|
+
"items": {
|
|
323
|
+
"type": "array",
|
|
324
|
+
"description": "[value, r, g, b]",
|
|
325
|
+
"items": {
|
|
326
|
+
"type": "number"
|
|
327
|
+
},
|
|
328
|
+
"minItems": 4,
|
|
329
|
+
"maxItems": 4
|
|
330
|
+
},
|
|
331
|
+
"minLength": 2
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"required": [
|
|
335
|
+
"id",
|
|
336
|
+
"points"
|
|
337
|
+
],
|
|
338
|
+
"additionalProperties": false
|
|
339
|
+
},
|
|
253
340
|
"vertex_attribute": {
|
|
254
341
|
"$id": "opengeodeweb_viewer.mesh.edges.vertex_attribute",
|
|
255
342
|
"rpc": "vertex_attribute",
|
|
@@ -381,6 +468,35 @@
|
|
|
381
468
|
],
|
|
382
469
|
"additionalProperties": false
|
|
383
470
|
},
|
|
471
|
+
"vertex_color_map": {
|
|
472
|
+
"$id": "opengeodeweb_viewer.mesh.points.color_map",
|
|
473
|
+
"rpc": "color_map",
|
|
474
|
+
"type": "object",
|
|
475
|
+
"properties": {
|
|
476
|
+
"id": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"minLength": 1
|
|
479
|
+
},
|
|
480
|
+
"points": {
|
|
481
|
+
"type": "array",
|
|
482
|
+
"items": {
|
|
483
|
+
"type": "array",
|
|
484
|
+
"description": "[value, r, g, b]",
|
|
485
|
+
"items": {
|
|
486
|
+
"type": "number"
|
|
487
|
+
},
|
|
488
|
+
"minItems": 4,
|
|
489
|
+
"maxItems": 4
|
|
490
|
+
},
|
|
491
|
+
"minLength": 2
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"required": [
|
|
495
|
+
"id",
|
|
496
|
+
"points"
|
|
497
|
+
],
|
|
498
|
+
"additionalProperties": false
|
|
499
|
+
},
|
|
384
500
|
"vertex_attribute": {
|
|
385
501
|
"$id": "opengeodeweb_viewer.mesh.points.vertex_attribute",
|
|
386
502
|
"rpc": "vertex_attribute",
|
|
@@ -512,6 +628,35 @@
|
|
|
512
628
|
],
|
|
513
629
|
"additionalProperties": false
|
|
514
630
|
},
|
|
631
|
+
"vertex_color_map": {
|
|
632
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.color_map",
|
|
633
|
+
"rpc": "color_map",
|
|
634
|
+
"type": "object",
|
|
635
|
+
"properties": {
|
|
636
|
+
"id": {
|
|
637
|
+
"type": "string",
|
|
638
|
+
"minLength": 1
|
|
639
|
+
},
|
|
640
|
+
"points": {
|
|
641
|
+
"type": "array",
|
|
642
|
+
"items": {
|
|
643
|
+
"type": "array",
|
|
644
|
+
"description": "[value, r, g, b]",
|
|
645
|
+
"items": {
|
|
646
|
+
"type": "number"
|
|
647
|
+
},
|
|
648
|
+
"minItems": 4,
|
|
649
|
+
"maxItems": 4
|
|
650
|
+
},
|
|
651
|
+
"minLength": 2
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"required": [
|
|
655
|
+
"id",
|
|
656
|
+
"points"
|
|
657
|
+
],
|
|
658
|
+
"additionalProperties": false
|
|
659
|
+
},
|
|
515
660
|
"vertex_attribute": {
|
|
516
661
|
"$id": "opengeodeweb_viewer.mesh.polygons.vertex_attribute",
|
|
517
662
|
"rpc": "vertex_attribute",
|
|
@@ -555,6 +700,35 @@
|
|
|
555
700
|
],
|
|
556
701
|
"additionalProperties": false
|
|
557
702
|
},
|
|
703
|
+
"polygon_color_map": {
|
|
704
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.color_map",
|
|
705
|
+
"rpc": "color_map",
|
|
706
|
+
"type": "object",
|
|
707
|
+
"properties": {
|
|
708
|
+
"id": {
|
|
709
|
+
"type": "string",
|
|
710
|
+
"minLength": 1
|
|
711
|
+
},
|
|
712
|
+
"points": {
|
|
713
|
+
"type": "array",
|
|
714
|
+
"items": {
|
|
715
|
+
"type": "array",
|
|
716
|
+
"description": "[value, r, g, b]",
|
|
717
|
+
"items": {
|
|
718
|
+
"type": "number"
|
|
719
|
+
},
|
|
720
|
+
"minItems": 4,
|
|
721
|
+
"maxItems": 4
|
|
722
|
+
},
|
|
723
|
+
"minLength": 2
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"required": [
|
|
727
|
+
"id",
|
|
728
|
+
"points"
|
|
729
|
+
],
|
|
730
|
+
"additionalProperties": false
|
|
731
|
+
},
|
|
558
732
|
"polygon_attribute": {
|
|
559
733
|
"$id": "opengeodeweb_viewer.mesh.polygons.polygon_attribute",
|
|
560
734
|
"rpc": "polygon_attribute",
|
|
@@ -667,6 +841,35 @@
|
|
|
667
841
|
],
|
|
668
842
|
"additionalProperties": false
|
|
669
843
|
},
|
|
844
|
+
"vertex_color_map": {
|
|
845
|
+
"$id": "opengeodeweb_viewer.mesh.polyhedra.color_map",
|
|
846
|
+
"rpc": "color_map",
|
|
847
|
+
"type": "object",
|
|
848
|
+
"properties": {
|
|
849
|
+
"id": {
|
|
850
|
+
"type": "string",
|
|
851
|
+
"minLength": 1
|
|
852
|
+
},
|
|
853
|
+
"points": {
|
|
854
|
+
"type": "array",
|
|
855
|
+
"items": {
|
|
856
|
+
"type": "array",
|
|
857
|
+
"description": "[value, r, g, b]",
|
|
858
|
+
"items": {
|
|
859
|
+
"type": "number"
|
|
860
|
+
},
|
|
861
|
+
"minItems": 4,
|
|
862
|
+
"maxItems": 4
|
|
863
|
+
},
|
|
864
|
+
"minLength": 2
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
"required": [
|
|
868
|
+
"id",
|
|
869
|
+
"points"
|
|
870
|
+
],
|
|
871
|
+
"additionalProperties": false
|
|
872
|
+
},
|
|
670
873
|
"vertex_attribute": {
|
|
671
874
|
"$id": "opengeodeweb_viewer.mesh.polyhedra.vertex_attribute",
|
|
672
875
|
"rpc": "vertex_attribute",
|
|
@@ -730,6 +933,35 @@
|
|
|
730
933
|
],
|
|
731
934
|
"additionalProperties": false
|
|
732
935
|
},
|
|
936
|
+
"polyhedra_color_map": {
|
|
937
|
+
"$id": "opengeodeweb_viewer.mesh.polyhedra.color_map",
|
|
938
|
+
"rpc": "color_map",
|
|
939
|
+
"type": "object",
|
|
940
|
+
"properties": {
|
|
941
|
+
"id": {
|
|
942
|
+
"type": "string",
|
|
943
|
+
"minLength": 1
|
|
944
|
+
},
|
|
945
|
+
"points": {
|
|
946
|
+
"type": "array",
|
|
947
|
+
"items": {
|
|
948
|
+
"type": "array",
|
|
949
|
+
"description": "[value, r, g, b]",
|
|
950
|
+
"items": {
|
|
951
|
+
"type": "number"
|
|
952
|
+
},
|
|
953
|
+
"minItems": 4,
|
|
954
|
+
"maxItems": 4
|
|
955
|
+
},
|
|
956
|
+
"minLength": 2
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"required": [
|
|
960
|
+
"id",
|
|
961
|
+
"points"
|
|
962
|
+
],
|
|
963
|
+
"additionalProperties": false
|
|
964
|
+
},
|
|
733
965
|
"color": {
|
|
734
966
|
"$id": "opengeodeweb_viewer.mesh.polyhedra.color",
|
|
735
967
|
"rpc": "color",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geode/opengeodeweb-viewer",
|
|
3
|
-
"version": "1.14.0
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"json": "npx opengeodeweb-microservice-generate opengeodeweb_viewer rpc rpc .",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"build": "npm run json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@geode/opengeodeweb-microservice": "
|
|
11
|
+
"@geode/opengeodeweb-microservice": "latest"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
14
|
"./opengeodeweb_viewer_schemas.json": {
|