OpenGeodeWeb-Viewer 1.13.4rc1__py3-none-any.whl → 1.14.0rc1__py3-none-any.whl

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.
Files changed (33) hide show
  1. opengeodeweb_viewer/rpc/mesh/cells/cells_protocols.py +22 -0
  2. opengeodeweb_viewer/rpc/mesh/cells/schemas/__init__.py +2 -0
  3. opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_scalar_range.json +22 -0
  4. opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_scalar_range.py +12 -0
  5. opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_scalar_range.json +22 -0
  6. opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_scalar_range.py +12 -0
  7. opengeodeweb_viewer/rpc/mesh/edges/mesh_edges_protocols.py +22 -0
  8. opengeodeweb_viewer/rpc/mesh/edges/schemas/__init__.py +1 -0
  9. opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_scalar_range.json +22 -0
  10. opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_scalar_range.py +12 -0
  11. opengeodeweb_viewer/rpc/mesh/mesh_protocols.py +4 -0
  12. opengeodeweb_viewer/rpc/mesh/points/mesh_points_protocols.py +12 -0
  13. opengeodeweb_viewer/rpc/mesh/points/schemas/__init__.py +1 -0
  14. opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_scalar_range.json +22 -0
  15. opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_scalar_range.py +12 -0
  16. opengeodeweb_viewer/rpc/mesh/polygons/polygons_protocols.py +24 -0
  17. opengeodeweb_viewer/rpc/mesh/polygons/schemas/__init__.py +2 -0
  18. opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_scalar_range.json +22 -0
  19. opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_scalar_range.py +12 -0
  20. opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_scalar_range.json +22 -0
  21. opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_scalar_range.py +12 -0
  22. opengeodeweb_viewer/rpc/mesh/polyhedra/polyhedra_protocols.py +26 -0
  23. opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/__init__.py +2 -0
  24. opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_scalar_range.json +22 -0
  25. opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_scalar_range.py +12 -0
  26. opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_scalar_range.json +22 -0
  27. opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_scalar_range.py +12 -0
  28. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/METADATA +2 -2
  29. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/RECORD +33 -17
  30. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/WHEEL +0 -0
  31. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/entry_points.txt +0 -0
  32. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/licenses/LICENSE +0 -0
  33. {opengeodeweb_viewer-1.13.4rc1.dist-info → opengeodeweb_viewer-1.14.0rc1.dist-info}/top_level.txt +0 -0
@@ -63,3 +63,25 @@ class VtkMeshCellsView(VtkMeshView):
63
63
  )
64
64
  params = schemas.CellAttribute.from_dict(rpc_params)
65
65
  self.displayAttributeOnCells(params.id, params.name)
66
+
67
+ @exportRpc(
68
+ mesh_cells_prefix + mesh_cells_schemas_dict["vertex_scalar_range"]["rpc"]
69
+ )
70
+ def setMeshCellsVertexScalarRange(self, rpc_params: RpcParams) -> None:
71
+ validate_schema(
72
+ rpc_params,
73
+ self.mesh_cells_schemas_dict["vertex_scalar_range"],
74
+ self.mesh_cells_prefix,
75
+ )
76
+ params = schemas.VertexScalarRange.from_dict(rpc_params)
77
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
78
+
79
+ @exportRpc(mesh_cells_prefix + mesh_cells_schemas_dict["cell_scalar_range"]["rpc"])
80
+ def setMeshCellsCellScalarRange(self, rpc_params: RpcParams) -> None:
81
+ validate_schema(
82
+ rpc_params,
83
+ self.mesh_cells_schemas_dict["cell_scalar_range"],
84
+ self.mesh_cells_prefix,
85
+ )
86
+ params = schemas.CellScalarRange.from_dict(rpc_params)
87
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
@@ -1,4 +1,6 @@
1
1
  from .visibility import *
2
+ from .vertex_scalar_range import *
2
3
  from .vertex_attribute import *
