aspose-gis-net 25.7.0__py3-none-win32.whl → 25.9.0__py3-none-win32.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 (105) 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/e_sqlite3.dll +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.cp310-win32.pyd +0 -0
  92. aspose/gis.cp311-win32.pyd +0 -0
  93. aspose/gis.cp312-win32.pyd +0 -0
  94. aspose/gis.cp313-win32.pyd +0 -0
  95. aspose/gis.cp35-win32.pyd +0 -0
  96. aspose/gis.cp36-win32.pyd +0 -0
  97. aspose/gis.cp37-win32.pyd +0 -0
  98. aspose/gis.cp38-win32.pyd +0 -0
  99. aspose/gis.cp39-win32.pyd +0 -0
  100. aspose/pydrawing/__init__.pyi +29 -7
  101. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +6 -3
  102. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +106 -102
  103. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
  104. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
  105. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -97,7 +99,7 @@ class AbstractPathInternal:
97
99
  def delete(self) -> None:
98
100
  raise NotImplementedError()
99
101
 
100
- def open(self, access : System.IO.FileAccess) -> io.RawIOBase:
102
+ def open(self, access : System.IO.FileAccess) -> io._IOBase:
101
103
  raise NotImplementedError()
102
104
 
103
105
  def list_directory(self) -> Iterable[aspose.gis.common.AbstractPathInternal]:
@@ -124,12 +126,15 @@ class AbstractPathInternal:
124
126
  class AbstractPathInternalExtensions:
125
127
 
126
128
  @staticmethod
127
- def create_or_open(path : aspose.gis.common.AbstractPathInternal, created : List[Boolean]) -> io.RawIOBase:
129
+ def create_or_open(path : aspose.gis.common.AbstractPathInternal, created : List[Boolean]) -> io._IOBase:
128
130
  raise NotImplementedError()
129
131
 
130
132
 
131
133
  class BezierCurve:
132
134
 
135
+ def __init__(self, c0 : aspose.gis.common.Coordinate, c1 : aspose.gis.common.Coordinate, c2 : aspose.gis.common.Coordinate, c3 : aspose.gis.common.Coordinate) -> None:
136
+ raise NotImplementedError()
137
+
133
138
  def linearize(self, coordinates : List[aspose.gis.common.Coordinate], step_size_in_degree : float) -> None:
134
139
  raise NotImplementedError()
135
140
 
@@ -228,11 +233,20 @@ class BinaryConverter:
228
233
  def to_u_int64(self, value : List[int], start_index : int) -> int:
229
234
  raise NotImplementedError()
230
235
 
231
- little_endian : aspose.gis.common.BinaryConverter
232
- big_endian : aspose.gis.common.BinaryConverter
236
+ @property
237
+ def little_endian(self) -> aspose.gis.common.BinaryConverter:
238
+ raise NotImplementedError()
239
+
240
+ @property
241
+ def big_endian(self) -> aspose.gis.common.BinaryConverter:
242
+ raise NotImplementedError()
243
+
233
244
 
234
245
  class BoundingBox:
235
246
 
247
+ def __init__(self) -> None:
248
+ raise NotImplementedError()
249
+
236
250
  def clone(self) -> aspose.gis.common.BoundingBox:
237
251
  raise NotImplementedError()
238
252
 
@@ -372,6 +386,14 @@ class BoundingBox:
372
386
 
373
387
  class BoundingRectangle:
374
388
 
389
+ @overload
390
+ def __init__(self) -> None:
391
+ raise NotImplementedError()
392
+
393
+ @overload
394
+ def __init__(self, x_min : float, y_min : float, x_max : float, y_max : float) -> None:
395
+ raise NotImplementedError()
396
+
375
397
  @overload
376
398
  def contains(self, other : aspose.gis.common.BoundingRectangle) -> bool:
377
399
  raise NotImplementedError()
@@ -514,6 +536,18 @@ class CharsetResolver:
514
536
 
