aspose-gis-net 25.7.0__py3-none-macosx_11_0_arm64.whl → 25.9.0__py3-none-macosx_11_0_arm64.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.

Potentially problematic release.


This version of aspose-gis-net might be problematic. Click here for more details.

Files changed (102) hide show
  1. aspose/assemblies/gis/Aspose.GIS.dll +0 -0
  2. aspose/assemblies/gis/Microsoft.Data.Sqlite.dll +0 -0
  3. aspose/assemblies/gis/SQLitePCLRaw.batteries_v2.dll +0 -0
  4. aspose/assemblies/gis/SQLitePCLRaw.core.dll +0 -0
  5. aspose/assemblies/gis/SQLitePCLRaw.provider.e_sqlite3.dll +0 -0
  6. aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
  7. aspose/assemblies/gis/libe_sqlite3.dylib +0 -0
  8. aspose/gis/__init__.pyi +606 -76
  9. aspose/gis/common/__init__.pyi +101 -9
  10. aspose/gis/common/formats/__init__.pyi +2 -0
  11. aspose/gis/common/formats/dbase/__init__.pyi +21 -0
  12. aspose/gis/common/formats/gdbtable/__init__.pyi +38 -1
  13. aspose/gis/common/formats/mapinfo/__init__.pyi +50 -7
  14. aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +42 -1
  15. aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +49 -5
  16. aspose/gis/common/formats/mapinfo/styling/__init__.pyi +34 -0
  17. aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +2 -0
  18. aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +71 -11
  19. aspose/gis/common/formats/wkb/__init__.pyi +2 -0
  20. aspose/gis/common/formats/wkt/__init__.pyi +28 -0
  21. aspose/gis/common/formats/xml/__init__.pyi +14 -0
  22. aspose/gis/common/io/__init__.pyi +33 -8
  23. aspose/gis/epsg/__init__.pyi +71 -0
  24. aspose/gis/formats/__init__.pyi +2 -0
  25. aspose/gis/formats/bmpw/__init__.pyi +2 -0
  26. aspose/gis/formats/csv/__init__.pyi +9 -0
  27. aspose/gis/formats/database/__init__.pyi +5 -0
  28. aspose/gis/formats/database/dataediting/__init__.pyi +2 -0
  29. aspose/gis/formats/database/fromdefinition/__init__.pyi +2 -0
  30. aspose/gis/formats/esriascii/__init__.pyi +6 -0
  31. aspose/gis/formats/esrijson/__init__.pyi +6 -0
  32. aspose/gis/formats/filegdb/__init__.pyi +9 -0
  33. aspose/gis/formats/gdal/__init__.pyi +8 -0
  34. aspose/gis/formats/geojson/__init__.pyi +6 -0
  35. aspose/gis/formats/geojsonseq/__init__.pyi +6 -0
  36. aspose/gis/formats/geopackage/__init__.pyi +746 -0
  37. aspose/gis/formats/geotiff/__init__.pyi +6 -0
  38. aspose/gis/formats/gml/__init__.pyi +6 -0
  39. aspose/gis/formats/gpx/__init__.pyi +6 -0
  40. aspose/gis/formats/infile/__init__.pyi +6 -0
  41. aspose/gis/formats/inmemory/__init__.pyi +2 -0
  42. aspose/gis/formats/jpegw/__init__.pyi +2 -0
  43. aspose/gis/formats/kml/__init__.pyi +526 -0
  44. aspose/gis/formats/kml/specificfields/__init__.pyi +1131 -0
  45. aspose/gis/formats/kml/styles/__init__.pyi +41 -2
  46. aspose/gis/formats/mapinfointerchange/__init__.pyi +6 -0
  47. aspose/gis/formats/mapinfotab/__init__.pyi +6 -0
  48. aspose/gis/formats/osmxml/__init__.pyi +6 -0
  49. aspose/gis/formats/pngw/__init__.pyi +2 -0
  50. aspose/gis/formats/postgis/__init__.pyi +6 -0
  51. aspose/gis/formats/shapefile/__init__.pyi +6 -0
  52. aspose/gis/formats/sqlserver/__init__.pyi +6 -0
  53. aspose/gis/formats/tiffw/__init__.pyi +2 -0
  54. aspose/gis/formats/topojson/__init__.pyi +15 -0
  55. aspose/gis/formats/worldfile/__init__.pyi +2 -0
  56. aspose/gis/formats/xyztile/__init__.pyi +17 -0
  57. aspose/gis/geometries/__init__.pyi +853 -324
  58. aspose/gis/geotools/__init__.pyi +46 -0
  59. aspose/gis/geotools/extensions/__init__.pyi +2 -0
  60. aspose/gis/geotools/layersmap/__init__.pyi +17 -0
  61. aspose/gis/geotools/mapbuilder/__init__.pyi +9 -0
  62. aspose/gis/geotools/wayanalyzer/__init__.pyi +14 -0
  63. aspose/gis/imagemetadata/__init__.pyi +5 -3
  64. aspose/gis/indexing/__init__.pyi +10 -0
  65. aspose/gis/indexing/bplustree/__init__.pyi +5 -0
  66. aspose/gis/indexing/qixtree/__init__.pyi +5 -0
  67. aspose/gis/indexing/rtree/__init__.pyi +5 -0
  68. aspose/gis/labeling/__init__.pyi +34 -0
  69. aspose/gis/labeling/line/__init__.pyi +26 -0
  70. aspose/gis/painting/__init__.pyi +87 -8
  71. aspose/gis/projections/__init__.pyi +16 -0
  72. aspose/gis/raster/__init__.pyi +36 -0
  73. aspose/gis/raster/web/__init__.pyi +8 -0
  74. aspose/gis/relationship/__init__.pyi +2 -0
  75. aspose/gis/relationship/joins/__init__.pyi +10 -0
  76. aspose/gis/rendering/__init__.pyi +126 -10
  77. aspose/gis/rendering/colorizers/__init__.pyi +39 -10
  78. aspose/gis/rendering/formats/__init__.pyi +2 -0
  79. aspose/gis/rendering/formats/bmp/__init__.pyi +2 -0
  80. aspose/gis/rendering/formats/jpeg/__init__.pyi +2 -0
  81. aspose/gis/rendering/formats/png/__init__.pyi +2 -0
  82. aspose/gis/rendering/formats/svg/__init__.pyi +2 -0
  83. aspose/gis/rendering/labelings/__init__.pyi +73 -10
  84. aspose/gis/rendering/sld/__init__.pyi +5 -0
  85. aspose/gis/rendering/symbolizers/__init__.pyi +193 -28
  86. aspose/gis/spatialreferencing/__init__.pyi +504 -154
  87. aspose/gis/topology/__init__.pyi +39 -0
  88. aspose/gis/topology/algorithms/__init__.pyi +2 -0
  89. aspose/gis/topology/buffer/__init__.pyi +8 -0
  90. aspose/gis/topology/graph/__init__.pyi +7 -0
  91. aspose/gis.cpython-310-darwin.so +0 -0
  92. aspose/gis.cpython-311-darwin.so +0 -0
  93. aspose/gis.cpython-312-darwin.so +0 -0
  94. aspose/gis.cpython-313-darwin.so +0 -0
  95. aspose/gis.cpython-38-darwin.so +0 -0
  96. aspose/gis.cpython-39-darwin.so +0 -0
  97. aspose/pydrawing/__init__.pyi +29 -7
  98. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +6 -3
  99. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +103 -99
  100. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
  101. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
  102. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1131 @@