3
4
  from .color import *
5
+ from .cell_scalar_range import *
4
6
  from .cell_attribute import *
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "cell_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class CellScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "vertex_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class VertexScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -49,3 +49,25 @@ class VtkMeshEdgesView(VtkMeshView):
49
49
  )
50
50
  params = schemas.Width.from_dict(rpc_params)
51
51
  self.SetEdgesWidth(params.id, params.width)
52
+
53
+ @exportRpc(mesh_edges_prefix + mesh_edges_schemas_dict["vertex_attribute"]["rpc"])
54
+ def setMeshEdgesVertexAttribute(self, rpc_params: RpcParams) -> None:
55
+ validate_schema(
56
+ rpc_params,
57
+ self.mesh_edges_schemas_dict["vertex_attribute"],
58
+ self.mesh_edges_prefix,
59
+ )
60
+ params = schemas.VertexAttribute.from_dict(rpc_params)
61
+ self.displayAttributeOnVertices(params.id, params.name)
62
+
63
+ @exportRpc(
64
+ mesh_edges_prefix + mesh_edges_schemas_dict["vertex_scalar_range"]["rpc"]
65
+ )
66
+ def setMeshEdgesVertexScalarRange(self, rpc_params: RpcParams) -> None:
67
+ validate_schema(
68
+ rpc_params,
69
+ self.mesh_edges_schemas_dict["vertex_scalar_range"],
70
+ self.mesh_edges_prefix,
71
+ )
72
+ params = schemas.VertexScalarRange.from_dict(rpc_params)
73
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
@@ -1,5 +1,6 @@
1
1
  from .width import *
2
2
  from .visibility import *
3
+ from .vertex_scalar_range import *
3
4
  from .vertex_attribute import *
4
5
  from .size import *
5
6
  from .color import *
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "vertex_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class VertexScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -146,3 +146,7 @@ class VtkMeshView(VtkObjectView):
146
146
  mapper.ScalarVisibilityOn()
147
147
  mapper.SetScalarModeToUseCellData()
148
148
  mapper.SetScalarRange(cells.GetScalars().GetRange())
149
+
150
+ def displayScalarRange(self, data_id: str, minimum: float, maximum: float) -> None:
151
+ mapper = self.get_object(data_id).mapper
152
+ mapper.SetScalarRange(minimum, maximum)
@@ -59,3 +59,15 @@ class VtkMeshPointsView(VtkMeshView):
59
59
  )
60
60
  params = schemas.VertexAttribute.from_dict(rpc_params)
61
61
  self.displayAttributeOnVertices(params.id, params.name)
62
+
63
+ @exportRpc(
64
+ mesh_points_prefix + mesh_points_schemas_dict["vertex_scalar_range"]["rpc"]
65
+ )
66
+ def setMeshPointsVertexScalarRange(self, rpc_params: RpcParams) -> None:
67
+ validate_schema(
68
+ rpc_params,
69
+ self.mesh_points_schemas_dict["vertex_scalar_range"],
70
+ self.mesh_points_prefix,
71
+ )
72
+ params = schemas.VertexScalarRange.from_dict(rpc_params)
73
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
@@ -1,4 +1,5 @@
1
1
  from .visibility import *
2
+ from .vertex_scalar_range import *
2
3
  from .vertex_attribute import *
3
4
  from .size import *
4
5
  from .color import *
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "vertex_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class VertexScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -67,3 +67,27 @@ class VtkMeshPolygonsView(VtkMeshView):
67
67
  )
68
68
  params = schemas.PolygonAttribute.from_dict(rpc_params)
69
69
  self.displayAttributeOnCells(params.id, params.name)