515
537
  class CircularArc:
516
538
 
539
+ @overload
540
+ def __init__(self, start : aspose.gis.common.Coordinate, mid : aspose.gis.common.Coordinate, end : aspose.gis.common.Coordinate) -> None:
541
+ raise NotImplementedError()
542
+
543
+ @overload
544
+ def __init__(self, x0 : float, y0 : float, x1 : float, y1 : float, x2 : float, y2 : float) -> None:
545
+ raise NotImplementedError()
546
+
547
+ @overload
548
+ def __init__(self) -> None:
549
+ raise NotImplementedError()
550
+
517
551
  @overload
518
552
  @staticmethod
519
553
  def from_center(center : aspose.gis.common.Coordinate, start : aspose.gis.common.Coordinate, end : aspose.gis.common.Coordinate, clockwise : bool) -> aspose.gis.common.CircularArc:
@@ -594,6 +628,14 @@ class CircularArc:
594
628
 
595
629
  class Coordinate:
596
630
 
631
+ @overload
632
+ def __init__(self, x : float, y : float) -> None:
633
+ raise NotImplementedError()
634
+
635
+ @overload
636
+ def __init__(self) -> None:
637
+ raise NotImplementedError()
638
+
597
639
  def equals(self, other : aspose.gis.common.Coordinate) -> bool:
598
640
  raise NotImplementedError()
599
641
 
@@ -606,8 +648,14 @@ class Coordinate:
606
648
  def nearly_equal(self, other : aspose.gis.common.Coordinate) -> bool:
607
649
  raise NotImplementedError()
608
650
 
609
- min_value : aspose.gis.common.Coordinate
610
- max_value : aspose.gis.common.Coordinate
651
+ @property
652
+ def min_value(self) -> aspose.gis.common.Coordinate:
653
+ raise NotImplementedError()
654
+
655
+ @property
656
+ def max_value(self) -> aspose.gis.common.Coordinate:
657
+ raise NotImplementedError()
658
+
611
659
  @property
612
660
  def x(self) -> float:
613
661
  raise NotImplementedError()
@@ -619,6 +667,9 @@ class Coordinate:
619
667
 
620
668
  class Ellipse:
621
669
 
670
+ def __init__(self, center : aspose.gis.common.Coordinate, x_radius : float, y_radius : float, rotation : float) -> None:
671
+ raise NotImplementedError()
672
+
622
673
  def get_angle(self, coordinate : aspose.gis.common.Coordinate) -> float:
623
674
  raise NotImplementedError()
624
675
 
@@ -650,6 +701,9 @@ class Ellipse:
650
701
 
651
702
  class EllipticArc:
652
703
 
704
+ def __init__(self) -> None:
705
+ raise NotImplementedError()
706
+
653
707
  def linearize(self, coordinates : List[aspose.gis.common.Coordinate], step_size_in_degree : float) -> None:
654
708
  raise NotImplementedError()
655
709
 
@@ -693,6 +747,9 @@ class Ensure:
693
747
 
694
748
  class GlobOptions:
695
749
 
750
+ def __init__(self) -> None:
751
+ raise NotImplementedError()
752
+
696
753
  @property
697
754
  def wild_card(self) -> str:
698
755
  raise NotImplementedError()
@@ -728,19 +785,25 @@ class GlobOptions:
728
785
 
729
786
  class IdSequence:
730
787
 
788
+ def __init__(self, prefix : str) -> None:
789
+ raise NotImplementedError()
790
+
731
791
  def get_next(self) -> str:
732
792
  raise NotImplementedError()
733
793
 
734
794
 
735
795
  class LocalFilePath(AbstractPathInternal):
736
796
 
797
+ def __init__(self, path : str) -> None:
798
+ raise NotImplementedError()
799
+
737
800
  def is_file(self) -> bool:
738
801
  raise NotImplementedError()
739
802
 
740
803
  def delete(self) -> None:
741
804
  raise NotImplementedError()
742
805
 
743
- def open(self, access : System.IO.FileAccess) -> io.RawIOBase:
806
+ def open(self, access : System.IO.FileAccess) -> io._IOBase:
744
807
  raise NotImplementedError()
745
808
 
746
809
  def list_directory(self) -> Iterable[aspose.gis.common.AbstractPathInternal]:
@@ -766,6 +829,9 @@ class LocalFilePath(AbstractPathInternal):
766
829
 
767
830
  class MatrixTransformation:
768
831
 
832
+ def __init__(self) -> None:
833
+ raise NotImplementedError()
834
+
769
835
  @overload
770
836
  def translate(self, c : aspose.gis.common.Coordinate) -> None:
771
837
  raise NotImplementedError()
@@ -907,10 +973,25 @@ class NumberOperations:
907
973
  def radians_to_degrees(radians : float) -> float:
908
974
  raise NotImplementedError()
909
975
 
910
- EPSILON : float
976
+ @property
977
+ def EPSILON(self) -> float:
978
+ raise NotImplementedError()
979
+
911
980
 
912
981
  class Rectangle:
913
982
 
983
+ @overload
984
+ def __init__(self, x : float, y : float, width : float, height : float) -> None:
985
+ raise NotImplementedError()
986
+
987
+ @overload
988
+ def __init__(self, top_left : aspose.gis.common.Coordinate, size : aspose.gis.common.Size) -> None:
989
+ raise NotImplementedError()
990
+
991
+ @overload
992
+ def __init__(self) -> None:
993
+ raise NotImplementedError()
994
+
914
995
  def equals(self, other : aspose.gis.common.Rectangle) -> bool:
915
996
  raise NotImplementedError()
916
997
 
@@ -961,13 +1042,16 @@ class Rectangle:
961
1042
 
962
1043
  class SingleStreamPath(AbstractPathInternal):
963
1044
 
1045
+ def __init__(self, stream : io._IOBase) -> None:
1046
+ raise NotImplementedError()
1047
+
964
1048
  def is_file(self) -> bool:
965
1049
  raise NotImplementedError()
966
1050
 
967
1051
  def delete(self) -> None:
968
1052
  raise NotImplementedError()
969
1053
 
970
- def open(self, access : System.IO.FileAccess) -> io.RawIOBase:
1054
+ def open(self, access : System.IO.FileAccess) -> io._IOBase:
971
1055
  raise NotImplementedError()
972
1056
 
973
1057
  def list_directory(self) -> Iterable[aspose.gis.common.AbstractPathInternal]:
@@ -993,6 +1077,14 @@ class SingleStreamPath(AbstractPathInternal):
993
1077
 
994
1078
  class Size:
995
1079
 
1080
+ @overload
1081
+ def __init__(self, width : float, height : float) -> None:
1082
+ raise NotImplementedError()
1083
+
1084
+ @overload
1085
+ def __init__(self) -> None:
1086
+ raise NotImplementedError()
1087
+
996
1088
  def to_coordinate(self) -> aspose.gis.common.Coordinate:
997
1089
  raise NotImplementedError()
998
1090
 
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -205,9 +207,25 @@ class DBase:
205
207
 
206
208
  class DBaseException:
207
209
 
210
+ @overload
211
+ def __init__(self) -> None:
212
+ raise NotImplementedError()
213
+
214
+ @overload
215
+ def __init__(self, message : str) -> None:
216
+ raise NotImplementedError()
217
+
208
218
 
209
219
  class DBaseField:
210
220
 
221
+ @overload
222
+ def __init__(self, name : str, type : str, length : int, decimals : int, offset : int) -> None:
223
+ raise NotImplementedError()
224
+
225
+ @overload
226
+ def __init__(self) -> None:
227
+ raise NotImplementedError()
228
+
211
229
  @property
212
230
  def name(self) -> str:
213
231
  raise NotImplementedError()