1
+ from typing import List, Optional, Dict, Iterable, Any, overload
2
+ import io
3
+ import collections.abc
4
+ from collections.abc import Sequence
5
+ from datetime import datetime
6
+ from aspose.pyreflection import Type
7
+ import aspose.pycore
8
+ import aspose.pydrawing
9
+ from uuid import UUID
10
+ import aspose.gis
11
+ import aspose.gis.common
12
+ import aspose.gis.common.formats
13
+ import aspose.gis.common.formats.dbase
14
+ import aspose.gis.common.formats.gdbtable
15
+ import aspose.gis.common.formats.mapinfo
16
+ import aspose.gis.common.formats.mapinfo.graphicalobjects
17
+ import aspose.gis.common.formats.mapinfo.interchangeformat
18
+ import aspose.gis.common.formats.mapinfo.styling
19
+ import aspose.gis.common.formats.mapinfo.tabformat
20
+ import aspose.gis.common.formats.mapinfo.tabformat.map
21
+ import aspose.gis.common.formats.wkb
22
+ import aspose.gis.common.formats.wkt
23
+ import aspose.gis.common.formats.xml
24
+ import aspose.gis.common.io
25
+ import aspose.gis.epsg
26
+ import aspose.gis.formats
27
+ import aspose.gis.formats.bmpw
28
+ import aspose.gis.formats.csv
29
+ import aspose.gis.formats.database
30
+ import aspose.gis.formats.database.dataediting
31
+ import aspose.gis.formats.database.fromdefinition
32
+ import aspose.gis.formats.esriascii
33
+ import aspose.gis.formats.esrijson
34
+ import aspose.gis.formats.filegdb
35
+ import aspose.gis.formats.gdal
36
+ import aspose.gis.formats.geojson
37
+ import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
39
+ import aspose.gis.formats.geotiff
40
+ import aspose.gis.formats.gml
41
+ import aspose.gis.formats.gpx
42
+ import aspose.gis.formats.infile
43
+ import aspose.gis.formats.inmemory
44
+ import aspose.gis.formats.jpegw
45
+ import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
47
+ import aspose.gis.formats.kml.styles
48
+ import aspose.gis.formats.mapinfointerchange
49
+ import aspose.gis.formats.mapinfotab
50
+ import aspose.gis.formats.osmxml
51
+ import aspose.gis.formats.pngw
52
+ import aspose.gis.formats.postgis
53
+ import aspose.gis.formats.shapefile
54
+ import aspose.gis.formats.sqlserver
55
+ import aspose.gis.formats.tiffw
56
+ import aspose.gis.formats.topojson
57
+ import aspose.gis.formats.worldfile
58
+ import aspose.gis.formats.xyztile
59
+ import aspose.gis.geometries
60
+ import aspose.gis.geotools
61
+ import aspose.gis.geotools.extensions
62
+ import aspose.gis.geotools.layersmap
63
+ import aspose.gis.geotools.mapbuilder
64
+ import aspose.gis.geotools.wayanalyzer
65
+ import aspose.gis.imagemetadata
66
+ import aspose.gis.indexing
67
+ import aspose.gis.indexing.bplustree
68
+ import aspose.gis.indexing.qixtree
69
+ import aspose.gis.indexing.rtree
70
+ import aspose.gis.labeling
71
+ import aspose.gis.labeling.line
72
+ import aspose.gis.painting
73
+ import aspose.gis.projections
74
+ import aspose.gis.raster
75
+ import aspose.gis.raster.web
76
+ import aspose.gis.relationship
77
+ import aspose.gis.relationship.joins
78
+ import aspose.gis.rendering
79
+ import aspose.gis.rendering.colorizers
80
+ import aspose.gis.rendering.formats
81
+ import aspose.gis.rendering.formats.bmp
82
+ import aspose.gis.rendering.formats.jpeg
83
+ import aspose.gis.rendering.formats.png
84
+ import aspose.gis.rendering.formats.svg
85
+ import aspose.gis.rendering.labelings
86
+ import aspose.gis.rendering.sld
87
+ import aspose.gis.rendering.symbolizers
88
+ import aspose.gis.spatialreferencing
89
+ import aspose.gis.topology
90
+ import aspose.gis.topology.algorithms
91
+ import aspose.gis.topology.buffer
92
+ import aspose.gis.topology.graph
93
+
94
+ class IconInfo(aspose.gis.XmlNodeLink):
95
+ '''IconInfo Node from KML Format'''
96
+
97
+ def __init__(self, link : aspose.gis.NodeLink) -> None:
98
+ '''Initializes a new instance of the :py:class:`aspose.gis.formats.kml.specificfields.IconInfo` class.
99
+
100
+ :param link: The node from which it will be created'''
101
+ raise NotImplementedError()
102
+
103
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
104
+ '''Gets the node by name. Please note, this method will return the first found Node.
105
+ Doesn\'t matter in what level it will be found
106
+
107
+ :param name: The name of the node you want to find.
108
+ :returns: The found node with NodeLink API'''
109
+ raise NotImplementedError()
110
+
111
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
112
+ '''Gets the all nodes with the specified name.
113
+ Doesn\'t matter in what level it will be found
114
+
115
+ :param names: The names.
116
+ :returns: The array of found nodes.'''
117
+ raise NotImplementedError()
118
+
119
+ def as_double(self) -> float:
120
+ '''Returns value casted to the double.
121
+
122
+ :returns: The double value of node'''
123
+ raise NotImplementedError()
124
+
125
+ def as_int(self) -> int:
126
+ '''Returns value casted to the int.
127
+
128
+ :returns: The int value of node'''
129
+ raise NotImplementedError()
130
+
131
+ def as_bool(self) -> bool:
132
+ '''Returns value casted to the bool
133
+
134
+ :returns: The bool value of node'''
135
+ raise NotImplementedError()
136
+
137
+ def get_node_content(self) -> str:
138
+ '''Gets the content of the node.
139
+
140
+ :returns: The content of node'''
141
+ raise NotImplementedError()
142
+
143
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
144
+ '''Finds the XML nodes by the name
145
+
146
+ :param name: The name of the node
147
+ :returns: Array of XML Nodes by name'''
148
+ raise NotImplementedError()
149
+
150
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
151
+ '''Adds the child.
152
+
153
+ :param child: The child.'''
154
+ raise NotImplementedError()
155
+
156
+ @property
157
+ def node_name(self) -> str:
158
+ '''Gets the name.'''
159
+ raise NotImplementedError()
160
+
161
+ @node_name.setter
162
+ def node_name(self, value : str) -> None:
163
+ '''Sets the name.'''
164
+ raise NotImplementedError()
165
+
166
+ @property
167
+ def node_value(self) -> str:
168
+ '''Gets the value.'''
169
+ raise NotImplementedError()
170
+
171
+ @node_value.setter
172
+ def node_value(self, value : str) -> None:
173
+ '''Sets the value.'''
174
+ raise NotImplementedError()
175
+
176
+ @property
177
+ def children(self) -> List[aspose.gis.NodeLink]:
178
+ '''Gets the children.'''
179
+ raise NotImplementedError()
180
+
181
+ @property
182
+ def name_without_prefix(self) -> str:
183
+ '''Gets the name without prefix.'''
184
+ raise NotImplementedError()
185
+
186
+ @property
187
+ def prefix(self) -> str:
188
+ '''Gets the prefix.'''
189
+ raise NotImplementedError()
190
+
191
+ @property
192
+ def href(self) -> str:
193
+ '''Gets the href.'''
194
+ raise NotImplementedError()
195
+
196
+ @href.setter
197
+ def href(self, value : str) -> None:
198
+ '''Sets the href.'''
199
+ raise NotImplementedError()
200
+
201
+
202
+ class KmlGroundOverlayInfo(aspose.gis.XmlNodeLink):
203
+ '''Specifies object from Kml \'GroundOverlay\' node'''
204
+
205
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
206
+ '''Gets the node by name. Please note, this method will return the first found Node.
207
+ Doesn\'t matter in what level it will be found
208
+
209
+ :param name: The name of the node you want to find.
210
+ :returns: The found node with NodeLink API'''
211
+ raise NotImplementedError()
212
+
213
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
214
+ '''Gets the all nodes with the specified name.
215
+ Doesn\'t matter in what level it will be found
216
+
217
+ :param names: The names.
218
+ :returns: The array of found nodes.'''
219
+ raise NotImplementedError()
220
+
221
+ def as_double(self) -> float:
222
+ '''Returns value casted to the double.
223
+
224
+ :returns: The double value of node'''
225
+ raise NotImplementedError()
226
+
227
+ def as_int(self) -> int:
228
+ '''Returns value casted to the int.
229
+
230
+ :returns: The int value of node'''
231
+ raise NotImplementedError()
232
+
233
+ def as_bool(self) -> bool:
234
+ '''Returns value casted to the bool
235
+
236
+ :returns: The bool value of node'''
237
+ raise NotImplementedError()
238
+
239
+ def get_node_content(self) -> str:
240
+ '''Gets the content of the node.
241
+
242
+ :returns: The content of node'''
243
+ raise NotImplementedError()
244
+
245
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
246
+ '''Finds the XML nodes by the name
247
+
248
+ :param name: The name of the node
249
+ :returns: Array of XML Nodes by name'''
250
+ raise NotImplementedError()
251
+
252
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
253
+ '''Adds the child.
254
+
255
+ :param child: The child.'''
256
+ raise NotImplementedError()
257
+
258
+ @property
259
+ def node_name(self) -> str:
260
+ '''Gets the name.'''
261
+ raise NotImplementedError()
262
+
263
+ @node_name.setter
264
+ def node_name(self, value : str) -> None:
265
+ '''Sets the name.'''
266
+ raise NotImplementedError()
267
+
268
+ @property
269
+ def node_value(self) -> str:
270
+ '''Gets the value.'''
271
+ raise NotImplementedError()
272
+
273
+ @node_value.setter
274
+ def node_value(self, value : str) -> None:
275
+ '''Sets the value.'''
276
+ raise NotImplementedError()
277
+
278
+ @property
279
+ def children(self) -> List[aspose.gis.NodeLink]:
280
+ '''Gets the children.'''
281
+ raise NotImplementedError()
282
+
283
+ @property
284
+ def name_without_prefix(self) -> str:
285
+ '''Gets the name without prefix.'''
286
+ raise NotImplementedError()
287
+
288
+ @property
289
+ def prefix(self) -> str:
290
+ '''Gets the prefix.'''
291
+ raise NotImplementedError()
292
+
293
+ @property
294
+ def name(self) -> str:
295
+ '''Name of Ground Overlay'''
296
+ raise NotImplementedError()
297
+
298
+ @name.setter
299
+ def name(self, value : str) -> None:
300
+ '''Name of Ground Overlay'''
301
+ raise NotImplementedError()
302
+
303
+ @property
304
+ def visibility(self) -> bool:
305
+ '''Visibility of Ground Overlay'''
306
+ raise NotImplementedError()
307
+
308
+ @visibility.setter
309
+ def visibility(self, value : bool) -> None:
310
+ '''Visibility of Ground Overlay'''
311
+ raise NotImplementedError()
312
+
313
+ @property
314
+ def icon(self) -> aspose.gis.formats.kml.specificfields.IconInfo:
315
+ '''IconPath of \'GroundOverlay\' node.'''
316
+ raise NotImplementedError()
317
+
318
+ @icon.setter
319
+ def icon(self, value : aspose.gis.formats.kml.specificfields.IconInfo) -> None:
320
+ '''IconPath of \'GroundOverlay\' node.'''
321
+ raise NotImplementedError()
322
+
323
+ @property
324
+ def lat_lon_box(self) -> aspose.gis.formats.kml.specificfields.KmlLatLonBox:
325
+ '''Specifies object from Kml \'LatLonAltBox\' node.'''
326
+ raise NotImplementedError()
327
+
328
+ @lat_lon_box.setter
329
+ def lat_lon_box(self, value : aspose.gis.formats.kml.specificfields.KmlLatLonBox) -> None:
330
+ '''Specifies object from Kml \'LatLonAltBox\' node.'''
331
+ raise NotImplementedError()
332
+
333
+ @property
334
+ def draw_order(self) -> float:
335
+ '''DrawOrder of \'GroundOverlay\' node.'''
336
+ raise NotImplementedError()
337
+
338
+ @draw_order.setter
339
+ def draw_order(self, value : float) -> None:
340
+ '''DrawOrder of \'GroundOverlay\' node.'''
341
+ raise NotImplementedError()
342
+
343
+
344
+ class KmlLatLonAltBox(aspose.gis.XmlNodeLink):
345
+ '''KmlLatLonAltBox Node Wrapper'''
346
+
347
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
348
+ '''Gets the node by name. Please note, this method will return the first found Node.
349
+ Doesn\'t matter in what level it will be found
350
+
351
+ :param name: The name of the node you want to find.
352
+ :returns: The found node with NodeLink API'''
353
+ raise NotImplementedError()
354
+
355
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
356
+ '''Gets the all nodes with the specified name.
357
+ Doesn\'t matter in what level it will be found
358
+
359
+ :param names: The names.
360
+ :returns: The array of found nodes.'''
361
+ raise NotImplementedError()
362
+
363
+ def as_double(self) -> float:
364
+ '''Returns value casted to the double.
365
+
366
+ :returns: The double value of node'''
367
+ raise NotImplementedError()
368
+
369
+ def as_int(self) -> int:
370
+ '''Returns value casted to the int.
371
+
372
+ :returns: The int value of node'''
373
+ raise NotImplementedError()
374
+
375
+ def as_bool(self) -> bool:
376
+ '''Returns value casted to the bool
377
+
378
+ :returns: The bool value of node'''
379
+ raise NotImplementedError()
380
+
381
+ def get_node_content(self) -> str:
382
+ '''Gets the content of the node.
383
+
384
+ :returns: The content of node'''
385
+ raise NotImplementedError()
386
+
387
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
388
+ '''Finds the XML nodes by the name
389
+
390
+ :param name: The name of the node
391
+ :returns: Array of XML Nodes by name'''
392
+ raise NotImplementedError()
393
+
394
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
395
+ '''Adds the child.
396
+
397
+ :param child: The child.'''
398
+ raise NotImplementedError()
399
+
400
+ @property
401
+ def node_name(self) -> str:
402
+ '''Gets the name.'''
403
+ raise NotImplementedError()
404
+
405
+ @node_name.setter
406
+ def node_name(self, value : str) -> None:
407
+ '''Sets the name.'''
408
+ raise NotImplementedError()
409
+
410
+ @property
411
+ def node_value(self) -> str:
412
+ '''Gets the value.'''
413
+ raise NotImplementedError()
414
+
415
+ @node_value.setter
416
+ def node_value(self, value : str) -> None:
417
+ '''Sets the value.'''
418
+ raise NotImplementedError()
419
+
420
+ @property
421
+ def children(self) -> List[aspose.gis.NodeLink]:
422
+ '''Gets the children.'''
423
+ raise NotImplementedError()
424
+
425
+ @property
426
+ def name_without_prefix(self) -> str:
427
+ '''Gets the name without prefix.'''
428
+ raise NotImplementedError()
429
+
430
+ @property
431
+ def prefix(self) -> str:
432
+ '''Gets the prefix.'''
433
+ raise NotImplementedError()
434
+
435
+ @property
436
+ def north(self) -> float:
437
+ '''North of \'LatLonBox\' node.'''
438
+ raise NotImplementedError()
439
+
440
+ @north.setter
441
+ def north(self, value : float) -> None:
442
+ '''North of \'LatLonBox\' node.'''
443
+ raise NotImplementedError()
444
+
445
+ @property
446
+ def south(self) -> float:
447
+ '''South of \'LatLonBox\' node.'''
448
+ raise NotImplementedError()
449
+
450
+ @south.setter
451
+ def south(self, value : float) -> None:
452
+ '''South of \'LatLonBox\' node.'''
453
+ raise NotImplementedError()
454
+
455
+ @property
456
+ def east(self) -> float:
457
+ '''East of \'LatLonBox\' node.'''
458
+ raise NotImplementedError()
459
+
460
+ @east.setter
461
+ def east(self, value : float) -> None:
462
+ '''East of \'LatLonBox\' node.'''
463
+ raise NotImplementedError()
464
+
465
+ @property
466
+ def west(self) -> float:
467
+ '''West of \'LatLonBox\' node.'''
468
+ raise NotImplementedError()
469
+
470
+ @west.setter
471
+ def west(self, value : float) -> None:
472
+ '''West of \'LatLonBox\' node.'''
473
+ raise NotImplementedError()
474
+
475
+ @property
476
+ def min_altitude(self) -> Optional[float]:
477
+ '''MinAltitude of \'LatLonBox\' node.'''
478
+ raise NotImplementedError()
479
+
480
+ @min_altitude.setter
481
+ def min_altitude(self, value : Optional[float]) -> None:
482
+ '''MinAltitude of \'LatLonBox\' node.'''
483
+ raise NotImplementedError()
484
+
485
+ @property
486
+ def max_altitude(self) -> Optional[float]:
487
+ '''MaxAltitude of \'LatLonBox\' node.'''
488
+ raise NotImplementedError()
489
+
490
+ @max_altitude.setter
491
+ def max_altitude(self, value : Optional[float]) -> None:
492
+ '''MaxAltitude of \'LatLonBox\' node.'''
493
+ raise NotImplementedError()
494
+
495
+ @property
496
+ def rotation(self) -> Optional[float]:
497
+ '''Rotation of \'LatLonBox\' node.'''
498
+ raise NotImplementedError()
499
+
500
+ @rotation.setter
501
+ def rotation(self, value : Optional[float]) -> None:
502
+ '''Rotation of \'LatLonBox\' node.'''
503
+ raise NotImplementedError()
504
+
505
+
506
+ class KmlLatLonBox(aspose.gis.XmlNodeLink):
507
+ '''Specifies object from Kml \'LatLonBox\' node'''
508
+
509
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
510
+ '''Gets the node by name. Please note, this method will return the first found Node.
511
+ Doesn\'t matter in what level it will be found
512
+
513
+ :param name: The name of the node you want to find.
514
+ :returns: The found node with NodeLink API'''
515
+ raise NotImplementedError()
516
+
517
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
518
+ '''Gets the all nodes with the specified name.
519
+ Doesn\'t matter in what level it will be found
520
+
521
+ :param names: The names.
522
+ :returns: The array of found nodes.'''
523
+ raise NotImplementedError()
524
+
525
+ def as_double(self) -> float:
526
+ '''Returns value casted to the double.
527
+
528
+ :returns: The double value of node'''
529
+ raise NotImplementedError()
530
+
531
+ def as_int(self) -> int:
532
+ '''Returns value casted to the int.
533
+
534
+ :returns: The int value of node'''
535
+ raise NotImplementedError()
536
+
537
+ def as_bool(self) -> bool:
538
+ '''Returns value casted to the bool
539
+
540
+ :returns: The bool value of node'''
541
+ raise NotImplementedError()
542
+
543
+ def get_node_content(self) -> str:
544
+ '''Gets the content of the node.
545
+
546
+ :returns: The content of node'''
547
+ raise NotImplementedError()
548
+
549
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
550
+ '''Finds the XML nodes by the name
551
+
552
+ :param name: The name of the node
553
+ :returns: Array of XML Nodes by name'''
554
+ raise NotImplementedError()
555
+
556
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
557
+ '''Adds the child.
558
+
559
+ :param child: The child.'''
560
+ raise NotImplementedError()
561
+
562
+ @property
563
+ def node_name(self) -> str:
564
+ '''Gets the name.'''
565
+ raise NotImplementedError()
566
+
567
+ @node_name.setter
568
+ def node_name(self, value : str) -> None:
569
+ '''Sets the name.'''
570
+ raise NotImplementedError()
571
+
572
+ @property
573
+ def node_value(self) -> str:
574
+ '''Gets the value.'''
575
+ raise NotImplementedError()
576
+
577
+ @node_value.setter
578
+ def node_value(self, value : str) -> None:
579
+ '''Sets the value.'''
580
+ raise NotImplementedError()
581
+
582
+ @property
583
+ def children(self) -> List[aspose.gis.NodeLink]:
584
+ '''Gets the children.'''
585
+ raise NotImplementedError()
586
+
587
+ @property
588
+ def name_without_prefix(self) -> str:
589
+ '''Gets the name without prefix.'''
590
+ raise NotImplementedError()
591
+
592
+ @property
593
+ def prefix(self) -> str:
594
+ '''Gets the prefix.'''
595
+ raise NotImplementedError()
596
+
597
+ @property
598
+ def north(self) -> float:
599
+ '''North of \'LatLonBox\' node.'''
600
+ raise NotImplementedError()
601
+
602
+ @north.setter
603
+ def north(self, value : float) -> None:
604
+ '''North of \'LatLonBox\' node.'''
605
+ raise NotImplementedError()
606
+
607
+ @property
608
+ def south(self) -> float:
609
+ '''South of \'LatLonBox\' node.'''
610
+ raise NotImplementedError()
611
+
612
+ @south.setter
613
+ def south(self, value : float) -> None:
614
+ '''South of \'LatLonBox\' node.'''
615
+ raise NotImplementedError()
616
+
617
+ @property
618
+ def east(self) -> float:
619
+ '''East of \'LatLonBox\' node.'''
620
+ raise NotImplementedError()
621
+
622
+ @east.setter
623
+ def east(self, value : float) -> None:
624
+ '''East of \'LatLonBox\' node.'''
625
+ raise NotImplementedError()
626
+
627
+ @property
628
+ def west(self) -> float:
629
+ '''West of \'LatLonBox\' node.'''
630
+ raise NotImplementedError()
631
+
632
+ @west.setter
633
+ def west(self, value : float) -> None:
634
+ '''West of \'LatLonBox\' node.'''
635
+ raise NotImplementedError()
636
+
637
+ @property
638
+ def min_altitude(self) -> Optional[float]:
639
+ '''MinAltitude of \'LatLonBox\' node.'''
640
+ raise NotImplementedError()
641
+
642
+ @min_altitude.setter
643
+ def min_altitude(self, value : Optional[float]) -> None:
644
+ '''MinAltitude of \'LatLonBox\' node.'''
645
+ raise NotImplementedError()
646
+
647
+ @property
648
+ def max_altitude(self) -> Optional[float]:
649
+ '''MaxAltitude of \'LatLonBox\' node.'''
650
+ raise NotImplementedError()
651
+
652
+ @max_altitude.setter
653
+ def max_altitude(self, value : Optional[float]) -> None:
654
+ '''MaxAltitude of \'LatLonBox\' node.'''
655
+ raise NotImplementedError()
656
+
657
+ @property
658
+ def rotation(self) -> Optional[float]:
659
+ '''Rotation of \'LatLonBox\' node.'''
660
+ raise NotImplementedError()
661
+
662
+ @rotation.setter
663
+ def rotation(self, value : Optional[float]) -> None:
664
+ '''Rotation of \'LatLonBox\' node.'''
665
+ raise NotImplementedError()
666
+
667
+
668
+ class KmlLodSettings(aspose.gis.XmlNodeLink):
669
+ '''Specifies object from Kml \'Lod\' node'''
670
+
671
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
672
+ '''Gets the node by name. Please note, this method will return the first found Node.
673
+ Doesn\'t matter in what level it will be found
674
+
675
+ :param name: The name of the node you want to find.
676
+ :returns: The found node with NodeLink API'''
677
+ raise NotImplementedError()
678
+
679
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
680
+ '''Gets the all nodes with the specified name.
681
+ Doesn\'t matter in what level it will be found
682
+
683
+ :param names: The names.
684
+ :returns: The array of found nodes.'''
685
+ raise NotImplementedError()
686
+
687
+ def as_double(self) -> float:
688
+ '''Returns value casted to the double.
689
+
690
+ :returns: The double value of node'''
691
+ raise NotImplementedError()
692
+
693
+ def as_int(self) -> int:
694
+ '''Returns value casted to the int.
695
+
696
+ :returns: The int value of node'''
697
+ raise NotImplementedError()
698
+
699
+ def as_bool(self) -> bool:
700
+ '''Returns value casted to the bool
701
+
702
+ :returns: The bool value of node'''
703
+ raise NotImplementedError()
704
+
705
+ def get_node_content(self) -> str:
706
+ '''Gets the content of the node.
707
+
708
+ :returns: The content of node'''
709
+ raise NotImplementedError()
710
+
711
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
712
+ '''Finds the XML nodes by the name
713
+
714
+ :param name: The name of the node
715
+ :returns: Array of XML Nodes by name'''
716
+ raise NotImplementedError()
717
+
718
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
719
+ '''Adds the child.
720
+
721
+ :param child: The child.'''
722
+ raise NotImplementedError()
723
+
724
+ @property
725
+ def node_name(self) -> str:
726
+ '''Gets the name.'''
727
+ raise NotImplementedError()
728
+
729
+ @node_name.setter
730
+ def node_name(self, value : str) -> None:
731
+ '''Sets the name.'''
732
+ raise NotImplementedError()
733
+
734
+ @property
735
+ def node_value(self) -> str:
736
+ '''Gets the value.'''
737
+ raise NotImplementedError()
738
+
739
+ @node_value.setter
740
+ def node_value(self, value : str) -> None:
741
+ '''Sets the value.'''
742
+ raise NotImplementedError()
743
+
744
+ @property
745
+ def children(self) -> List[aspose.gis.NodeLink]:
746
+ '''Gets the children.'''
747
+ raise NotImplementedError()
748
+
749
+ @property
750
+ def name_without_prefix(self) -> str:
751
+ '''Gets the name without prefix.'''
752
+ raise NotImplementedError()
753
+
754
+ @property
755
+ def prefix(self) -> str:
756
+ '''Gets the prefix.'''
757
+ raise NotImplementedError()
758
+
759
+ @property
760
+ def min_lod_pixels(self) -> int:
761
+ '''MinLodPixels of \'Lod\' node.'''
762
+ raise NotImplementedError()
763
+
764
+ @min_lod_pixels.setter
765
+ def min_lod_pixels(self, value : int) -> None:
766
+ '''MinLodPixels of \'Lod\' node.'''
767
+ raise NotImplementedError()
768
+
769
+ @property
770
+ def max_lod_pixels(self) -> int:
771
+ '''MaxLodPixels of \'Lod\' node.'''
772
+ raise NotImplementedError()
773
+
774
+ @max_lod_pixels.setter
775
+ def max_lod_pixels(self, value : int) -> None:
776
+ '''MaxLodPixels of \'Lod\' node.'''
777
+ raise NotImplementedError()
778
+
779
+ @property
780
+ def min_fade_extent(self) -> int:
781
+ '''MinFadeExtent of \'Lod\' node.'''
782
+ raise NotImplementedError()
783
+
784
+ @min_fade_extent.setter
785
+ def min_fade_extent(self, value : int) -> None:
786
+ '''MinFadeExtent of \'Lod\' node.'''
787
+ raise NotImplementedError()
788
+
789
+ @property
790
+ def max_fade_extent(self) -> int:
791
+ '''MaxFadeExtent of \'Lod\' node.'''
792
+ raise NotImplementedError()
793
+
794
+ @max_fade_extent.setter
795
+ def max_fade_extent(self, value : int) -> None:
796
+ '''MaxFadeExtent of \'Lod\' node.'''
797
+ raise NotImplementedError()
798
+
799
+
800
+ class KmlNetworkLinkInfo(aspose.gis.XmlNodeLink):
801
+ '''Specifies object from Kml \'NetworkLink\' node'''
802
+
803
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
804
+ '''Gets the node by name. Please note, this method will return the first found Node.
805
+ Doesn\'t matter in what level it will be found
806
+
807
+ :param name: The name of the node you want to find.
808
+ :returns: The found node with NodeLink API'''
809
+ raise NotImplementedError()
810
+
811
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
812
+ '''Gets the all nodes with the specified name.
813
+ Doesn\'t matter in what level it will be found
814
+
815
+ :param names: The names.
816
+ :returns: The array of found nodes.'''
817
+ raise NotImplementedError()
818
+
819
+ def as_double(self) -> float:
820
+ '''Returns value casted to the double.
821
+
822
+ :returns: The double value of node'''
823
+ raise NotImplementedError()
824
+
825
+ def as_int(self) -> int:
826
+ '''Returns value casted to the int.
827
+
828
+ :returns: The int value of node'''
829
+ raise NotImplementedError()
830
+
831
+ def as_bool(self) -> bool:
832
+ '''Returns value casted to the bool
833
+
834
+ :returns: The bool value of node'''
835
+ raise NotImplementedError()
836
+
837
+ def get_node_content(self) -> str:
838
+ '''Gets the content of the node.
839
+
840
+ :returns: The content of node'''
841
+ raise NotImplementedError()
842
+
843
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
844
+ '''Finds the XML nodes by the name
845
+
846
+ :param name: The name of the node
847
+ :returns: Array of XML Nodes by name'''
848
+ raise NotImplementedError()
849
+
850
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
851
+ '''Adds the child.
852
+
853
+ :param child: The child.'''
854
+ raise NotImplementedError()
855
+
856
+ @property
857
+ def node_name(self) -> str:
858
+ '''Gets the name.'''
859
+ raise NotImplementedError()
860
+
861
+ @node_name.setter
862
+ def node_name(self, value : str) -> None:
863
+ '''Sets the name.'''
864
+ raise NotImplementedError()
865
+
866
+ @property
867
+ def node_value(self) -> str:
868
+ '''Gets the value.'''
869
+ raise NotImplementedError()
870
+
871
+ @node_value.setter
872
+ def node_value(self, value : str) -> None:
873
+ '''Sets the value.'''
874
+ raise NotImplementedError()
875
+
876
+ @property
877
+ def children(self) -> List[aspose.gis.NodeLink]:
878
+ '''Gets the children.'''
879
+ raise NotImplementedError()
880
+
881
+ @property
882
+ def name_without_prefix(self) -> str:
883
+ '''Gets the name without prefix.'''
884
+ raise NotImplementedError()
885
+
886
+ @property
887
+ def prefix(self) -> str:
888
+ '''Gets the prefix.'''
889
+ raise NotImplementedError()
890
+
891
+ @property
892
+ def link(self) -> aspose.gis.formats.kml.specificfields.LinkInfo:
893
+ raise NotImplementedError()
894
+
895
+ @link.setter
896
+ def link(self, value : aspose.gis.formats.kml.specificfields.LinkInfo) -> None:
897
+ raise NotImplementedError()
898
+
899
+ @property
900
+ def region(self) -> aspose.gis.formats.kml.specificfields.KmlRegionInfo:
901
+ raise NotImplementedError()
902
+
903
+ @region.setter
904
+ def region(self, value : aspose.gis.formats.kml.specificfields.KmlRegionInfo) -> None:
905
+ raise NotImplementedError()
906
+
907
+
908
+ class KmlRegionInfo(aspose.gis.XmlNodeLink):
909
+ '''Specifies object from Kml \'Region\' node'''
910
+
911
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
912
+ '''Gets the node by name. Please note, this method will return the first found Node.
913
+ Doesn\'t matter in what level it will be found
914
+
915
+ :param name: The name of the node you want to find.
916
+ :returns: The found node with NodeLink API'''
917
+ raise NotImplementedError()
918
+
919
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
920
+ '''Gets the all nodes with the specified name.
921
+ Doesn\'t matter in what level it will be found
922
+
923
+ :param names: The names.
924
+ :returns: The array of found nodes.'''
925
+ raise NotImplementedError()
926
+
927
+ def as_double(self) -> float:
928
+ '''Returns value casted to the double.
929
+
930
+ :returns: The double value of node'''
931
+ raise NotImplementedError()
932
+
933
+ def as_int(self) -> int:
934
+ '''Returns value casted to the int.
935
+
936
+ :returns: The int value of node'''
937
+ raise NotImplementedError()
938
+
939
+ def as_bool(self) -> bool:
940
+ '''Returns value casted to the bool
941
+
942
+ :returns: The bool value of node'''
943
+ raise NotImplementedError()
944
+
945
+ def get_node_content(self) -> str:
946
+ '''Gets the content of the node.
947
+
948
+ :returns: The content of node'''
949
+ raise NotImplementedError()
950
+
951
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
952
+ '''Finds the XML nodes by the name
953
+
954
+ :param name: The name of the node
955
+ :returns: Array of XML Nodes by name'''
956
+ raise NotImplementedError()
957
+
958
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
959
+ '''Adds the child.
960
+
961
+ :param child: The child.'''
962
+ raise NotImplementedError()
963
+
964
+ @property
965
+ def node_name(self) -> str:
966
+ '''Gets the name.'''
967
+ raise NotImplementedError()
968
+
969
+ @node_name.setter
970
+ def node_name(self, value : str) -> None:
971
+ '''Sets the name.'''
972
+ raise NotImplementedError()
973
+
974
+ @property
975
+ def node_value(self) -> str:
976
+ '''Gets the value.'''
977
+ raise NotImplementedError()
978
+
979
+ @node_value.setter
980
+ def node_value(self, value : str) -> None:
981
+ '''Sets the value.'''
982
+ raise NotImplementedError()
983
+
984
+ @property
985
+ def children(self) -> List[aspose.gis.NodeLink]:
986
+ '''Gets the children.'''
987
+ raise NotImplementedError()
988
+
989
+ @property
990
+ def name_without_prefix(self) -> str:
991
+ '''Gets the name without prefix.'''
992
+ raise NotImplementedError()
993
+
994
+ @property
995
+ def prefix(self) -> str:
996
+ '''Gets the prefix.'''
997
+ raise NotImplementedError()
998
+
999
+ @property
1000
+ def lat_lon_alt_box(self) -> aspose.gis.formats.kml.specificfields.KmlLatLonAltBox:
1001
+ '''Specifies object from Kml \'LatLonAltBox\' node.'''
1002
+ raise NotImplementedError()
1003
+
1004
+ @lat_lon_alt_box.setter
1005
+ def lat_lon_alt_box(self, value : aspose.gis.formats.kml.specificfields.KmlLatLonAltBox) -> None:
1006
+ '''Specifies object from Kml \'LatLonAltBox\' node.'''
1007
+ raise NotImplementedError()
1008
+
1009
+ @property
1010
+ def lod(self) -> aspose.gis.formats.kml.specificfields.KmlLodSettings:
1011
+ '''Specifies object from Kml \'Lod\' node.'''
1012
+ raise NotImplementedError()
1013
+
1014
+ @lod.setter
1015
+ def lod(self, value : aspose.gis.formats.kml.specificfields.KmlLodSettings) -> None:
1016
+ '''Specifies object from Kml \'Lod\' node.'''
1017
+ raise NotImplementedError()
1018
+
1019
+ @property
1020
+ def id(self) -> str:
1021
+ '''Id of \'Region\' node.'''
1022
+ raise NotImplementedError()
1023
+
1024
+ @id.setter
1025
+ def id(self, value : str) -> None:
1026
+ '''Id of \'Region\' node.'''
1027
+ raise NotImplementedError()
1028
+
1029
+
1030
+ class LinkInfo(aspose.gis.XmlNodeLink):
1031
+ '''The LinkInfo node of KML format'''
1032
+
1033
+ def get_node_by_name(self, name : str) -> aspose.gis.NodeLink:
1034
+ '''Gets the node by name. Please note, this method will return the first found Node.
1035
+ Doesn\'t matter in what level it will be found
1036
+
1037
+ :param name: The name of the node you want to find.
1038
+ :returns: The found node with NodeLink API'''
1039
+ raise NotImplementedError()
1040
+
1041
+ def get_nodes_by_name(self, names : List[str]) -> List[aspose.gis.NodeLink]:
1042
+ '''Gets the all nodes with the specified name.
1043
+ Doesn\'t matter in what level it will be found
1044
+
1045
+ :param names: The names.
1046
+ :returns: The array of found nodes.'''
1047
+ raise NotImplementedError()
1048
+
1049
+ def as_double(self) -> float:
1050
+ '''Returns value casted to the double.
1051
+
1052
+ :returns: The double value of node'''
1053
+ raise NotImplementedError()
1054
+
1055
+ def as_int(self) -> int:
1056
+ '''Returns value casted to the int.
1057
+
1058
+ :returns: The int value of node'''
1059
+ raise NotImplementedError()
1060
+
1061
+ def as_bool(self) -> bool:
1062
+ '''Returns value casted to the bool
1063
+
1064
+ :returns: The bool value of node'''
1065
+ raise NotImplementedError()
1066
+
1067
+ def get_node_content(self) -> str:
1068
+ '''Gets the content of the node.
1069
+
1070
+ :returns: The content of node'''
1071
+ raise NotImplementedError()
1072
+
1073
+ def find_nodes_by_name(self, name : str) -> List[aspose.gis.NodeLink]:
1074
+ '''Finds the XML nodes by the name
1075
+
1076
+ :param name: The name of the node
1077
+ :returns: Array of XML Nodes by name'''
1078
+ raise NotImplementedError()
1079
+
1080
+ def add_child(self, child : aspose.gis.NodeLink) -> None:
1081
+ '''Adds the child.
1082
+
1083
+ :param child: The child.'''
1084
+ raise NotImplementedError()
1085
+
1086
+ @property
1087
+ def node_name(self) -> str:
1088
+ '''Gets the name.'''
1089
+ raise NotImplementedError()
1090
+
1091
+ @node_name.setter
1092
+ def node_name(self, value : str) -> None:
1093
+ '''Sets the name.'''
1094
+ raise NotImplementedError()
1095
+
1096
+ @property
1097
+ def node_value(self) -> str:
1098
+ '''Gets the value.'''
1099
+ raise NotImplementedError()
1100
+
1101
+ @node_value.setter
1102
+ def node_value(self, value : str) -> None:
1103
+ '''Sets the value.'''
1104
+ raise NotImplementedError()
1105
+
1106
+ @property
1107
+ def children(self) -> List[aspose.gis.NodeLink]:
1108
+ '''Gets the children.'''
1109
+ raise NotImplementedError()
1110
+
1111
+ @property
1112
+ def name_without_prefix(self) -> str:
1113
+ '''Gets the name without prefix.'''
1114
+ raise NotImplementedError()
1115
+
1116
+ @property
1117
+ def prefix(self) -> str:
1118
+ '''Gets the prefix.'''
1119
+ raise NotImplementedError()
1120
+
1121
+ @property
1122
+ def href(self) -> str:
1123
+ '''Gets the href.'''
1124
+ raise NotImplementedError()
1125
+
1126
+ @href.setter
1127
+ def href(self, value : str) -> None:
1128
+ '''Sets the href.'''
1129
+ raise NotImplementedError()
1130
+
1131
+