70
+
71
+ @exportRpc(
72
+ mesh_polygons_prefix + mesh_polygons_schemas_dict["vertex_scalar_range"]["rpc"]
73
+ )
74
+ def setMeshPolygonsVertexScalarRange(self, rpc_params: RpcParams) -> None:
75
+ validate_schema(
76
+ rpc_params,
77
+ self.mesh_polygons_schemas_dict["vertex_scalar_range"],
78
+ self.mesh_polygons_prefix,
79
+ )
80
+ params = schemas.VertexScalarRange.from_dict(rpc_params)
81
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
82
+
83
+ @exportRpc(
84
+ mesh_polygons_prefix + mesh_polygons_schemas_dict["polygon_scalar_range"]["rpc"]
85
+ )
86
+ def setMeshPolygonsPolygonScalarRange(self, rpc_params: RpcParams) -> None:
87
+ validate_schema(
88
+ rpc_params,
89
+ self.mesh_polygons_schemas_dict["polygon_scalar_range"],
90
+ self.mesh_polygons_prefix,
91
+ )
92
+ params = schemas.PolygonScalarRange.from_dict(rpc_params)
93
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
@@ -1,4 +1,6 @@
1
1
  from .visibility import *
2
+ from .vertex_scalar_range import *
2
3
  from .vertex_attribute import *
4
+ from .polygon_scalar_range import *
3
5
  from .polygon_attribute import *
4
6
  from .color import *
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "polygon_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class PolygonScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "vertex_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class VertexScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -68,3 +68,29 @@ class VtkMeshPolyhedraView(VtkMeshView):
68
68
  )
69
69
  params = schemas.PolyhedronAttribute.from_dict(rpc_params)
70
70
  self.displayAttributeOnCells(params.id, params.name)
71
+
72
+ @exportRpc(
73
+ mesh_polyhedra_prefix
74
+ + mesh_polyhedra_schemas_dict["vertex_scalar_range"]["rpc"]
75
+ )
76
+ def setMeshPolyhedraVertexScalarRange(self, rpc_params: RpcParams) -> None:
77
+ validate_schema(
78
+ rpc_params,
79
+ self.mesh_polyhedra_schemas_dict["vertex_scalar_range"],
80
+ self.mesh_polyhedra_prefix,
81
+ )
82
+ params = schemas.VertexScalarRange.from_dict(rpc_params)
83
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
84
+
85
+ @exportRpc(
86
+ mesh_polyhedra_prefix
87
+ + mesh_polyhedra_schemas_dict["polyhedron_scalar_range"]["rpc"]
88
+ )
89
+ def setMeshPolyhedraPolyhedronScalarRange(self, rpc_params: RpcParams) -> None:
90
+ validate_schema(
91
+ rpc_params,
92
+ self.mesh_polyhedra_schemas_dict["polyhedron_scalar_range"],
93
+ self.mesh_polyhedra_prefix,
94
+ )
95
+ params = schemas.PolyhedronScalarRange.from_dict(rpc_params)
96
+ self.displayScalarRange(params.id, params.minimum, params.maximum)
@@ -1,4 +1,6 @@
1
1
  from .visibility import *
2
+ from .vertex_scalar_range import *
2
3
  from .vertex_attribute import *
4
+ from .polyhedron_scalar_range import *
3
5
  from .polyhedron_attribute import *
4
6
  from .color import *
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "polyhedron_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class PolyhedronScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -0,0 +1,22 @@
1
+ {
2
+ "rpc": "vertex_scalar_range",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "minimum": {
10
+ "type": "number"
11
+ },
12
+ "maximum": {
13
+ "type": "number"
14
+ }
15
+ },
16
+ "required": [
17
+ "id",
18
+ "minimum",
19
+ "maximum"
20
+ ],
21
+ "additionalProperties": false
22
+ }
@@ -0,0 +1,12 @@
1
+ from dataclasses_json import DataClassJsonMixin
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class VertexScalarRange(DataClassJsonMixin):
7
+ def __post_init__(self) -> None:
8
+ print(self, flush=True)
9
+
10
+ id: str
11
+ maximum: float
12
+ minimum: float
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenGeodeWeb-Viewer
3
- Version: 1.13.4rc1
3
+ Version: 1.14.0rc1
4
4
  Summary: OpenGeodeWeb-Viewer is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