@@ -231,6 +249,9 @@ class DBaseField:
231
249
 
232
250
  class DBaseOptions:
233
251
 
252
+ def __init__(self) -> None:
253
+ raise NotImplementedError()
254
+
234
255
  @property
235
256
  def write_code_page_file(self) -> bool:
236
257
  raise NotImplementedError()
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -91,6 +93,9 @@ import aspose.gis.topology.graph
91
93
 
92
94
  class GdbBezierSegment(GdbCurveSegment):
93
95
 
96
+ def __init__(self) -> None:
97
+ raise NotImplementedError()
98
+
94
99
  @property
95
100
  def start_point_index(self) -> int:
96
101
  raise NotImplementedError()
@@ -128,6 +133,9 @@ class GdbBinaryWriterExtensions:
128
133
 
129
134
  class GdbCircularArcSegment(GdbCurveSegment):
130
135
 
136
+ def __init__(self) -> None:
137
+ raise NotImplementedError()
138
+
131
139
  @property
132
140
  def start_point_index(self) -> int:
133
141
  raise NotImplementedError()
@@ -214,6 +222,9 @@ class GdbCurveSegment:
214
222
 
215
223
  class GdbEllipticArcSegment(GdbCurveSegment):
216
224
 
225
+ def __init__(self) -> None:
226
+ raise NotImplementedError()
227
+
217
228
  @property
218
229
  def start_point_index(self) -> int:
219
230
  raise NotImplementedError()
@@ -349,6 +360,9 @@ class GdbEllipticArcSegment(GdbCurveSegment):
349
360
 
350
361
  class GdbFieldDescription:
351
362
 
363
+ def __init__(self, type : aspose.gis.common.formats.gdbtable.GdbFieldType) -> None:
364
+ raise NotImplementedError()
365
+
352
366
  @property
353
367
  def name(self) -> str:
354
368
  raise NotImplementedError()
@@ -396,6 +410,9 @@ class GdbFieldDescription:
396
410
 
397
411
  class GdbMultiPartShape(GdbShape):
398
412
 
413
+ def __init__(self) -> None:
414
+ raise NotImplementedError()
415
+
399
416
  @property
400
417
  def has_z(self) -> bool:
401
418
  raise NotImplementedError()
@@ -459,6 +476,9 @@ class GdbMultiPartShape(GdbShape):
459
476
 
460
477
  class GdbMultiPointShape(GdbShape):
461
478
 
479
+ def __init__(self) -> None:
480
+ raise NotImplementedError()
481
+
462
482
  @property
463
483
  def has_z(self) -> bool:
464
484
  raise NotImplementedError()
@@ -502,6 +522,9 @@ class GdbMultiPointShape(GdbShape):
502
522
 
503
523
  class GdbPointShape(GdbShape):
504
524
 
525
+ def __init__(self) -> None:
526
+ raise NotImplementedError()
527
+
505
528
  @property
506
529
  def has_z(self) -> bool:
507
530
  raise NotImplementedError()
@@ -572,6 +595,9 @@ class GdbShape:
572
595
 
573
596
  class GdbShapeFieldDescription(GdbFieldDescription):
574
597
 
598
+ def __init__(self) -> None:
599
+ raise NotImplementedError()
600
+
575
601
  @property
576
602
  def name(self) -> str:
577
603
  raise NotImplementedError()
@@ -616,7 +642,10 @@ class GdbShapeFieldDescription(GdbFieldDescription):
616
642
  def width(self, value : int) -> None:
617
643
  raise NotImplementedError()
618
644
 
619
- unknown_srs_string : str
645
+ @property
646
+ def unknown_srs_string(self) -> str:
647
+ raise NotImplementedError()
648
+
620
649
  @property
621
650
  def has_z(self) -> bool:
622
651
  raise NotImplementedError()
@@ -728,6 +757,14 @@ class GdbShapeFieldDescription(GdbFieldDescription):
728
757
 
