-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeode_point_set2d.py
More file actions
107 lines (83 loc) · 3.35 KB
/
Copy pathgeode_point_set2d.py
File metadata and controls
107 lines (83 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Standard library imports
from __future__ import annotations
# Third party imports
import opengeode as og
import opengeode_geosciences as og_geosciences
import opengeode_inspector as og_inspector
import geode_viewables as viewables
# Local application imports
from .types import GeodeMeshType
from .geode_vertex_set import GeodeVertexSet
class GeodePointSet2D(GeodeVertexSet):
point_set: og.PointSet2D
def __init__(self, point_set: og.PointSet2D | None = None) -> None:
self.point_set = point_set if point_set is not None else og.PointSet2D.create()
super().__init__(self.point_set)
@classmethod
def geode_object_type(cls) -> GeodeMeshType:
return "PointSet2D"
def native_extension(self) -> str:
return self.point_set.native_extension()
@classmethod
def is_3D(cls) -> bool:
return False
@classmethod
def is_viewable(cls) -> bool:
return True
def builder(self) -> og.PointSetBuilder2D:
return og.PointSetBuilder2D.create(self.point_set)
@classmethod
def load(cls, filename: str) -> GeodePointSet2D:
return GeodePointSet2D(og.load_point_set2D(filename))
@classmethod
def additional_files(cls, filename: str) -> og.AdditionalFiles:
return og.point_set_additional_files2D(filename)
@classmethod
def is_loadable(cls, filename: str) -> og.Percentage:
return og.is_point_set_loadable2D(filename)
@classmethod
def input_extensions(cls) -> list[str]:
return og.PointSetInputFactory2D.list_creators()
@classmethod
def output_extensions(cls) -> list[str]:
return og.PointSetOutputFactory2D.list_creators()
@classmethod
def object_priority(cls, filename: str) -> int:
return og.point_set_object_priority2D(filename)
def is_saveable(self, filename: str) -> bool:
return og.is_point_set_saveable2D(self.point_set, filename)
def save(self, filename: str) -> list[str]:
return og.save_point_set2D(self.point_set, filename)
def save_viewable(self, filename_without_extension: str) -> str:
return viewables.save_viewable_point_set2D(
self.point_set,
filename_without_extension,
)
def save_light_viewable(self, filename_without_extension: str) -> str:
return viewables.save_light_viewable_point_set2D(
self.point_set,
filename_without_extension,
)
def inspect(self) -> og_inspector.PointSetInspectionResult:
return og_inspector.inspect_point_set2D(self.point_set)
def assign_crs(
self, crs_name: str, info: og_geosciences.GeographicCoordinateSystemInfo
) -> None:
builder = self.builder()
og_geosciences.assign_point_set_geographic_coordinate_system_info2D(
self.point_set, builder, crs_name, info
)
def convert_crs(
self, crs_name: str, info: og_geosciences.GeographicCoordinateSystemInfo
) -> None:
builder = self.builder()
og_geosciences.convert_point_set_coordinate_reference_system2D(
self.point_set, builder, crs_name, info
)
def create_crs(
self, crs_name: str, input: og.CoordinateSystem2D, output: og.CoordinateSystem2D
) -> None:
builder = self.builder()
og.create_point_set_coordinate_system2D(
self.point_set, builder, crs_name, input, output
)