5
5
  Author-email: Geode-solutions <team-web@geode-solutions.com>
6
6
  Project-URL: Homepage, https://github.com/Geode-solutions/OpenGeodeWeb-Viewer
@@ -35,7 +35,7 @@ Requires-Dist: vtk==9.5.2
35
35
  Requires-Dist: websocket-client>=1
36
36
  Requires-Dist: wslink==1.12.4
37
37
  Requires-Dist: yarl>=1
38
- Requires-Dist: opengeodeweb-microservice==1.*,>=1.0.12rc1
38
+ Requires-Dist: opengeodeweb-microservice==1.*,>=1.0.12
39
39
  Dynamic: license-file
40
40
 
41
41
  # OpenGeodeWeb-Viewer
@@ -12,57 +12,73 @@ opengeodeweb_viewer/rpc/generic/schemas/deregister.json,sha256=HqFQ1Y8Y4Xj08gDN_
12
12
  opengeodeweb_viewer/rpc/generic/schemas/deregister.py,sha256=Seu-KiYPh8Bb1Wxd4W1WtLAoan4xuPjxOPtgqlK9D_w,215
13
13
  opengeodeweb_viewer/rpc/generic/schemas/register.json,sha256=45uECnAbC7Y7uBAZ0pRTzrSg3G2fL3yn4Cz0eby6KrQ,192
14
14
  opengeodeweb_viewer/rpc/generic/schemas/register.py,sha256=5Y7idPuRLHyADe8nSLixFd04EmCKHsZuGOV1sHibebU,213
15
- opengeodeweb_viewer/rpc/mesh/mesh_protocols.py,sha256=dPcTLammyqmfLj1frca8lQfeRS8N46ipnT-cX3-6bTo,6383
16
- opengeodeweb_viewer/rpc/mesh/cells/cells_protocols.py,sha256=Xzb6rfR1bCUGXu5JE5fpTOkn6dujyLzvb3E28vEdBN8,2384
17
- opengeodeweb_viewer/rpc/mesh/cells/schemas/__init__.py,sha256=Ok-EWaTjYQPT-V995l0kexPrE5F6To8sAhqyFyjdogM,109
15
+ opengeodeweb_viewer/rpc/mesh/mesh_protocols.py,sha256=gwWJ9S5tUx5amtbSqF2-2DySI_yWeKukM5JV7qQpazo,6569
16
+ opengeodeweb_viewer/rpc/mesh/cells/cells_protocols.py,sha256=3-Q-rC7tyqF5VXosBXhqq-EOqIvFJ6y6qjNenVrKquU,3324
17
+ opengeodeweb_viewer/rpc/mesh/cells/schemas/__init__.py,sha256=w8oKaxvnO6u_9dwXvM8nG18iYWaQE4sJkFWtui29p2o,177
18
18
  opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_attribute.json,sha256=KSjcfw2WSKS7LvP85vAI9rAtKdunvjewtBcsLlCCHuc,265
19
19
  opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_attribute.py,sha256=b0JFK7MFPxh4a3bJIa9DOWZo82geSpC86pWWLuicbYU,232
20
+ opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_scalar_range.json,sha256=VS5YEpytrMnURuRMzDxK93KMPjYNjGWEPb0FUHNXHYA,326
21
+ opengeodeweb_viewer/rpc/mesh/cells/schemas/cell_scalar_range.py,sha256=5hHzKIU2SOMIrPNoJkHRBghV9FVkR3ZavQoNguFa_Ng,258
20
22
  opengeodeweb_viewer/rpc/mesh/cells/schemas/color.json,sha256=tGWsxiaaYsiDmyF7Ed1RTWxqfe63mHAWxSi2SmTUN6Y,818