729
758
  class GdbTableException:
730
759
 
760
+ @overload
761
+ def __init__(self) -> None:
762
+ raise NotImplementedError()
763
+
764
+ @overload
765
+ def __init__(self, message : str) -> None:
766
+ raise NotImplementedError()
767
+
731
768
 
732
769
  class GdbTableFile:
733
770
 
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -91,6 +93,9 @@ import aspose.gis.topology.graph
91
93
 
92
94
  class Column:
93
95
 
96
+ def __init__(self) -> None:
97
+ raise NotImplementedError()
98
+
94
99
  @staticmethod
95
100
  def get_type(type_name : str) -> aspose.gis.common.formats.mapinfo.ColumnType:
96
101
  raise NotImplementedError()
@@ -130,6 +135,9 @@ class Column:
130
135
 
131
136
  class CoordinateSystem:
132
137
 
138
+ def __init__(self) -> None:
139
+ raise NotImplementedError()
140
+
133
141
  @property
134
142
  def projection_id(self) -> int:
135
143
  raise NotImplementedError()
@@ -157,6 +165,9 @@ class CoordinateSystem:
157
165
 
158
166
  class Datum:
159
167
 
168
+ def __init__(self) -> None:
169
+ raise NotImplementedError()
170
+
160
171
  @property
161
172
  def id(self) -> int:
162
173
  raise NotImplementedError()
@@ -302,16 +313,48 @@ class IGraphcialObjectsFile:
302
313
 
303
314
  class MapInfoException:
304
315
 
316
+ @overload
317
+ def __init__(self) -> None:
318
+ raise NotImplementedError()
319
+
320
+ @overload
321
+ def __init__(self, message : str) -> None:
322
+ raise NotImplementedError()
323
+
305
324
 
306
325
  class MapInfoSizes:
307
326
 
308
- HEADER_SIZE : int
309
- OBJECTS_HEADER : int
310
- COORDINATE_HEADER : int
311
- UNCOMPRESSED_COORDINATE : int
312
- COMPRESSED_COORDINATE : int
313
- SEGMENT_HEADER : int
314
- SEGMENT_HEADER450 : int
327
+ def __init__(self) -> None:
328
+ raise NotImplementedError()
329
+
330
+ @property
331
+ def HEADER_SIZE(self) -> int:
332
+ raise NotImplementedError()
333
+
334
+ @property
335
+ def OBJECTS_HEADER(self) -> int:
336
+ raise NotImplementedError()
337
+
338
+ @property
339
+ def COORDINATE_HEADER(self) -> int:
340
+ raise NotImplementedError()
341
+
342
+ @property
343
+ def UNCOMPRESSED_COORDINATE(self) -> int:
344
+ raise NotImplementedError()
345
+
346
+ @property
347
+ def COMPRESSED_COORDINATE(self) -> int:
348
+ raise NotImplementedError()
349
+
350
+ @property
351
+ def SEGMENT_HEADER(self) -> int:
352
+ raise NotImplementedError()
353
+
354
+ @property
355
+ def SEGMENT_HEADER450(self) -> int:
356
+ raise NotImplementedError()
357
+
315
358
 
316
359
  class ColumnType:
317
360
 
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -91,6 +93,9 @@ import aspose.gis.topology.graph
91
93
 
92
94
  class Arc(GraphicalObject):
93
95
 
96
+ def __init__(self) -> None:
97
+ raise NotImplementedError()
98
+
94
99
  @overload
95
100
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Arc) -> bool:
96
101
  raise NotImplementedError()
@@ -149,6 +154,9 @@ class Arc(GraphicalObject):
149
154
 
150
155
  class Ellipse(GraphicalObject):
151
156
 
157
+ def __init__(self) -> None:
158
+ raise NotImplementedError()
159
+
152
160
  @overload
153
161
  def equals(self, other : aspose.gis.common.Ellipse) -> bool:
154
162
  raise NotImplementedError()