21
23
  opengeodeweb_viewer/rpc/mesh/cells/schemas/color.py,sha256=RdjSQB-ZKsJHP10roQV0pVt8jvu6trJ20NuZTVrNAIM,444
22
24
  opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_attribute.json,sha256=0ep_P2-DyUs8E9pnIceArInwyLf-JujiJh1FmsBkpNA,278
23
25
  opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_attribute.py,sha256=iHcmXyaEiftkiCEMIK3KcUO-Iq3SBjpSy6PEP3Z8e2s,234
26
+ opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_scalar_range.json,sha256=TVZcvyhdhR-59m-tLuKsem3KNAV_gmh9w_YQTS_RIWk,328
27
+ opengeodeweb_viewer/rpc/mesh/cells/schemas/vertex_scalar_range.py,sha256=5Vmf-HctIcH18C3hapDRpA6lpu0MjoomDxLDFC4gGPc,260
24
28
  opengeodeweb_viewer/rpc/mesh/cells/schemas/visibility.json,sha256=MSlbqbHsPOiUZXzSfVrZXtYIMbnBQR4PhRKtrkZHtv8,263
25
29
  opengeodeweb_viewer/rpc/mesh/cells/schemas/visibility.py,sha256=OAC2F5S08RuSte2V1elIU1UwZf-IKiA39eY8yOMqr3I,236
26
- opengeodeweb_viewer/rpc/mesh/edges/mesh_edges_protocols.py,sha256=Mfd0yBsTFK5XL-KQzEDS7G_Yp3Oll6EwAipJGhznDmg,1855
27
- opengeodeweb_viewer/rpc/mesh/edges/schemas/__init__.py,sha256=euXOqXOetrDI1WcEjWS39wOehAVP_OSFDLYaO55MPMI,120
30
+ opengeodeweb_viewer/rpc/mesh/edges/mesh_edges_protocols.py,sha256=zPfaPr5SxtMDChVh0WF1K6SHYH5jOmrcF34_mQi4GeQ,2782
31
+ opengeodeweb_viewer/rpc/mesh/edges/schemas/__init__.py,sha256=l36Zg3VMDWHmT5F_MPen4mCPPB5UFGkmojuiwnlWPDM,155
28
32
  opengeodeweb_viewer/rpc/mesh/edges/schemas/color.json,sha256=tGWsxiaaYsiDmyF7Ed1RTWxqfe63mHAWxSi2SmTUN6Y,818
29
33
  opengeodeweb_viewer/rpc/mesh/edges/schemas/color.py,sha256=RdjSQB-ZKsJHP10roQV0pVt8jvu6trJ20NuZTVrNAIM,444
30
34
  opengeodeweb_viewer/rpc/mesh/edges/schemas/size.json,sha256=tnHXOHMvdaymp1mfptzecSUadpI_zvvm5IZJQ6oZARQ,245
31
35
  opengeodeweb_viewer/rpc/mesh/edges/schemas/size.py,sha256=rMuHn079FcRIIcyp6EUMrMEzf6FFL3YgzLs4e8uxn0Q,223
32
36
  opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_attribute.json,sha256=0ep_P2-DyUs8E9pnIceArInwyLf-JujiJh1FmsBkpNA,278
33
37
  opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_attribute.py,sha256=iHcmXyaEiftkiCEMIK3KcUO-Iq3SBjpSy6PEP3Z8e2s,234
38
+ opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_scalar_range.json,sha256=TVZcvyhdhR-59m-tLuKsem3KNAV_gmh9w_YQTS_RIWk,328
39
+ opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_scalar_range.py,sha256=5Vmf-HctIcH18C3hapDRpA6lpu0MjoomDxLDFC4gGPc,260
34
40
  opengeodeweb_viewer/rpc/mesh/edges/schemas/visibility.json,sha256=MSlbqbHsPOiUZXzSfVrZXtYIMbnBQR4PhRKtrkZHtv8,263
35
41
  opengeodeweb_viewer/rpc/mesh/edges/schemas/visibility.py,sha256=OAC2F5S08RuSte2V1elIU1UwZf-IKiA39eY8yOMqr3I,236
36
42
  opengeodeweb_viewer/rpc/mesh/edges/schemas/width.json,sha256=-TrnInMPuQFKcCBuL9ihrQQNGyGzX8JgZhT_aiQ8Q2c,246
37
43
  opengeodeweb_viewer/rpc/mesh/edges/schemas/width.py,sha256=ms0xK5dePaWdf4WiV1Zeqcro00-6yNmNVcP6NTjKkR4,227
38
- opengeodeweb_viewer/rpc/mesh/points/mesh_points_protocols.py,sha256=IzXR_J3aYtMaSoVqHJ8WNrg18vCUhDMCioM5QjMOcF8,2322
39
- opengeodeweb_viewer/rpc/mesh/points/schemas/__init__.py,sha256=J_FnIWPfiS4dvZWkc_6Fu-x_DQPbfWnCpbHJVRAaSas,99
44
+ opengeodeweb_viewer/rpc/mesh/points/mesh_points_protocols.py,sha256=w7xM_btiu_0zhsD3ALpYabYK4Yya6Br8_d5CA1aPqx8,2808
45
+ opengeodeweb_viewer/rpc/mesh/points/schemas/__init__.py,sha256=Ro-y5bba615Bsavd71rOemP16D7QgSysNFcl0oGicIA,134
40
46
  opengeodeweb_viewer/rpc/mesh/points/schemas/color.json,sha256=tGWsxiaaYsiDmyF7Ed1RTWxqfe63mHAWxSi2SmTUN6Y,818
41
47
  opengeodeweb_viewer/rpc/mesh/points/schemas/color.py,sha256=RdjSQB-ZKsJHP10roQV0pVt8jvu6trJ20NuZTVrNAIM,444
42
48
  opengeodeweb_viewer/rpc/mesh/points/schemas/size.json,sha256=BCAKwWmwludQp2oGHDgKW45s7FU8Y16Ah2ILPlu2Nos,244
43
49
  opengeodeweb_viewer/rpc/mesh/points/schemas/size.py,sha256=vpBbBqZDaS_keS0cjcQQWFgR7QDpmq2a5lXC3C6abcA,225
44
50
  opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_attribute.json,sha256=0ep_P2-DyUs8E9pnIceArInwyLf-JujiJh1FmsBkpNA,278
45
51
  opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_attribute.py,sha256=iHcmXyaEiftkiCEMIK3KcUO-Iq3SBjpSy6PEP3Z8e2s,234
52
+ opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_scalar_range.json,sha256=TVZcvyhdhR-59m-tLuKsem3KNAV_gmh9w_YQTS_RIWk,328
53
+ opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_scalar_range.py,sha256=5Vmf-HctIcH18C3hapDRpA6lpu0MjoomDxLDFC4gGPc,260
46
54
  opengeodeweb_viewer/rpc/mesh/points/schemas/visibility.json,sha256=MSlbqbHsPOiUZXzSfVrZXtYIMbnBQR4PhRKtrkZHtv8,263
47
55
  opengeodeweb_viewer/rpc/mesh/points/schemas/visibility.py,sha256=OAC2F5S08RuSte2V1elIU1UwZf-IKiA39eY8yOMqr3I,236