@@ -199,6 +207,9 @@ class Ellipse(GraphicalObject):
199
207
 
200
208
  class GraphicalCollection(GraphicalObject):
201
209
 
210
+ def __init__(self) -> None:
211
+ raise NotImplementedError()
212
+
202
213
  @overload
203
214
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.GraphicalCollection) -> bool:
204
215
  raise NotImplementedError()
@@ -238,6 +249,9 @@ class GraphicalObject:
238
249
 
239
250
  class Line(GraphicalObject):
240
251
 
252
+ def __init__(self) -> None:
253
+ raise NotImplementedError()
254
+
241
255
  @overload
242
256
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Line) -> bool:
243
257
  raise NotImplementedError()
@@ -280,6 +294,9 @@ class Line(GraphicalObject):
280
294
 
281
295
  class MultiPoint(GraphicalObject):
282
296
 
297
+ def __init__(self) -> None:
298
+ raise NotImplementedError()
299
+
283
300
  @overload
284
301
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.MultiPoint) -> bool:
285
302
  raise NotImplementedError()
@@ -329,10 +346,16 @@ class None(GraphicalObject):
329
346
  def graphical_object_type(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.GraphicalObjectType:
330
347
  raise NotImplementedError()
331
348
 
332
- instance : aspose.gis.common.formats.mapinfo.graphicalobjects.None
349
+ @property
350
+ def instance(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.None:
351
+ raise NotImplementedError()
352
+
333
353
 
334
354
  class Point(GraphicalObject):
335
355
 
356
+ def __init__(self) -> None:
357
+ raise NotImplementedError()
358
+
336
359
  @overload
337
360
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Point) -> bool:
338
361
  raise NotImplementedError()
@@ -375,6 +398,9 @@ class Point(GraphicalObject):
375
398
 
376
399
  class Polygon:
377
400
 
401
+ def __init__(self) -> None:
402
+ raise NotImplementedError()
403
+
378
404
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Polygon) -> bool:
379
405
  raise NotImplementedError()
380
406
 
@@ -397,6 +423,9 @@ class Polygon:
397
423
 
398
424
  class Polyline(GraphicalObject):
399
425
 
426
+ def __init__(self) -> None:
427
+ raise NotImplementedError()
428
+
400
429
  @overload
401
430
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Polyline) -> bool:
402
431
  raise NotImplementedError()
@@ -439,6 +468,9 @@ class Polyline(GraphicalObject):
439
468
 
440
469
  class Rectangle(GraphicalObject):
441
470
 
471
+ def __init__(self) -> None:
472
+ raise NotImplementedError()
473
+
442
474
  @overload
443
475
  def equals(self, other : aspose.gis.common.Rectangle) -> bool:
444
476
  raise NotImplementedError()
@@ -489,6 +521,9 @@ class Rectangle(GraphicalObject):
489
521
 
490
522
  class Region(GraphicalObject):
491
523
 
524
+ def __init__(self) -> None:
525
+ raise NotImplementedError()
526
+
492
527
  @overload
493
528
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Region) -> bool:
494
529
  raise NotImplementedError()
@@ -539,6 +574,9 @@ class Region(GraphicalObject):
539
574
 
540
575
  class RoundedRectangle(GraphicalObject):
541
576
 
577
+ def __init__(self) -> None:
578
+ raise NotImplementedError()
579
+
542
580
  @overload
543
581
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.RoundedRectangle) -> bool:
544
582
  raise NotImplementedError()
@@ -605,6 +643,9 @@ class RoundedRectangle(GraphicalObject):
605
643
 
606
644
  class Text(GraphicalObject):
607
645
 
646
+ def __init__(self) -> None:
647
+ raise NotImplementedError()
648
+
608
649
  @overload
609
650
  def equals(self, other : aspose.gis.common.formats.mapinfo.graphicalobjects.Text) -> bool:
610
651
  raise NotImplementedError()