48
- opengeodeweb_viewer/rpc/mesh/polygons/polygons_protocols.py,sha256=zruaiXPN0YMkpXSKkAU8j2_xUX-YBpabEbr1ExU2L00,2496
49
- opengeodeweb_viewer/rpc/mesh/polygons/schemas/__init__.py,sha256=lXKXC0Sgb8e-a_F7v3uC2tirGQbhb_sBqG2gnPQ7nyE,112
56
+ opengeodeweb_viewer/rpc/mesh/polygons/polygons_protocols.py,sha256=jVScHAhXEoXjSZiJfeeBKWF5bg8yRJdWiCcbkGhmF6o,3492
57
+ opengeodeweb_viewer/rpc/mesh/polygons/schemas/__init__.py,sha256=43hLmfw1vY05tcwILF53ePUVr2Szfbqd8aRVQBOAHU4,183
50
58
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/color.json,sha256=tGWsxiaaYsiDmyF7Ed1RTWxqfe63mHAWxSi2SmTUN6Y,818
51
59
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/color.py,sha256=RdjSQB-ZKsJHP10roQV0pVt8jvu6trJ20NuZTVrNAIM,444
52
60
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_attribute.json,sha256=zK3BPn496ldXZWbK6NP1UQsBzE-OQ9TuVBpubC1Vje8,279
53
61
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_attribute.py,sha256=ZEGzCZRugt6TcyrB3iVMKaRyotc7CipjbzpGPmhXFJU,235
62
+ opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_scalar_range.json,sha256=vJ8yv0mTbH-IRYy4Q4PB2pXCZn0E-K_QpKjO3kJVgHU,329
63
+ opengeodeweb_viewer/rpc/mesh/polygons/schemas/polygon_scalar_range.py,sha256=s37Z6boLeYwb1TA5Jn4STbdHnbuAzQwvO1vgtFvh3gk,261
54
64
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_attribute.json,sha256=0ep_P2-DyUs8E9pnIceArInwyLf-JujiJh1FmsBkpNA,278
55
65
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_attribute.py,sha256=iHcmXyaEiftkiCEMIK3KcUO-Iq3SBjpSy6PEP3Z8e2s,234
66
+ opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_scalar_range.json,sha256=TVZcvyhdhR-59m-tLuKsem3KNAV_gmh9w_YQTS_RIWk,328
67
+ opengeodeweb_viewer/rpc/mesh/polygons/schemas/vertex_scalar_range.py,sha256=5Vmf-HctIcH18C3hapDRpA6lpu0MjoomDxLDFC4gGPc,260
56
68
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/visibility.json,sha256=MSlbqbHsPOiUZXzSfVrZXtYIMbnBQR4PhRKtrkZHtv8,263
57
69
  opengeodeweb_viewer/rpc/mesh/polygons/schemas/visibility.py,sha256=OAC2F5S08RuSte2V1elIU1UwZf-IKiA39eY8yOMqr3I,236
58
- opengeodeweb_viewer/rpc/mesh/polyhedra/polyhedra_protocols.py,sha256=e_R1hpZPQTkPMnD6_kAy2e90ZrCUbWnaux6wmdoKx1M,2540
59
- opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/__init__.py,sha256=kkx2otsOhsFL0zLocbrNKzkCvAlN_wQsfFMviic6RBU,115
70
+ opengeodeweb_viewer/rpc/mesh/polyhedra/polyhedra_protocols.py,sha256=oS4cwj4sL0NEtVcDfTvQzVkHMErP9-5kjwOW2B0u2ko,3574
71
+ opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/__init__.py,sha256=18-sKwCaalHA7SdqC7qysMkAFPZ2ymL01WGvMXSB2bc,189
60
72
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/color.json,sha256=tGWsxiaaYsiDmyF7Ed1RTWxqfe63mHAWxSi2SmTUN6Y,818
61
73
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/color.py,sha256=RdjSQB-ZKsJHP10roQV0pVt8jvu6trJ20NuZTVrNAIM,444
62
74
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_attribute.json,sha256=skILAhL5uGjvxB0ccUyyvh45ohnX4Tj0Y9xt2P-YTQ4,282
63
75
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_attribute.py,sha256=bqypKCNzPcM-ZyxEQdqv4_fUh_ZXCXx8fvIHMR0deH8,238
76
+ opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_scalar_range.json,sha256=nXgkeuqVeiygfLEdFBwz6nTYqvg_rTlaLz0xFqSXMNg,332
77
+ opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/polyhedron_scalar_range.py,sha256=ycqsPO0PnBT-Qm25Gpz5R_v8dLmZKoc4PszUC_3Z61g,264
64
78
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_attribute.json,sha256=0ep_P2-DyUs8E9pnIceArInwyLf-JujiJh1FmsBkpNA,278
65
79
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_attribute.py,sha256=iHcmXyaEiftkiCEMIK3KcUO-Iq3SBjpSy6PEP3Z8e2s,234
80
+ opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_scalar_range.json,sha256=TVZcvyhdhR-59m-tLuKsem3KNAV_gmh9w_YQTS_RIWk,328
81
+ opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/vertex_scalar_range.py,sha256=5Vmf-HctIcH18C3hapDRpA6lpu0MjoomDxLDFC4gGPc,260
66
82
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/visibility.json,sha256=MSlbqbHsPOiUZXzSfVrZXtYIMbnBQR4PhRKtrkZHtv8,263
67
83
  opengeodeweb_viewer/rpc/mesh/polyhedra/schemas/visibility.py,sha256=OAC2F5S08RuSte2V1elIU1UwZf-IKiA39eY8yOMqr3I,236
68
84
  opengeodeweb_viewer/rpc/mesh/schemas/__init__.py,sha256=leyoNVGrBWMpX77-vSwdy7gkA59Cx-VSbq4MkvVBL54,150
@@ -153,9 +169,9 @@ opengeodeweb_viewer/rpc/viewer/schemas/update_camera.json,sha256=OtovtEwLvR4L63y
153
169
  opengeodeweb_viewer/rpc/viewer/schemas/update_camera.py,sha256=noEZ3V2AysEn5NFXBFLwKE0I4sb0KB5fnP9KaJL1hms,521
154
170
  opengeodeweb_viewer/rpc/viewer/schemas/update_data.json,sha256=h1T_aNWZFaJ-LTXyqjTK4MLbFJgt9vH23CHY1Gr55f4,195
155
171
  opengeodeweb_viewer/rpc/viewer/schemas/update_data.py,sha256=E-S4ZP_6nYhlFitKp2ynvztDcmeL5zqoAZD96WyvIhw,215
156
- opengeodeweb_viewer-1.13.4rc1.dist-info/licenses/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
157
- opengeodeweb_viewer-1.13.4rc1.dist-info/METADATA,sha256=wT7hcq2mn8tM4pgII2uI8UiRhmz3ryuIRx1d8xgc7yo,1506
158
- opengeodeweb_viewer-1.13.4rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
159
- opengeodeweb_viewer-1.13.4rc1.dist-info/entry_points.txt,sha256=j4uMjTs3z5mwZYxNRBtnmuQV5mDH9XUFHfVTDMEciG0,83
160
- opengeodeweb_viewer-1.13.4rc1.dist-info/top_level.txt,sha256=wTvrUNOJeR3p9tJ68l0AzSUSWPwA2mCeCZHYBafdoP8,20
161
- opengeodeweb_viewer-1.13.4rc1.dist-info/RECORD,,
172
+ opengeodeweb_viewer-1.14.0rc1.dist-info/licenses/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
173
+ opengeodeweb_viewer-1.14.0rc1.dist-info/METADATA,sha256=GWzZAugRf7d10SWpEIisaB1P2xItNDPIqU0SKjsRhdI,1503
174
+ opengeodeweb_viewer-1.14.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
175
+ opengeodeweb_viewer-1.14.0rc1.dist-info/entry_points.txt,sha256=j4uMjTs3z5mwZYxNRBtnmuQV5mDH9XUFHfVTDMEciG0,83
176
+ opengeodeweb_viewer-1.14.0rc1.dist-info/top_level.txt,sha256=wTvrUNOJeR3p9tJ68l0AzSUSWPwA2mCeCZHYBafdoP8,20
177
+ opengeodeweb_viewer-1.14.0rc1.dist-info/RECORD,,