aspose-gis-net 25.7.0__py3-none-win_amd64.whl → 25.9.0__py3-none-win_amd64.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.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/Microsoft.Data.Sqlite.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.batteries_v2.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.core.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.provider.e_sqlite3.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/assemblies/gis/e_sqlite3.dll +0 -0
- aspose/gis/__init__.pyi +606 -76
- aspose/gis/common/__init__.pyi +101 -9
- aspose/gis/common/formats/__init__.pyi +2 -0
- aspose/gis/common/formats/dbase/__init__.pyi +21 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +38 -1
- aspose/gis/common/formats/mapinfo/__init__.pyi +50 -7
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +42 -1
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +49 -5
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +34 -0
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +2 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +71 -11
- aspose/gis/common/formats/wkb/__init__.pyi +2 -0
- aspose/gis/common/formats/wkt/__init__.pyi +28 -0
- aspose/gis/common/formats/xml/__init__.pyi +14 -0
- aspose/gis/common/io/__init__.pyi +33 -8
- aspose/gis/epsg/__init__.pyi +71 -0
- aspose/gis/formats/__init__.pyi +2 -0
- aspose/gis/formats/bmpw/__init__.pyi +2 -0
- aspose/gis/formats/csv/__init__.pyi +9 -0
- aspose/gis/formats/database/__init__.pyi +5 -0
- aspose/gis/formats/database/dataediting/__init__.pyi +2 -0
- aspose/gis/formats/database/fromdefinition/__init__.pyi +2 -0
- aspose/gis/formats/esriascii/__init__.pyi +6 -0
- aspose/gis/formats/esrijson/__init__.pyi +6 -0
- aspose/gis/formats/filegdb/__init__.pyi +9 -0
- aspose/gis/formats/gdal/__init__.pyi +8 -0
- aspose/gis/formats/geojson/__init__.pyi +6 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +6 -0
- aspose/gis/formats/geopackage/__init__.pyi +746 -0
- aspose/gis/formats/geotiff/__init__.pyi +6 -0
- aspose/gis/formats/gml/__init__.pyi +6 -0
- aspose/gis/formats/gpx/__init__.pyi +6 -0
- aspose/gis/formats/infile/__init__.pyi +6 -0
- aspose/gis/formats/inmemory/__init__.pyi +2 -0
- aspose/gis/formats/jpegw/__init__.pyi +2 -0
- aspose/gis/formats/kml/__init__.pyi +526 -0
- aspose/gis/formats/kml/specificfields/__init__.pyi +1131 -0
- aspose/gis/formats/kml/styles/__init__.pyi +41 -2
- aspose/gis/formats/mapinfointerchange/__init__.pyi +6 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +6 -0
- aspose/gis/formats/osmxml/__init__.pyi +6 -0
- aspose/gis/formats/pngw/__init__.pyi +2 -0
- aspose/gis/formats/postgis/__init__.pyi +6 -0
- aspose/gis/formats/shapefile/__init__.pyi +6 -0
- aspose/gis/formats/sqlserver/__init__.pyi +6 -0
- aspose/gis/formats/tiffw/__init__.pyi +2 -0
- aspose/gis/formats/topojson/__init__.pyi +15 -0
- aspose/gis/formats/worldfile/__init__.pyi +2 -0
- aspose/gis/formats/xyztile/__init__.pyi +17 -0
- aspose/gis/geometries/__init__.pyi +853 -324
- aspose/gis/geotools/__init__.pyi +46 -0
- aspose/gis/geotools/extensions/__init__.pyi +2 -0
- aspose/gis/geotools/layersmap/__init__.pyi +17 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +9 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +14 -0
- aspose/gis/imagemetadata/__init__.pyi +5 -3
- aspose/gis/indexing/__init__.pyi +10 -0
- aspose/gis/indexing/bplustree/__init__.pyi +5 -0
- aspose/gis/indexing/qixtree/__init__.pyi +5 -0
- aspose/gis/indexing/rtree/__init__.pyi +5 -0
- aspose/gis/labeling/__init__.pyi +34 -0
- aspose/gis/labeling/line/__init__.pyi +26 -0
- aspose/gis/painting/__init__.pyi +87 -8
- aspose/gis/projections/__init__.pyi +16 -0
- aspose/gis/raster/__init__.pyi +36 -0
- aspose/gis/raster/web/__init__.pyi +8 -0
- aspose/gis/relationship/__init__.pyi +2 -0
- aspose/gis/relationship/joins/__init__.pyi +10 -0
- aspose/gis/rendering/__init__.pyi +126 -10
- aspose/gis/rendering/colorizers/__init__.pyi +39 -10
- aspose/gis/rendering/formats/__init__.pyi +2 -0
- aspose/gis/rendering/formats/bmp/__init__.pyi +2 -0
- aspose/gis/rendering/formats/jpeg/__init__.pyi +2 -0
- aspose/gis/rendering/formats/png/__init__.pyi +2 -0
- aspose/gis/rendering/formats/svg/__init__.pyi +2 -0
- aspose/gis/rendering/labelings/__init__.pyi +73 -10
- aspose/gis/rendering/sld/__init__.pyi +5 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +193 -28
- aspose/gis/spatialreferencing/__init__.pyi +504 -154
- aspose/gis/topology/__init__.pyi +39 -0
- aspose/gis/topology/algorithms/__init__.pyi +2 -0
- aspose/gis/topology/buffer/__init__.pyi +8 -0
- aspose/gis/topology/graph/__init__.pyi +7 -0
- aspose/gis.cp310-win_amd64.pyd +0 -0
- aspose/gis.cp311-win_amd64.pyd +0 -0
- aspose/gis.cp312-win_amd64.pyd +0 -0
- aspose/gis.cp313-win_amd64.pyd +0 -0
- aspose/gis.cp35-win_amd64.pyd +0 -0
- aspose/gis.cp36-win_amd64.pyd +0 -0
- aspose/gis.cp37-win_amd64.pyd +0 -0
- aspose/gis.cp38-win_amd64.pyd +0 -0
- aspose/gis.cp39-win_amd64.pyd +0 -0
- aspose/pydrawing/__init__.pyi +29 -7
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +6 -3
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +106 -102
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
- {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
|
|
@@ -92,6 +94,22 @@ import aspose.gis.topology.graph
|
|
|
92
94
|
class CircularString(Curve):
|
|
93
95
|
'''A multi-vertex curve with circular interpolation between points.'''
|
|
94
96
|
|
|
97
|
+
@overload
|
|
98
|
+
def __init__(self) -> None:
|
|
99
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CircularString` class.'''
|
|
100
|
+
raise NotImplementedError()
|
|
101
|
+
|
|
102
|
+
@overload
|
|
103
|
+
def __init__(self, collection : Iterable[aspose.gis.geometries.IPoint]) -> None:
|
|
104
|
+
raise NotImplementedError()
|
|
105
|
+
|
|
106
|
+
@overload
|
|
107
|
+
def __init__(self, other : aspose.gis.geometries.ICircularString) -> None:
|
|
108
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CircularString` class.
|
|
109
|
+
|
|
110
|
+
:param other: The other string to copy data from.'''
|
|
111
|
+
raise NotImplementedError()
|
|
112
|
+
|
|
95
113
|
@overload
|
|
96
114
|
@staticmethod
|
|
97
115
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -212,7 +230,7 @@ class CircularString(Curve):
|
|
|
212
230
|
raise NotImplementedError()
|
|
213
231
|
|
|
214
232
|
@overload
|
|
215
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
233
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
216
234
|
'''Export this geometry to an image representation.
|
|
217
235
|
|
|
218
236
|
:param width: Width of the map.
|
|
@@ -293,6 +311,24 @@ class CircularString(Curve):
|
|
|
293
311
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
294
312
|
raise NotImplementedError()
|
|
295
313
|
|
|
314
|
+
@overload
|
|
315
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
316
|
+
'''Unites this geometry and a specified geometry.
|
|
317
|
+
|
|
318
|
+
:param other: A geometry to unite with.
|
|
319
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
320
|
+
point set that present in this geometry or in an argument.'''
|
|
321
|
+
raise NotImplementedError()
|
|
322
|
+
|
|
323
|
+
@overload
|
|
324
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
325
|
+
'''Unites this geometry and all geometries in other list
|
|
326
|
+
|
|
327
|
+
:param other: A list of geometries to unite with.
|
|
328
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
329
|
+
point set that present in this geometry or in an argument.'''
|
|
330
|
+
raise NotImplementedError()
|
|
331
|
+
|
|
296
332
|
@overload
|
|
297
333
|
def add_point(self, point : aspose.gis.geometries.IPoint) -> None:
|
|
298
334
|
'''Adds a point to the end of the circular string.
|
|
@@ -548,14 +584,6 @@ class CircularString(Curve):
|
|
|
548
584
|
point set that present in both this geometry and an argument.'''
|
|
549
585
|
raise NotImplementedError()
|
|
550
586
|
|
|
551
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
552
|
-
'''Unites this geometry and a specified geometry.
|
|
553
|
-
|
|
554
|
-
:param other: A geometry to unite with.
|
|
555
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
556
|
-
point set that present in this geometry or in an argument.'''
|
|
557
|
-
raise NotImplementedError()
|
|
558
|
-
|
|
559
587
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
560
588
|
'''Subtracts a specified geometry from this geometry.
|
|
561
589
|
|
|
@@ -588,8 +616,11 @@ class CircularString(Curve):
|
|
|
588
616
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
589
617
|
raise NotImplementedError()
|
|
590
618
|
|
|
591
|
-
|
|
592
|
-
|
|
619
|
+
@property
|
|
620
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
621
|
+
'''Gets an instance of null geometry.'''
|
|
622
|
+
raise NotImplementedError()
|
|
623
|
+
|
|
593
624
|
@property
|
|
594
625
|
def coordinate_dimension(self) -> int:
|
|
595
626
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -681,6 +712,22 @@ class CircularString(Curve):
|
|
|
681
712
|
class CompoundCurve(Curve):
|
|
682
713
|
'''A curve that represents a sequence of contiguous curves such that adjacent curves are joined at their end points.'''
|
|
683
714
|
|
|
715
|
+
@overload
|
|
716
|
+
def __init__(self) -> None:
|
|
717
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CompoundCurve` class.'''
|
|
718
|
+
raise NotImplementedError()
|
|
719
|
+
|
|
720
|
+
@overload
|
|
721
|
+
def __init__(self, curves : Iterable[aspose.gis.geometries.ICurve]) -> None:
|
|
722
|
+
raise NotImplementedError()
|
|
723
|
+
|
|
724
|
+
@overload
|
|
725
|
+
def __init__(self, other : aspose.gis.geometries.ICompoundCurve) -> None:
|
|
726
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CompoundCurve` class.
|
|
727
|
+
|
|
728
|
+
:param other: The other line to copy data from.'''
|
|
729
|
+
raise NotImplementedError()
|
|
730
|
+
|
|
684
731
|
@overload
|
|
685
732
|
@staticmethod
|
|
686
733
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -801,7 +848,7 @@ class CompoundCurve(Curve):
|
|
|
801
848
|
raise NotImplementedError()
|
|
802
849
|
|
|
803
850
|
@overload
|
|
804
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
851
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
805
852
|
'''Export this geometry to an image representation.
|
|
806
853
|
|
|
807
854
|
:param width: Width of the map.
|
|
@@ -882,6 +929,24 @@ class CompoundCurve(Curve):
|
|
|
882
929
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
883
930
|
raise NotImplementedError()
|
|
884
931
|
|
|
932
|
+
@overload
|
|
933
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
934
|
+
'''Unites this geometry and a specified geometry.
|
|
935
|
+
|
|
936
|
+
:param other: A geometry to unite with.
|
|
937
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
938
|
+
point set that present in this geometry or in an argument.'''
|
|
939
|
+
raise NotImplementedError()
|
|
940
|
+
|
|
941
|
+
@overload
|
|
942
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
943
|
+
'''Unites this geometry and all geometries in other list
|
|
944
|
+
|
|
945
|
+
:param other: A list of geometries to unite with.
|
|
946
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
947
|
+
point set that present in this geometry or in an argument.'''
|
|
948
|
+
raise NotImplementedError()
|
|
949
|
+
|
|
885
950
|
def to_editable(self) -> aspose.gis.geometries.CompoundCurve:
|
|
886
951
|
'''Gets an editable copy of this geometry.
|
|
887
952
|
|
|
@@ -1103,14 +1168,6 @@ class CompoundCurve(Curve):
|
|
|
1103
1168
|
point set that present in both this geometry and an argument.'''
|
|
1104
1169
|
raise NotImplementedError()
|
|
1105
1170
|
|
|
1106
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
1107
|
-
'''Unites this geometry and a specified geometry.
|
|
1108
|
-
|
|
1109
|
-
:param other: A geometry to unite with.
|
|
1110
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
1111
|
-
point set that present in this geometry or in an argument.'''
|
|
1112
|
-
raise NotImplementedError()
|
|
1113
|
-
|
|
1114
1171
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
1115
1172
|
'''Subtracts a specified geometry from this geometry.
|
|
1116
1173
|
|
|
@@ -1149,8 +1206,11 @@ class CompoundCurve(Curve):
|
|
|
1149
1206
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
1150
1207
|
raise NotImplementedError()
|
|
1151
1208
|
|
|
1152
|
-
|
|
1153
|
-
|
|
1209
|
+
@property
|
|
1210
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
1211
|
+
'''Gets an instance of null geometry.'''
|
|
1212
|
+
raise NotImplementedError()
|
|
1213
|
+
|
|
1154
1214
|
@property
|
|
1155
1215
|
def coordinate_dimension(self) -> int:
|
|
1156
1216
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -1364,7 +1424,7 @@ class Curve(Geometry):
|
|
|
1364
1424
|
raise NotImplementedError()
|
|
1365
1425
|
|
|
1366
1426
|
@overload
|
|
1367
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
1427
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
1368
1428
|
'''Export this geometry to an image representation.
|
|
1369
1429
|
|
|
1370
1430
|
:param width: Width of the map.
|
|
@@ -1445,6 +1505,24 @@ class Curve(Geometry):
|
|
|
1445
1505
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
1446
1506
|
raise NotImplementedError()
|
|
1447
1507
|
|
|
1508
|
+
@overload
|
|
1509
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
1510
|
+
'''Unites this geometry and a specified geometry.
|
|
1511
|
+
|
|
1512
|
+
:param other: A geometry to unite with.
|
|
1513
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
1514
|
+
point set that present in this geometry or in an argument.'''
|
|
1515
|
+
raise NotImplementedError()
|
|
1516
|
+
|
|
1517
|
+
@overload
|
|
1518
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
1519
|
+
'''Unites this geometry and all geometries in other list
|
|
1520
|
+
|
|
1521
|
+
:param other: A list of geometries to unite with.
|
|
1522
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
1523
|
+
point set that present in this geometry or in an argument.'''
|
|
1524
|
+
raise NotImplementedError()
|
|
1525
|
+
|
|
1448
1526
|
def to_editable(self) -> aspose.gis.geometries.Curve:
|
|
1449
1527
|
'''Gets an editable copy of this geometry.
|
|
1450
1528
|
|
|
@@ -1666,14 +1744,6 @@ class Curve(Geometry):
|
|
|
1666
1744
|
point set that present in both this geometry and an argument.'''
|
|
1667
1745
|
raise NotImplementedError()
|
|
1668
1746
|
|
|
1669
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
1670
|
-
'''Unites this geometry and a specified geometry.
|
|
1671
|
-
|
|
1672
|
-
:param other: A geometry to unite with.
|
|
1673
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
1674
|
-
point set that present in this geometry or in an argument.'''
|
|
1675
|
-
raise NotImplementedError()
|
|
1676
|
-
|
|
1677
1747
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
1678
1748
|
'''Subtracts a specified geometry from this geometry.
|
|
1679
1749
|
|
|
@@ -1699,8 +1769,11 @@ class Curve(Geometry):
|
|
|
1699
1769
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
1700
1770
|
raise NotImplementedError()
|
|
1701
1771
|
|
|
1702
|
-
|
|
1703
|
-
|
|
1772
|
+
@property
|
|
1773
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
1774
|
+
'''Gets an instance of null geometry.'''
|
|
1775
|
+
raise NotImplementedError()
|
|
1776
|
+
|
|
1704
1777
|
@property
|
|
1705
1778
|
def coordinate_dimension(self) -> int:
|
|
1706
1779
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -1785,6 +1858,22 @@ class Curve(Geometry):
|
|
|
1785
1858
|
class CurvePolygon(Surface):
|
|
1786
1859
|
'''A planar surface, defined by 1 exterior boundary and 0 or more interior boundaries.'''
|
|
1787
1860
|
|
|
1861
|
+
@overload
|
|
1862
|
+
def __init__(self) -> None:
|
|
1863
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CurvePolygon` class.'''
|
|
1864
|
+
raise NotImplementedError()
|
|
1865
|
+
|
|
1866
|
+
@overload
|
|
1867
|
+
def __init__(self, exterior_ring : aspose.gis.geometries.ICurve) -> None:
|
|
1868
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.CurvePolygon` class.
|
|
1869
|
+
|
|
1870
|
+
:param exterior_ring: The exterior ring.'''
|
|
1871
|
+
raise NotImplementedError()
|
|
1872
|
+
|
|
1873
|
+
@overload
|
|
1874
|
+
def __init__(self, exterior_ring : aspose.gis.geometries.ICurve, interior_rings : Iterable[aspose.gis.geometries.ICurve]) -> None:
|
|
1875
|
+
raise NotImplementedError()
|
|
1876
|
+
|
|
1788
1877
|
@overload
|
|
1789
1878
|
@staticmethod
|
|
1790
1879
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -1895,7 +1984,7 @@ class CurvePolygon(Surface):
|
|
|
1895
1984
|
raise NotImplementedError()
|
|
1896
1985
|
|
|
1897
1986
|
@overload
|
|
1898
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
1987
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
1899
1988
|
'''Export this geometry to an image representation.
|
|
1900
1989
|
|
|
1901
1990
|
:param width: Width of the map.
|
|
@@ -1976,6 +2065,24 @@ class CurvePolygon(Surface):
|
|
|
1976
2065
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
1977
2066
|
raise NotImplementedError()
|
|
1978
2067
|
|
|
2068
|
+
@overload
|
|
2069
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2070
|
+
'''Unites this geometry and a specified geometry.
|
|
2071
|
+
|
|
2072
|
+
:param other: A geometry to unite with.
|
|
2073
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2074
|
+
point set that present in this geometry or in an argument.'''
|
|
2075
|
+
raise NotImplementedError()
|
|
2076
|
+
|
|
2077
|
+
@overload
|
|
2078
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
2079
|
+
'''Unites this geometry and all geometries in other list
|
|
2080
|
+
|
|
2081
|
+
:param other: A list of geometries to unite with.
|
|
2082
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2083
|
+
point set that present in this geometry or in an argument.'''
|
|
2084
|
+
raise NotImplementedError()
|
|
2085
|
+
|
|
1979
2086
|
def to_editable(self) -> aspose.gis.geometries.CurvePolygon:
|
|
1980
2087
|
'''Gets an editable copy of this geometry.
|
|
1981
2088
|
|
|
@@ -2197,14 +2304,6 @@ class CurvePolygon(Surface):
|
|
|
2197
2304
|
point set that present in both this geometry and an argument.'''
|
|
2198
2305
|
raise NotImplementedError()
|
|
2199
2306
|
|
|
2200
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2201
|
-
'''Unites this geometry and a specified geometry.
|
|
2202
|
-
|
|
2203
|
-
:param other: A geometry to unite with.
|
|
2204
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2205
|
-
point set that present in this geometry or in an argument.'''
|
|
2206
|
-
raise NotImplementedError()
|
|
2207
|
-
|
|
2208
2307
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2209
2308
|
'''Subtracts a specified geometry from this geometry.
|
|
2210
2309
|
|
|
@@ -2252,8 +2351,11 @@ class CurvePolygon(Surface):
|
|
|
2252
2351
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
2253
2352
|
raise NotImplementedError()
|
|
2254
2353
|
|
|
2255
|
-
|
|
2256
|
-
|
|
2354
|
+
@property
|
|
2355
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
2356
|
+
'''Gets an instance of null geometry.'''
|
|
2357
|
+
raise NotImplementedError()
|
|
2358
|
+
|
|
2257
2359
|
@property
|
|
2258
2360
|
def coordinate_dimension(self) -> int:
|
|
2259
2361
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -2437,7 +2539,7 @@ class Geometry(IGeometry):
|
|
|
2437
2539
|
raise NotImplementedError()
|
|
2438
2540
|
|
|
2439
2541
|
@overload
|
|
2440
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
2542
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
2441
2543
|
'''Export this geometry to an image representation.
|
|
2442
2544
|
|
|
2443
2545
|
:param width: Width of the map.
|
|
@@ -2518,6 +2620,24 @@ class Geometry(IGeometry):
|
|
|
2518
2620
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
2519
2621
|
raise NotImplementedError()
|
|
2520
2622
|
|
|
2623
|
+
@overload
|
|
2624
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2625
|
+
'''Unites this geometry and a specified geometry.
|
|
2626
|
+
|
|
2627
|
+
:param other: A geometry to unite with.
|
|
2628
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2629
|
+
point set that present in this geometry or in an argument.'''
|
|
2630
|
+
raise NotImplementedError()
|
|
2631
|
+
|
|
2632
|
+
@overload
|
|
2633
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
2634
|
+
'''Unites this geometry and all geometries in other list
|
|
2635
|
+
|
|
2636
|
+
:param other: A list of geometries to unite with.
|
|
2637
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2638
|
+
point set that present in this geometry or in an argument.'''
|
|
2639
|
+
raise NotImplementedError()
|
|
2640
|
+
|
|
2521
2641
|
def to_editable(self) -> aspose.gis.geometries.Geometry:
|
|
2522
2642
|
'''Gets an editable copy of this geometry.
|
|
2523
2643
|
|
|
@@ -2739,14 +2859,6 @@ class Geometry(IGeometry):
|
|
|
2739
2859
|
point set that present in both this geometry and an argument.'''
|
|
2740
2860
|
raise NotImplementedError()
|
|
2741
2861
|
|
|
2742
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2743
|
-
'''Unites this geometry and a specified geometry.
|
|
2744
|
-
|
|
2745
|
-
:param other: A geometry to unite with.
|
|
2746
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
2747
|
-
point set that present in this geometry or in an argument.'''
|
|
2748
|
-
raise NotImplementedError()
|
|
2749
|
-
|
|
2750
2862
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
2751
2863
|
'''Subtracts a specified geometry from this geometry.
|
|
2752
2864
|
|
|
@@ -2769,8 +2881,11 @@ class Geometry(IGeometry):
|
|
|
2769
2881
|
If the dimension is unknown (e.g. for an empty GEOMETRYCOLLECTION) :py:attr:`aspose.gis.geometries.GeometryDimension.POINT` is returned.'''
|
|
2770
2882
|
raise NotImplementedError()
|
|
2771
2883
|
|
|
2772
|
-
|
|
2773
|
-
|
|
2884
|
+
@property
|
|
2885
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
2886
|
+
'''Gets an instance of null geometry.'''
|
|
2887
|
+
raise NotImplementedError()
|
|
2888
|
+
|
|
2774
2889
|
@property
|
|
2775
2890
|
def coordinate_dimension(self) -> int:
|
|
2776
2891
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -2839,6 +2954,10 @@ class Geometry(IGeometry):
|
|
|
2839
2954
|
class GeometryCollection(Geometry):
|
|
2840
2955
|
'''A :py:class:`aspose.gis.geometries.GeometryCollection` is a :py:class:`aspose.gis.geometries.Geometry` that is a collection of one or more geometries.'''
|
|
2841
2956
|
|
|
2957
|
+
def __init__(self) -> None:
|
|
2958
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.GeometryCollection` class.'''
|
|
2959
|
+
raise NotImplementedError()
|
|
2960
|
+
|
|
2842
2961
|
@overload
|
|
2843
2962
|
@staticmethod
|
|
2844
2963
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -2938,7 +3057,7 @@ class GeometryCollection(Geometry):
|
|
|
2938
3057
|
raise NotImplementedError()
|
|
2939
3058
|
|
|
2940
3059
|
@overload
|
|
2941
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
3060
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
2942
3061
|
'''Export this geometry to an image representation.
|
|
2943
3062
|
|
|
2944
3063
|
:param width: Width of the map.
|
|
@@ -3019,6 +3138,24 @@ class GeometryCollection(Geometry):
|
|
|
3019
3138
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
3020
3139
|
raise NotImplementedError()
|
|
3021
3140
|
|
|
3141
|
+
@overload
|
|
3142
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3143
|
+
'''Unites this geometry and a specified geometry.
|
|
3144
|
+
|
|
3145
|
+
:param other: A geometry to unite with.
|
|
3146
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3147
|
+
point set that present in this geometry or in an argument.'''
|
|
3148
|
+
raise NotImplementedError()
|
|
3149
|
+
|
|
3150
|
+
@overload
|
|
3151
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
3152
|
+
'''Unites this geometry and all geometries in other list
|
|
3153
|
+
|
|
3154
|
+
:param other: A list of geometries to unite with.
|
|
3155
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3156
|
+
point set that present in this geometry or in an argument.'''
|
|
3157
|
+
raise NotImplementedError()
|
|
3158
|
+
|
|
3022
3159
|
def to_editable(self) -> aspose.gis.geometries.GeometryCollection:
|
|
3023
3160
|
'''Gets an editable copy of this geometry.
|
|
3024
3161
|
|
|
@@ -3240,14 +3377,6 @@ class GeometryCollection(Geometry):
|
|
|
3240
3377
|
point set that present in both this geometry and an argument.'''
|
|
3241
3378
|
raise NotImplementedError()
|
|
3242
3379
|
|
|
3243
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3244
|
-
'''Unites this geometry and a specified geometry.
|
|
3245
|
-
|
|
3246
|
-
:param other: A geometry to unite with.
|
|
3247
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3248
|
-
point set that present in this geometry or in an argument.'''
|
|
3249
|
-
raise NotImplementedError()
|
|
3250
|
-
|
|
3251
3380
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3252
3381
|
'''Subtracts a specified geometry from this geometry.
|
|
3253
3382
|
|
|
@@ -3298,8 +3427,11 @@ class GeometryCollection(Geometry):
|
|
|
3298
3427
|
If collection is Empty, :py:attr:`aspose.gis.geometries.GeometryDimension.POINT` is returned.'''
|
|
3299
3428
|
raise NotImplementedError()
|
|
3300
3429
|
|
|
3301
|
-
|
|
3302
|
-
|
|
3430
|
+
@property
|
|
3431
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
3432
|
+
'''Gets an instance of null geometry.'''
|
|
3433
|
+
raise NotImplementedError()
|
|
3434
|
+
|
|
3303
3435
|
@property
|
|
3304
3436
|
def coordinate_dimension(self) -> int:
|
|
3305
3437
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -3459,7 +3591,7 @@ class ICircularString(ICurve):
|
|
|
3459
3591
|
raise NotImplementedError()
|
|
3460
3592
|
|
|
3461
3593
|
@overload
|
|
3462
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
3594
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
3463
3595
|
'''Export this geometry to an image representation.
|
|
3464
3596
|
|
|
3465
3597
|
:param width: Width of the map.
|
|
@@ -3540,6 +3672,24 @@ class ICircularString(ICurve):
|
|
|
3540
3672
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
3541
3673
|
raise NotImplementedError()
|
|
3542
3674
|
|
|
3675
|
+
@overload
|
|
3676
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3677
|
+
'''Unites this geometry and a specified geometry.
|
|
3678
|
+
|
|
3679
|
+
:param other: A geometry to unite with.
|
|
3680
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3681
|
+
point set that present in this geometry or in an argument.'''
|
|
3682
|
+
raise NotImplementedError()
|
|
3683
|
+
|
|
3684
|
+
@overload
|
|
3685
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
3686
|
+
'''Unites this geometry and all geometries in other list
|
|
3687
|
+
|
|
3688
|
+
:param other: An array of geometries to unite with.
|
|
3689
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3690
|
+
point set that present in this geometry or in an argument.'''
|
|
3691
|
+
raise NotImplementedError()
|
|
3692
|
+
|
|
3543
3693
|
def to_editable(self) -> aspose.gis.geometries.CircularString:
|
|
3544
3694
|
'''Gets an editable copy of this geometry.
|
|
3545
3695
|
|
|
@@ -3732,14 +3882,6 @@ class ICircularString(ICurve):
|
|
|
3732
3882
|
point set that present in both this geometry and an argument.'''
|
|
3733
3883
|
raise NotImplementedError()
|
|
3734
3884
|
|
|
3735
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3736
|
-
'''Unites this geometry and a specified geometry.
|
|
3737
|
-
|
|
3738
|
-
:param other: A geometry to unite with.
|
|
3739
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
3740
|
-
point set that present in this geometry or in an argument.'''
|
|
3741
|
-
raise NotImplementedError()
|
|
3742
|
-
|
|
3743
3885
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
3744
3886
|
'''Subtracts a specified geometry from this geometry.
|
|
3745
3887
|
|
|
@@ -3905,7 +4047,7 @@ class ICompoundCurve(ICurve):
|
|
|
3905
4047
|
raise NotImplementedError()
|
|
3906
4048
|
|
|
3907
4049
|
@overload
|
|
3908
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
4050
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
3909
4051
|
'''Export this geometry to an image representation.
|
|
3910
4052
|
|
|
3911
4053
|
:param width: Width of the map.
|
|
@@ -3986,6 +4128,24 @@ class ICompoundCurve(ICurve):
|
|
|
3986
4128
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
3987
4129
|
raise NotImplementedError()
|
|
3988
4130
|
|
|
4131
|
+
@overload
|
|
4132
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4133
|
+
'''Unites this geometry and a specified geometry.
|
|
4134
|
+
|
|
4135
|
+
:param other: A geometry to unite with.
|
|
4136
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4137
|
+
point set that present in this geometry or in an argument.'''
|
|
4138
|
+
raise NotImplementedError()
|
|
4139
|
+
|
|
4140
|
+
@overload
|
|
4141
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
4142
|
+
'''Unites this geometry and all geometries in other list
|
|
4143
|
+
|
|
4144
|
+
:param other: An array of geometries to unite with.
|
|
4145
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4146
|
+
point set that present in this geometry or in an argument.'''
|
|
4147
|
+
raise NotImplementedError()
|
|
4148
|
+
|
|
3989
4149
|
def to_editable(self) -> aspose.gis.geometries.CompoundCurve:
|
|
3990
4150
|
'''Gets an editable copy of this geometry.
|
|
3991
4151
|
|
|
@@ -4178,14 +4338,6 @@ class ICompoundCurve(ICurve):
|
|
|
4178
4338
|
point set that present in both this geometry and an argument.'''
|
|
4179
4339
|
raise NotImplementedError()
|
|
4180
4340
|
|
|
4181
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4182
|
-
'''Unites this geometry and a specified geometry.
|
|
4183
|
-
|
|
4184
|
-
:param other: A geometry to unite with.
|
|
4185
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4186
|
-
point set that present in this geometry or in an argument.'''
|
|
4187
|
-
raise NotImplementedError()
|
|
4188
|
-
|
|
4189
4341
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4190
4342
|
'''Subtracts a specified geometry from this geometry.
|
|
4191
4343
|
|
|
@@ -4360,7 +4512,7 @@ class ICurve(IGeometry):
|
|
|
4360
4512
|
raise NotImplementedError()
|
|
4361
4513
|
|
|
4362
4514
|
@overload
|
|
4363
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
4515
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
4364
4516
|
'''Export this geometry to an image representation.
|
|
4365
4517
|
|
|
4366
4518
|
:param width: Width of the map.
|
|
@@ -4441,6 +4593,24 @@ class ICurve(IGeometry):
|
|
|
4441
4593
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
4442
4594
|
raise NotImplementedError()
|
|
4443
4595
|
|
|
4596
|
+
@overload
|
|
4597
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4598
|
+
'''Unites this geometry and a specified geometry.
|
|
4599
|
+
|
|
4600
|
+
:param other: A geometry to unite with.
|
|
4601
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4602
|
+
point set that present in this geometry or in an argument.'''
|
|
4603
|
+
raise NotImplementedError()
|
|
4604
|
+
|
|
4605
|
+
@overload
|
|
4606
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
4607
|
+
'''Unites this geometry and all geometries in other list
|
|
4608
|
+
|
|
4609
|
+
:param other: An array of geometries to unite with.
|
|
4610
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4611
|
+
point set that present in this geometry or in an argument.'''
|
|
4612
|
+
raise NotImplementedError()
|
|
4613
|
+
|
|
4444
4614
|
def to_editable(self) -> aspose.gis.geometries.Curve:
|
|
4445
4615
|
'''Gets an editable copy of this geometry.
|
|
4446
4616
|
|
|
@@ -4633,16 +4803,8 @@ class ICurve(IGeometry):
|
|
|
4633
4803
|
point set that present in both this geometry and an argument.'''
|
|
4634
4804
|
raise NotImplementedError()
|
|
4635
4805
|
|
|
4636
|
-
def
|
|
4637
|
-
'''
|
|
4638
|
-
|
|
4639
|
-
:param other: A geometry to unite with.
|
|
4640
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
4641
|
-
point set that present in this geometry or in an argument.'''
|
|
4642
|
-
raise NotImplementedError()
|
|
4643
|
-
|
|
4644
|
-
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4645
|
-
'''Subtracts a specified geometry from this geometry.
|
|
4806
|
+
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
4807
|
+
'''Subtracts a specified geometry from this geometry.
|
|
4646
4808
|
|
|
4647
4809
|
:param other: A geometry to subtract.
|
|
4648
4810
|
:returns: A geometry that represents a difference of this geometry and an argument. The result geometry contains
|
|
@@ -4796,7 +4958,7 @@ class ICurvePolygon(ISurface):
|
|
|
4796
4958
|
raise NotImplementedError()
|
|
4797
4959
|
|
|
4798
4960
|
@overload
|
|
4799
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
4961
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
4800
4962
|
'''Export this geometry to an image representation.
|
|
4801
4963
|
|
|
4802
4964
|
:param width: Width of the map.
|
|
@@ -4877,6 +5039,24 @@ class ICurvePolygon(ISurface):
|
|
|
4877
5039
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
4878
5040
|
raise NotImplementedError()
|
|
4879
5041
|
|
|
5042
|
+
@overload
|
|
5043
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5044
|
+
'''Unites this geometry and a specified geometry.
|
|
5045
|
+
|
|
5046
|
+
:param other: A geometry to unite with.
|
|
5047
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5048
|
+
point set that present in this geometry or in an argument.'''
|
|
5049
|
+
raise NotImplementedError()
|
|
5050
|
+
|
|
5051
|
+
@overload
|
|
5052
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
5053
|
+
'''Unites this geometry and all geometries in other list
|
|
5054
|
+
|
|
5055
|
+
:param other: An array of geometries to unite with.
|
|
5056
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5057
|
+
point set that present in this geometry or in an argument.'''
|
|
5058
|
+
raise NotImplementedError()
|
|
5059
|
+
|
|
4880
5060
|
def get_interior_ring(self, index : int) -> aspose.gis.geometries.ICurve:
|
|
4881
5061
|
'''Gets the interior ring by its index.
|
|
4882
5062
|
|
|
@@ -5082,14 +5262,6 @@ class ICurvePolygon(ISurface):
|
|
|
5082
5262
|
point set that present in both this geometry and an argument.'''
|
|
5083
5263
|
raise NotImplementedError()
|
|
5084
5264
|
|
|
5085
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5086
|
-
'''Unites this geometry and a specified geometry.
|
|
5087
|
-
|
|
5088
|
-
:param other: A geometry to unite with.
|
|
5089
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5090
|
-
point set that present in this geometry or in an argument.'''
|
|
5091
|
-
raise NotImplementedError()
|
|
5092
|
-
|
|
5093
5265
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5094
5266
|
'''Subtracts a specified geometry from this geometry.
|
|
5095
5267
|
|
|
@@ -5229,7 +5401,7 @@ class IGeometry:
|
|
|
5229
5401
|
raise NotImplementedError()
|
|
5230
5402
|
|
|
5231
5403
|
@overload
|
|
5232
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
5404
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
5233
5405
|
'''Export this geometry to an image representation.
|
|
5234
5406
|
|
|
5235
5407
|
:param width: Width of the map.
|
|
@@ -5310,6 +5482,24 @@ class IGeometry:
|
|
|
5310
5482
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
5311
5483
|
raise NotImplementedError()
|
|
5312
5484
|
|
|
5485
|
+
@overload
|
|
5486
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5487
|
+
'''Unites this geometry and a specified geometry.
|
|
5488
|
+
|
|
5489
|
+
:param other: A geometry to unite with.
|
|
5490
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5491
|
+
point set that present in this geometry or in an argument.'''
|
|
5492
|
+
raise NotImplementedError()
|
|
5493
|
+
|
|
5494
|
+
@overload
|
|
5495
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
5496
|
+
'''Unites this geometry and all geometries in other list
|
|
5497
|
+
|
|
5498
|
+
:param other: An array of geometries to unite with.
|
|
5499
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5500
|
+
point set that present in this geometry or in an argument.'''
|
|
5501
|
+
raise NotImplementedError()
|
|
5502
|
+
|
|
5313
5503
|
def replace_polygons_by_lines(self) -> aspose.gis.geometries.IGeometry:
|
|
5314
5504
|
'''Gets polygons represented as lines of this geometry.
|
|
5315
5505
|
|
|
@@ -5496,14 +5686,6 @@ class IGeometry:
|
|
|
5496
5686
|
point set that present in both this geometry and an argument.'''
|
|
5497
5687
|
raise NotImplementedError()
|
|
5498
5688
|
|
|
5499
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5500
|
-
'''Unites this geometry and a specified geometry.
|
|
5501
|
-
|
|
5502
|
-
:param other: A geometry to unite with.
|
|
5503
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5504
|
-
point set that present in this geometry or in an argument.'''
|
|
5505
|
-
raise NotImplementedError()
|
|
5506
|
-
|
|
5507
5689
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5508
5690
|
'''Subtracts a specified geometry from this geometry.
|
|
5509
5691
|
|
|
@@ -5633,7 +5815,7 @@ class IGeometryCollection(IGeometry):
|
|
|
5633
5815
|
raise NotImplementedError()
|
|
5634
5816
|
|
|
5635
5817
|
@overload
|
|
5636
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
5818
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
5637
5819
|
'''Export this geometry to an image representation.
|
|
5638
5820
|
|
|
5639
5821
|
:param width: Width of the map.
|
|
@@ -5714,6 +5896,24 @@ class IGeometryCollection(IGeometry):
|
|
|
5714
5896
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
5715
5897
|
raise NotImplementedError()
|
|
5716
5898
|
|
|
5899
|
+
@overload
|
|
5900
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5901
|
+
'''Unites this geometry and a specified geometry.
|
|
5902
|
+
|
|
5903
|
+
:param other: A geometry to unite with.
|
|
5904
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5905
|
+
point set that present in this geometry or in an argument.'''
|
|
5906
|
+
raise NotImplementedError()
|
|
5907
|
+
|
|
5908
|
+
@overload
|
|
5909
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
5910
|
+
'''Unites this geometry and all geometries in other list
|
|
5911
|
+
|
|
5912
|
+
:param other: An array of geometries to unite with.
|
|
5913
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5914
|
+
point set that present in this geometry or in an argument.'''
|
|
5915
|
+
raise NotImplementedError()
|
|
5916
|
+
|
|
5717
5917
|
def get_point_on_surface(self) -> aspose.gis.geometries.IPoint:
|
|
5718
5918
|
'''Finds a point that is guaranteed to be on one of the surfaces in this collection.
|
|
5719
5919
|
|
|
@@ -5912,14 +6112,6 @@ class IGeometryCollection(IGeometry):
|
|
|
5912
6112
|
point set that present in both this geometry and an argument.'''
|
|
5913
6113
|
raise NotImplementedError()
|
|
5914
6114
|
|
|
5915
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5916
|
-
'''Unites this geometry and a specified geometry.
|
|
5917
|
-
|
|
5918
|
-
:param other: A geometry to unite with.
|
|
5919
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
5920
|
-
point set that present in this geometry or in an argument.'''
|
|
5921
|
-
raise NotImplementedError()
|
|
5922
|
-
|
|
5923
6115
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
5924
6116
|
'''Subtracts a specified geometry from this geometry.
|
|
5925
6117
|
|
|
@@ -6078,7 +6270,7 @@ class ILineString(ICurve):
|
|
|
6078
6270
|
raise NotImplementedError()
|
|
6079
6271
|
|
|
6080
6272
|
@overload
|
|
6081
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
6273
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
6082
6274
|
'''Export this geometry to an image representation.
|
|
6083
6275
|
|
|
6084
6276
|
:param width: Width of the map.
|
|
@@ -6159,6 +6351,24 @@ class ILineString(ICurve):
|
|
|
6159
6351
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
6160
6352
|
raise NotImplementedError()
|
|
6161
6353
|
|
|
6354
|
+
@overload
|
|
6355
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6356
|
+
'''Unites this geometry and a specified geometry.
|
|
6357
|
+
|
|
6358
|
+
:param other: A geometry to unite with.
|
|
6359
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6360
|
+
point set that present in this geometry or in an argument.'''
|
|
6361
|
+
raise NotImplementedError()
|
|
6362
|
+
|
|
6363
|
+
@overload
|
|
6364
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
6365
|
+
'''Unites this geometry and all geometries in other list
|
|
6366
|
+
|
|
6367
|
+
:param other: An array of geometries to unite with.
|
|
6368
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6369
|
+
point set that present in this geometry or in an argument.'''
|
|
6370
|
+
raise NotImplementedError()
|
|
6371
|
+
|
|
6162
6372
|
def to_editable(self) -> aspose.gis.geometries.LineString:
|
|
6163
6373
|
'''Gets an editable copy of this geometry.
|
|
6164
6374
|
|
|
@@ -6351,14 +6561,6 @@ class ILineString(ICurve):
|
|
|
6351
6561
|
point set that present in both this geometry and an argument.'''
|
|
6352
6562
|
raise NotImplementedError()
|
|
6353
6563
|
|
|
6354
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6355
|
-
'''Unites this geometry and a specified geometry.
|
|
6356
|
-
|
|
6357
|
-
:param other: A geometry to unite with.
|
|
6358
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6359
|
-
point set that present in this geometry or in an argument.'''
|
|
6360
|
-
raise NotImplementedError()
|
|
6361
|
-
|
|
6362
6564
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6363
6565
|
'''Subtracts a specified geometry from this geometry.
|
|
6364
6566
|
|
|
@@ -6524,7 +6726,7 @@ class ILinearRing(ILineString):
|
|
|
6524
6726
|
raise NotImplementedError()
|
|
6525
6727
|
|
|
6526
6728
|
@overload
|
|
6527
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
6729
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
6528
6730
|
'''Export this geometry to an image representation.
|
|
6529
6731
|
|
|
6530
6732
|
:param width: Width of the map.
|
|
@@ -6605,6 +6807,24 @@ class ILinearRing(ILineString):
|
|
|
6605
6807
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
6606
6808
|
raise NotImplementedError()
|
|
6607
6809
|
|
|
6810
|
+
@overload
|
|
6811
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6812
|
+
'''Unites this geometry and a specified geometry.
|
|
6813
|
+
|
|
6814
|
+
:param other: A geometry to unite with.
|
|
6815
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6816
|
+
point set that present in this geometry or in an argument.'''
|
|
6817
|
+
raise NotImplementedError()
|
|
6818
|
+
|
|
6819
|
+
@overload
|
|
6820
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
6821
|
+
'''Unites this geometry and all geometries in other list
|
|
6822
|
+
|
|
6823
|
+
:param other: An array of geometries to unite with.
|
|
6824
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6825
|
+
point set that present in this geometry or in an argument.'''
|
|
6826
|
+
raise NotImplementedError()
|
|
6827
|
+
|
|
6608
6828
|
def is_clockwise(self) -> bool:
|
|
6609
6829
|
'''Determines if the ring has clockwise winding
|
|
6610
6830
|
|
|
@@ -6803,14 +7023,6 @@ class ILinearRing(ILineString):
|
|
|
6803
7023
|
point set that present in both this geometry and an argument.'''
|
|
6804
7024
|
raise NotImplementedError()
|
|
6805
7025
|
|
|
6806
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6807
|
-
'''Unites this geometry and a specified geometry.
|
|
6808
|
-
|
|
6809
|
-
:param other: A geometry to unite with.
|
|
6810
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
6811
|
-
point set that present in this geometry or in an argument.'''
|
|
6812
|
-
raise NotImplementedError()
|
|
6813
|
-
|
|
6814
7026
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
6815
7027
|
'''Subtracts a specified geometry from this geometry.
|
|
6816
7028
|
|
|
@@ -6967,7 +7179,7 @@ class IMultiCurve(IGeometryCollection):
|
|
|
6967
7179
|
raise NotImplementedError()
|
|
6968
7180
|
|
|
6969
7181
|
@overload
|
|
6970
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
7182
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
6971
7183
|
'''Export this geometry to an image representation.
|
|
6972
7184
|
|
|
6973
7185
|
:param width: Width of the map.
|
|
@@ -7048,6 +7260,24 @@ class IMultiCurve(IGeometryCollection):
|
|
|
7048
7260
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
7049
7261
|
raise NotImplementedError()
|
|
7050
7262
|
|
|
7263
|
+
@overload
|
|
7264
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7265
|
+
'''Unites this geometry and a specified geometry.
|
|
7266
|
+
|
|
7267
|
+
:param other: A geometry to unite with.
|
|
7268
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7269
|
+
point set that present in this geometry or in an argument.'''
|
|
7270
|
+
raise NotImplementedError()
|
|
7271
|
+
|
|
7272
|
+
@overload
|
|
7273
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
7274
|
+
'''Unites this geometry and all geometries in other list
|
|
7275
|
+
|
|
7276
|
+
:param other: An array of geometries to unite with.
|
|
7277
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7278
|
+
point set that present in this geometry or in an argument.'''
|
|
7279
|
+
raise NotImplementedError()
|
|
7280
|
+
|
|
7051
7281
|
def to_editable(self) -> aspose.gis.geometries.MultiCurve:
|
|
7052
7282
|
'''Gets an editable copy of this geometry.
|
|
7053
7283
|
|
|
@@ -7246,14 +7476,6 @@ class IMultiCurve(IGeometryCollection):
|
|
|
7246
7476
|
point set that present in both this geometry and an argument.'''
|
|
7247
7477
|
raise NotImplementedError()
|
|
7248
7478
|
|
|
7249
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7250
|
-
'''Unites this geometry and a specified geometry.
|
|
7251
|
-
|
|
7252
|
-
:param other: A geometry to unite with.
|
|
7253
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7254
|
-
point set that present in this geometry or in an argument.'''
|
|
7255
|
-
raise NotImplementedError()
|
|
7256
|
-
|
|
7257
7479
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7258
7480
|
'''Subtracts a specified geometry from this geometry.
|
|
7259
7481
|
|
|
@@ -7402,7 +7624,7 @@ class IMultiLineString(IMultiCurve):
|
|
|
7402
7624
|
raise NotImplementedError()
|
|
7403
7625
|
|
|
7404
7626
|
@overload
|
|
7405
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
7627
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
7406
7628
|
'''Export this geometry to an image representation.
|
|
7407
7629
|
|
|
7408
7630
|
:param width: Width of the map.
|
|
@@ -7483,6 +7705,24 @@ class IMultiLineString(IMultiCurve):
|
|
|
7483
7705
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
7484
7706
|
raise NotImplementedError()
|
|
7485
7707
|
|
|
7708
|
+
@overload
|
|
7709
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7710
|
+
'''Unites this geometry and a specified geometry.
|
|
7711
|
+
|
|
7712
|
+
:param other: A geometry to unite with.
|
|
7713
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7714
|
+
point set that present in this geometry or in an argument.'''
|
|
7715
|
+
raise NotImplementedError()
|
|
7716
|
+
|
|
7717
|
+
@overload
|
|
7718
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
7719
|
+
'''Unites this geometry and all geometries in other list
|
|
7720
|
+
|
|
7721
|
+
:param other: An array of geometries to unite with.
|
|
7722
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7723
|
+
point set that present in this geometry or in an argument.'''
|
|
7724
|
+
raise NotImplementedError()
|
|
7725
|
+
|
|
7486
7726
|
def to_editable(self) -> aspose.gis.geometries.MultiLineString:
|
|
7487
7727
|
'''Gets an editable copy of this geometry.
|
|
7488
7728
|
|
|
@@ -7681,14 +7921,6 @@ class IMultiLineString(IMultiCurve):
|
|
|
7681
7921
|
point set that present in both this geometry and an argument.'''
|
|
7682
7922
|
raise NotImplementedError()
|
|
7683
7923
|
|
|
7684
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7685
|
-
'''Unites this geometry and a specified geometry.
|
|
7686
|
-
|
|
7687
|
-
:param other: A geometry to unite with.
|
|
7688
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
7689
|
-
point set that present in this geometry or in an argument.'''
|
|
7690
|
-
raise NotImplementedError()
|
|
7691
|
-
|
|
7692
7924
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
7693
7925
|
'''Subtracts a specified geometry from this geometry.
|
|
7694
7926
|
|
|
@@ -7827,7 +8059,7 @@ class IMultiPoint(IGeometryCollection):
|
|
|
7827
8059
|
raise NotImplementedError()
|
|
7828
8060
|
|
|
7829
8061
|
@overload
|
|
7830
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
8062
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
7831
8063
|
'''Export this geometry to an image representation.
|
|
7832
8064
|
|
|
7833
8065
|
:param width: Width of the map.
|
|
@@ -7908,6 +8140,24 @@ class IMultiPoint(IGeometryCollection):
|
|
|
7908
8140
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
7909
8141
|
raise NotImplementedError()
|
|
7910
8142
|
|
|
8143
|
+
@overload
|
|
8144
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8145
|
+
'''Unites this geometry and a specified geometry.
|
|
8146
|
+
|
|
8147
|
+
:param other: A geometry to unite with.
|
|
8148
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8149
|
+
point set that present in this geometry or in an argument.'''
|
|
8150
|
+
raise NotImplementedError()
|
|
8151
|
+
|
|
8152
|
+
@overload
|
|
8153
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
8154
|
+
'''Unites this geometry and all geometries in other list
|
|
8155
|
+
|
|
8156
|
+
:param other: An array of geometries to unite with.
|
|
8157
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8158
|
+
point set that present in this geometry or in an argument.'''
|
|
8159
|
+
raise NotImplementedError()
|
|
8160
|
+
|
|
7911
8161
|
def to_editable(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.MultiPoint:
|
|
7912
8162
|
'''Gets an editable copy of this geometry.
|
|
7913
8163
|
|
|
@@ -8106,14 +8356,6 @@ class IMultiPoint(IGeometryCollection):
|
|
|
8106
8356
|
point set that present in both this geometry and an argument.'''
|
|
8107
8357
|
raise NotImplementedError()
|
|
8108
8358
|
|
|
8109
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8110
|
-
'''Unites this geometry and a specified geometry.
|
|
8111
|
-
|
|
8112
|
-
:param other: A geometry to unite with.
|
|
8113
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8114
|
-
point set that present in this geometry or in an argument.'''
|
|
8115
|
-
raise NotImplementedError()
|
|
8116
|
-
|
|
8117
8359
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8118
8360
|
'''Subtracts a specified geometry from this geometry.
|
|
8119
8361
|
|
|
@@ -8262,7 +8504,7 @@ class IMultiPolygon(IMultiSurface):
|
|
|
8262
8504
|
raise NotImplementedError()
|
|
8263
8505
|
|
|
8264
8506
|
@overload
|
|
8265
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
8507
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
8266
8508
|
'''Export this geometry to an image representation.
|
|
8267
8509
|
|
|
8268
8510
|
:param width: Width of the map.
|
|
@@ -8343,6 +8585,24 @@ class IMultiPolygon(IMultiSurface):
|
|
|
8343
8585
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
8344
8586
|
raise NotImplementedError()
|
|
8345
8587
|
|
|
8588
|
+
@overload
|
|
8589
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8590
|
+
'''Unites this geometry and a specified geometry.
|
|
8591
|
+
|
|
8592
|
+
:param other: A geometry to unite with.
|
|
8593
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8594
|
+
point set that present in this geometry or in an argument.'''
|
|
8595
|
+
raise NotImplementedError()
|
|
8596
|
+
|
|
8597
|
+
@overload
|
|
8598
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
8599
|
+
'''Unites this geometry and all geometries in other list
|
|
8600
|
+
|
|
8601
|
+
:param other: An array of geometries to unite with.
|
|
8602
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8603
|
+
point set that present in this geometry or in an argument.'''
|
|
8604
|
+
raise NotImplementedError()
|
|
8605
|
+
|
|
8346
8606
|
def to_editable(self) -> aspose.gis.geometries.MultiPolygon:
|
|
8347
8607
|
'''Gets an editable copy of this geometry.
|
|
8348
8608
|
|
|
@@ -8541,14 +8801,6 @@ class IMultiPolygon(IMultiSurface):
|
|
|
8541
8801
|
point set that present in both this geometry and an argument.'''
|
|
8542
8802
|
raise NotImplementedError()
|
|
8543
8803
|
|
|
8544
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8545
|
-
'''Unites this geometry and a specified geometry.
|
|
8546
|
-
|
|
8547
|
-
:param other: A geometry to unite with.
|
|
8548
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8549
|
-
point set that present in this geometry or in an argument.'''
|
|
8550
|
-
raise NotImplementedError()
|
|
8551
|
-
|
|
8552
8804
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8553
8805
|
'''Subtracts a specified geometry from this geometry.
|
|
8554
8806
|
|
|
@@ -8696,7 +8948,7 @@ class IMultiSurface(IGeometryCollection):
|
|
|
8696
8948
|
raise NotImplementedError()
|
|
8697
8949
|
|
|
8698
8950
|
@overload
|
|
8699
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
8951
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
8700
8952
|
'''Export this geometry to an image representation.
|
|
8701
8953
|
|
|
8702
8954
|
:param width: Width of the map.
|
|
@@ -8777,6 +9029,24 @@ class IMultiSurface(IGeometryCollection):
|
|
|
8777
9029
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
8778
9030
|
raise NotImplementedError()
|
|
8779
9031
|
|
|
9032
|
+
@overload
|
|
9033
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9034
|
+
'''Unites this geometry and a specified geometry.
|
|
9035
|
+
|
|
9036
|
+
:param other: A geometry to unite with.
|
|
9037
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9038
|
+
point set that present in this geometry or in an argument.'''
|
|
9039
|
+
raise NotImplementedError()
|
|
9040
|
+
|
|
9041
|
+
@overload
|
|
9042
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
9043
|
+
'''Unites this geometry and all geometries in other list
|
|
9044
|
+
|
|
9045
|
+
:param other: An array of geometries to unite with.
|
|
9046
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9047
|
+
point set that present in this geometry or in an argument.'''
|
|
9048
|
+
raise NotImplementedError()
|
|
9049
|
+
|
|
8780
9050
|
def to_editable(self) -> aspose.gis.geometries.MultiSurface:
|
|
8781
9051
|
'''Gets an editable copy of this geometry.
|
|
8782
9052
|
|
|
@@ -8975,14 +9245,6 @@ class IMultiSurface(IGeometryCollection):
|
|
|
8975
9245
|
point set that present in both this geometry and an argument.'''
|
|
8976
9246
|
raise NotImplementedError()
|
|
8977
9247
|
|
|
8978
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8979
|
-
'''Unites this geometry and a specified geometry.
|
|
8980
|
-
|
|
8981
|
-
:param other: A geometry to unite with.
|
|
8982
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
8983
|
-
point set that present in this geometry or in an argument.'''
|
|
8984
|
-
raise NotImplementedError()
|
|
8985
|
-
|
|
8986
9248
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
8987
9249
|
'''Subtracts a specified geometry from this geometry.
|
|
8988
9250
|
|
|
@@ -9120,7 +9382,7 @@ class IPoint(IGeometry):
|
|
|
9120
9382
|
raise NotImplementedError()
|
|
9121
9383
|
|
|
9122
9384
|
@overload
|
|
9123
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
9385
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
9124
9386
|
'''Export this geometry to an image representation.
|
|
9125
9387
|
|
|
9126
9388
|
:param width: Width of the map.
|
|
@@ -9201,6 +9463,24 @@ class IPoint(IGeometry):
|
|
|
9201
9463
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
9202
9464
|
raise NotImplementedError()
|
|
9203
9465
|
|
|
9466
|
+
@overload
|
|
9467
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9468
|
+
'''Unites this geometry and a specified geometry.
|
|
9469
|
+
|
|
9470
|
+
:param other: A geometry to unite with.
|
|
9471
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9472
|
+
point set that present in this geometry or in an argument.'''
|
|
9473
|
+
raise NotImplementedError()
|
|
9474
|
+
|
|
9475
|
+
@overload
|
|
9476
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
9477
|
+
'''Unites this geometry and all geometries in other list
|
|
9478
|
+
|
|
9479
|
+
:param other: An array of geometries to unite with.
|
|
9480
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9481
|
+
point set that present in this geometry or in an argument.'''
|
|
9482
|
+
raise NotImplementedError()
|
|
9483
|
+
|
|
9204
9484
|
def to_editable(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.Point:
|
|
9205
9485
|
'''Gets an editable copy of this geometry.
|
|
9206
9486
|
|
|
@@ -9393,16 +9673,8 @@ class IPoint(IGeometry):
|
|
|
9393
9673
|
point set that present in both this geometry and an argument.'''
|
|
9394
9674
|
raise NotImplementedError()
|
|
9395
9675
|
|
|
9396
|
-
def
|
|
9397
|
-
'''
|
|
9398
|
-
|
|
9399
|
-
:param other: A geometry to unite with.
|
|
9400
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9401
|
-
point set that present in this geometry or in an argument.'''
|
|
9402
|
-
raise NotImplementedError()
|
|
9403
|
-
|
|
9404
|
-
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9405
|
-
'''Subtracts a specified geometry from this geometry.
|
|
9676
|
+
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9677
|
+
'''Subtracts a specified geometry from this geometry.
|
|
9406
9678
|
|
|
9407
9679
|
:param other: A geometry to subtract.
|
|
9408
9680
|
:returns: A geometry that represents a difference of this geometry and an argument. The result geometry contains
|
|
@@ -9560,7 +9832,7 @@ class IPolygon(ICurvePolygon):
|
|
|
9560
9832
|
raise NotImplementedError()
|
|
9561
9833
|
|
|
9562
9834
|
@overload
|
|
9563
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
9835
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
9564
9836
|
'''Export this geometry to an image representation.
|
|
9565
9837
|
|
|
9566
9838
|
:param width: Width of the map.
|
|
@@ -9641,6 +9913,24 @@ class IPolygon(ICurvePolygon):
|
|
|
9641
9913
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
9642
9914
|
raise NotImplementedError()
|
|
9643
9915
|
|
|
9916
|
+
@overload
|
|
9917
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9918
|
+
'''Unites this geometry and a specified geometry.
|
|
9919
|
+
|
|
9920
|
+
:param other: A geometry to unite with.
|
|
9921
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9922
|
+
point set that present in this geometry or in an argument.'''
|
|
9923
|
+
raise NotImplementedError()
|
|
9924
|
+
|
|
9925
|
+
@overload
|
|
9926
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
9927
|
+
'''Unites this geometry and all geometries in other list
|
|
9928
|
+
|
|
9929
|
+
:param other: An array of geometries to unite with.
|
|
9930
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9931
|
+
point set that present in this geometry or in an argument.'''
|
|
9932
|
+
raise NotImplementedError()
|
|
9933
|
+
|
|
9644
9934
|
def get_interior_ring(self, index : int) -> aspose.gis.geometries.ILinearRing:
|
|
9645
9935
|
'''Gets the interior ring by its index.
|
|
9646
9936
|
|
|
@@ -9846,14 +10136,6 @@ class IPolygon(ICurvePolygon):
|
|
|
9846
10136
|
point set that present in both this geometry and an argument.'''
|
|
9847
10137
|
raise NotImplementedError()
|
|
9848
10138
|
|
|
9849
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9850
|
-
'''Unites this geometry and a specified geometry.
|
|
9851
|
-
|
|
9852
|
-
:param other: A geometry to unite with.
|
|
9853
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
9854
|
-
point set that present in this geometry or in an argument.'''
|
|
9855
|
-
raise NotImplementedError()
|
|
9856
|
-
|
|
9857
10139
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
9858
10140
|
'''Subtracts a specified geometry from this geometry.
|
|
9859
10141
|
|
|
@@ -10003,7 +10285,7 @@ class ISurface(IGeometry):
|
|
|
10003
10285
|
raise NotImplementedError()
|
|
10004
10286
|
|
|
10005
10287
|
@overload
|
|
10006
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
10288
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
10007
10289
|
'''Export this geometry to an image representation.
|
|
10008
10290
|
|
|
10009
10291
|
:param width: Width of the map.
|
|
@@ -10084,6 +10366,24 @@ class ISurface(IGeometry):
|
|
|
10084
10366
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
10085
10367
|
raise NotImplementedError()
|
|
10086
10368
|
|
|
10369
|
+
@overload
|
|
10370
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10371
|
+
'''Unites this geometry and a specified geometry.
|
|
10372
|
+
|
|
10373
|
+
:param other: A geometry to unite with.
|
|
10374
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10375
|
+
point set that present in this geometry or in an argument.'''
|
|
10376
|
+
raise NotImplementedError()
|
|
10377
|
+
|
|
10378
|
+
@overload
|
|
10379
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
10380
|
+
'''Unites this geometry and all geometries in other list
|
|
10381
|
+
|
|
10382
|
+
:param other: An array of geometries to unite with.
|
|
10383
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10384
|
+
point set that present in this geometry or in an argument.'''
|
|
10385
|
+
raise NotImplementedError()
|
|
10386
|
+
|
|
10087
10387
|
def get_point_on_surface(self) -> aspose.gis.geometries.IPoint:
|
|
10088
10388
|
'''Finds a point that is guaranteed to be on this surface.
|
|
10089
10389
|
|
|
@@ -10282,14 +10582,6 @@ class ISurface(IGeometry):
|
|
|
10282
10582
|
point set that present in both this geometry and an argument.'''
|
|
10283
10583
|
raise NotImplementedError()
|
|
10284
10584
|
|
|
10285
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10286
|
-
'''Unites this geometry and a specified geometry.
|
|
10287
|
-
|
|
10288
|
-
:param other: A geometry to unite with.
|
|
10289
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10290
|
-
point set that present in this geometry or in an argument.'''
|
|
10291
|
-
raise NotImplementedError()
|
|
10292
|
-
|
|
10293
10585
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10294
10586
|
'''Subtracts a specified geometry from this geometry.
|
|
10295
10587
|
|
|
@@ -10357,6 +10649,22 @@ class ISurface(IGeometry):
|
|
|
10357
10649
|
class LineString(Curve):
|
|
10358
10650
|
'''A multi-vertex line.'''
|
|
10359
10651
|
|
|
10652
|
+
@overload
|
|
10653
|
+
def __init__(self) -> None:
|
|
10654
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.LineString` class.'''
|
|
10655
|
+
raise NotImplementedError()
|
|
10656
|
+
|
|
10657
|
+
@overload
|
|
10658
|
+
def __init__(self, collection : Iterable[aspose.gis.geometries.IPoint]) -> None:
|
|
10659
|
+
raise NotImplementedError()
|
|
10660
|
+
|
|
10661
|
+
@overload
|
|
10662
|
+
def __init__(self, other : aspose.gis.geometries.ILineString) -> None:
|
|
10663
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.LineString` class.
|
|
10664
|
+
|
|
10665
|
+
:param other: The other line to copy data from.'''
|
|
10666
|
+
raise NotImplementedError()
|
|
10667
|
+
|
|
10360
10668
|
@overload
|
|
10361
10669
|
@staticmethod
|
|
10362
10670
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -10477,7 +10785,7 @@ class LineString(Curve):
|
|
|
10477
10785
|
raise NotImplementedError()
|
|
10478
10786
|
|
|
10479
10787
|
@overload
|
|
10480
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
10788
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
10481
10789
|
'''Export this geometry to an image representation.
|
|
10482
10790
|
|
|
10483
10791
|
:param width: Width of the map.
|
|
@@ -10558,6 +10866,24 @@ class LineString(Curve):
|
|
|
10558
10866
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
10559
10867
|
raise NotImplementedError()
|
|
10560
10868
|
|
|
10869
|
+
@overload
|
|
10870
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10871
|
+
'''Unites this geometry and a specified geometry.
|
|
10872
|
+
|
|
10873
|
+
:param other: A geometry to unite with.
|
|
10874
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10875
|
+
point set that present in this geometry or in an argument.'''
|
|
10876
|
+
raise NotImplementedError()
|
|
10877
|
+
|
|
10878
|
+
@overload
|
|
10879
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
10880
|
+
'''Unites this geometry and all geometries in other list
|
|
10881
|
+
|
|
10882
|
+
:param other: A list of geometries to unite with.
|
|
10883
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10884
|
+
point set that present in this geometry or in an argument.'''
|
|
10885
|
+
raise NotImplementedError()
|
|
10886
|
+
|
|
10561
10887
|
@overload
|
|
10562
10888
|
def add_point(self, point : aspose.gis.geometries.IPoint) -> None:
|
|
10563
10889
|
'''Adds a point to the end of the line.
|
|
@@ -10813,14 +11139,6 @@ class LineString(Curve):
|
|
|
10813
11139
|
point set that present in both this geometry and an argument.'''
|
|
10814
11140
|
raise NotImplementedError()
|
|
10815
11141
|
|
|
10816
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10817
|
-
'''Unites this geometry and a specified geometry.
|
|
10818
|
-
|
|
10819
|
-
:param other: A geometry to unite with.
|
|
10820
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
10821
|
-
point set that present in this geometry or in an argument.'''
|
|
10822
|
-
raise NotImplementedError()
|
|
10823
|
-
|
|
10824
11142
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
10825
11143
|
'''Subtracts a specified geometry from this geometry.
|
|
10826
11144
|
|
|
@@ -10853,8 +11171,11 @@ class LineString(Curve):
|
|
|
10853
11171
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
10854
11172
|
raise NotImplementedError()
|
|
10855
11173
|
|
|
10856
|
-
|
|
10857
|
-
|
|
11174
|
+
@property
|
|
11175
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
11176
|
+
'''Gets an instance of null geometry.'''
|
|
11177
|
+
raise NotImplementedError()
|
|
11178
|
+
|
|
10858
11179
|
@property
|
|
10859
11180
|
def coordinate_dimension(self) -> int:
|
|
10860
11181
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -10946,6 +11267,22 @@ class LineString(Curve):
|
|
|
10946
11267
|
class LinearRing(LineString):
|
|
10947
11268
|
'''A :py:class:`aspose.gis.geometries.LinearRing` is a :py:class:`aspose.gis.geometries.LineString` that is both closed and simple.'''
|
|
10948
11269
|
|
|
11270
|
+
@overload
|
|
11271
|
+
def __init__(self) -> None:
|
|
11272
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.LinearRing` class.'''
|
|
11273
|
+
raise NotImplementedError()
|
|
11274
|
+
|
|
11275
|
+
@overload
|
|
11276
|
+
def __init__(self, other : aspose.gis.geometries.ILineString) -> None:
|
|
11277
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.LinearRing` class.
|
|
11278
|
+
|
|
11279
|
+
:param other: The other line to copy data from.'''
|
|
11280
|
+
raise NotImplementedError()
|
|
11281
|
+
|
|
11282
|
+
@overload
|
|
11283
|
+
def __init__(self, collection : Iterable[aspose.gis.geometries.IPoint]) -> None:
|
|
11284
|
+
raise NotImplementedError()
|
|
11285
|
+
|
|
10949
11286
|
@overload
|
|
10950
11287
|
@staticmethod
|
|
10951
11288
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -11066,7 +11403,7 @@ class LinearRing(LineString):
|
|
|
11066
11403
|
raise NotImplementedError()
|
|
11067
11404
|
|
|
11068
11405
|
@overload
|
|
11069
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
11406
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
11070
11407
|
'''Export this geometry to an image representation.
|
|
11071
11408
|
|
|
11072
11409
|
:param width: Width of the map.
|
|
@@ -11147,6 +11484,24 @@ class LinearRing(LineString):
|
|
|
11147
11484
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
11148
11485
|
raise NotImplementedError()
|
|
11149
11486
|
|
|
11487
|
+
@overload
|
|
11488
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
11489
|
+
'''Unites this geometry and a specified geometry.
|
|
11490
|
+
|
|
11491
|
+
:param other: A geometry to unite with.
|
|
11492
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
11493
|
+
point set that present in this geometry or in an argument.'''
|
|
11494
|
+
raise NotImplementedError()
|
|
11495
|
+
|
|
11496
|
+
@overload
|
|
11497
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
11498
|
+
'''Unites this geometry and all geometries in other list
|
|
11499
|
+
|
|
11500
|
+
:param other: A list of geometries to unite with.
|
|
11501
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
11502
|
+
point set that present in this geometry or in an argument.'''
|
|
11503
|
+
raise NotImplementedError()
|
|
11504
|
+
|
|
11150
11505
|
@overload
|
|
11151
11506
|
def add_point(self, point : aspose.gis.geometries.IPoint) -> None:
|
|
11152
11507
|
'''Adds a point to the end of the line.
|
|
@@ -11402,14 +11757,6 @@ class LinearRing(LineString):
|
|
|
11402
11757
|
point set that present in both this geometry and an argument.'''
|
|
11403
11758
|
raise NotImplementedError()
|
|
11404
11759
|
|
|
11405
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
11406
|
-
'''Unites this geometry and a specified geometry.
|
|
11407
|
-
|
|
11408
|
-
:param other: A geometry to unite with.
|
|
11409
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
11410
|
-
point set that present in this geometry or in an argument.'''
|
|
11411
|
-
raise NotImplementedError()
|
|
11412
|
-
|
|
11413
11760
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
11414
11761
|
'''Subtracts a specified geometry from this geometry.
|
|
11415
11762
|
|
|
@@ -11448,8 +11795,11 @@ class LinearRing(LineString):
|
|
|
11448
11795
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
11449
11796
|
raise NotImplementedError()
|
|
11450
11797
|
|
|
11451
|
-
|
|
11452
|
-
|
|
11798
|
+
@property
|
|
11799
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
11800
|
+
'''Gets an instance of null geometry.'''
|
|
11801
|
+
raise NotImplementedError()
|
|
11802
|
+
|
|
11453
11803
|
@property
|
|
11454
11804
|
def coordinate_dimension(self) -> int:
|
|
11455
11805
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -11541,6 +11891,10 @@ class MultiCurve(GeometryCollection):
|
|
|
11541
11891
|
'''A :py:class:`aspose.gis.geometries.MultiCurve` is a one-dimensional :py:class:`aspose.gis.geometries.GeometryCollection`
|
|
11542
11892
|
whose elements are :py:class:`aspose.gis.geometries.Curve`s.'''
|
|
11543
11893
|
|
|
11894
|
+
def __init__(self) -> None:
|
|
11895
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.MultiCurve` class.'''
|
|
11896
|
+
raise NotImplementedError()
|
|
11897
|
+
|
|
11544
11898
|
@overload
|
|
11545
11899
|
@staticmethod
|
|
11546
11900
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -11651,7 +12005,7 @@ class MultiCurve(GeometryCollection):
|
|
|
11651
12005
|
raise NotImplementedError()
|
|
11652
12006
|
|
|
11653
12007
|
@overload
|
|
11654
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
12008
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
11655
12009
|
'''Export this geometry to an image representation.
|
|
11656
12010
|
|
|
11657
12011
|
:param width: Width of the map.
|
|
@@ -11732,6 +12086,24 @@ class MultiCurve(GeometryCollection):
|
|
|
11732
12086
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
11733
12087
|
raise NotImplementedError()
|
|
11734
12088
|
|
|
12089
|
+
@overload
|
|
12090
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
12091
|
+
'''Unites this geometry and a specified geometry.
|
|
12092
|
+
|
|
12093
|
+
:param other: A geometry to unite with.
|
|
12094
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
12095
|
+
point set that present in this geometry or in an argument.'''
|
|
12096
|
+
raise NotImplementedError()
|
|
12097
|
+
|
|
12098
|
+
@overload
|
|
12099
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
12100
|
+
'''Unites this geometry and all geometries in other list
|
|
12101
|
+
|
|
12102
|
+
:param other: A list of geometries to unite with.
|
|
12103
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
12104
|
+
point set that present in this geometry or in an argument.'''
|
|
12105
|
+
raise NotImplementedError()
|
|
12106
|
+
|
|
11735
12107
|
def to_editable(self) -> aspose.gis.geometries.MultiCurve:
|
|
11736
12108
|
'''Gets an editable copy of this geometry.
|
|
11737
12109
|
|
|
@@ -11953,14 +12325,6 @@ class MultiCurve(GeometryCollection):
|
|
|
11953
12325
|
point set that present in both this geometry and an argument.'''
|
|
11954
12326
|
raise NotImplementedError()
|
|
11955
12327
|
|
|
11956
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
11957
|
-
'''Unites this geometry and a specified geometry.
|
|
11958
|
-
|
|
11959
|
-
:param other: A geometry to unite with.
|
|
11960
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
11961
|
-
point set that present in this geometry or in an argument.'''
|
|
11962
|
-
raise NotImplementedError()
|
|
11963
|
-
|
|
11964
12328
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
11965
12329
|
'''Subtracts a specified geometry from this geometry.
|
|
11966
12330
|
|
|
@@ -12010,8 +12374,11 @@ class MultiCurve(GeometryCollection):
|
|
|
12010
12374
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
12011
12375
|
raise NotImplementedError()
|
|
12012
12376
|
|
|
12013
|
-
|
|
12014
|
-
|
|
12377
|
+
@property
|
|
12378
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
12379
|
+
'''Gets an instance of null geometry.'''
|
|
12380
|
+
raise NotImplementedError()
|
|
12381
|
+
|
|
12015
12382
|
@property
|
|
12016
12383
|
def coordinate_dimension(self) -> int:
|
|
12017
12384
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -12094,6 +12461,10 @@ class MultiLineString(MultiCurve):
|
|
|
12094
12461
|
'''A :py:class:`aspose.gis.geometries.MultiLineString` is a one-dimensional :py:class:`aspose.gis.geometries.GeometryCollection`
|
|
12095
12462
|
whose elements are :py:class:`aspose.gis.geometries.LineString`s.'''
|
|
12096
12463
|
|
|
12464
|
+
def __init__(self) -> None:
|
|
12465
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.MultiLineString` class.'''
|
|
12466
|
+
raise NotImplementedError()
|
|
12467
|
+
|
|
12097
12468
|
@overload
|
|
12098
12469
|
@staticmethod
|
|
12099
12470
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -12204,7 +12575,7 @@ class MultiLineString(MultiCurve):
|
|
|
12204
12575
|
raise NotImplementedError()
|
|
12205
12576
|
|
|
12206
12577
|
@overload
|
|
12207
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
12578
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
12208
12579
|
'''Export this geometry to an image representation.
|
|
12209
12580
|
|
|
12210
12581
|
:param width: Width of the map.
|
|
@@ -12285,6 +12656,24 @@ class MultiLineString(MultiCurve):
|
|
|
12285
12656
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
12286
12657
|
raise NotImplementedError()
|
|
12287
12658
|
|
|
12659
|
+
@overload
|
|
12660
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
12661
|
+
'''Unites this geometry and a specified geometry.
|
|
12662
|
+
|
|
12663
|
+
:param other: A geometry to unite with.
|
|
12664
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
12665
|
+
point set that present in this geometry or in an argument.'''
|
|
12666
|
+
raise NotImplementedError()
|
|
12667
|
+
|
|
12668
|
+
@overload
|
|
12669
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
12670
|
+
'''Unites this geometry and all geometries in other list
|
|
12671
|
+
|
|
12672
|
+
:param other: A list of geometries to unite with.
|
|
12673
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
12674
|
+
point set that present in this geometry or in an argument.'''
|
|
12675
|
+
raise NotImplementedError()
|
|
12676
|
+
|
|
12288
12677
|
def to_editable(self) -> aspose.gis.geometries.MultiLineString:
|
|
12289
12678
|
'''Gets an editable copy of this geometry.
|
|
12290
12679
|
|
|
@@ -12506,14 +12895,6 @@ class MultiLineString(MultiCurve):
|
|
|
12506
12895
|
point set that present in both this geometry and an argument.'''
|
|
12507
12896
|
raise NotImplementedError()
|
|
12508
12897
|
|
|
12509
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
12510
|
-
'''Unites this geometry and a specified geometry.
|
|
12511
|
-
|
|
12512
|
-
:param other: A geometry to unite with.
|
|
12513
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
12514
|
-
point set that present in this geometry or in an argument.'''
|
|
12515
|
-
raise NotImplementedError()
|
|
12516
|
-
|
|
12517
12898
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
12518
12899
|
'''Subtracts a specified geometry from this geometry.
|
|
12519
12900
|
|
|
@@ -12563,8 +12944,11 @@ class MultiLineString(MultiCurve):
|
|
|
12563
12944
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
12564
12945
|
raise NotImplementedError()
|
|
12565
12946
|
|
|
12566
|
-
|
|
12567
|
-
|
|
12947
|
+
@property
|
|
12948
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
12949
|
+
'''Gets an instance of null geometry.'''
|
|
12950
|
+
raise NotImplementedError()
|
|
12951
|
+
|
|
12568
12952
|
@property
|
|
12569
12953
|
def coordinate_dimension(self) -> int:
|
|
12570
12954
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -12647,6 +13031,10 @@ class MultiPoint(GeometryCollection):
|
|
|
12647
13031
|
'''A :py:class:`aspose.gis.geometries.MultiPoint` is a one-dimensional :py:class:`aspose.gis.geometries.GeometryCollection`
|
|
12648
13032
|
whose elements are :py:class:`aspose.gis.geometries.Point`s.'''
|
|
12649
13033
|
|
|
13034
|
+
def __init__(self) -> None:
|
|
13035
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.MultiPoint` class.'''
|
|
13036
|
+
raise NotImplementedError()
|
|
13037
|
+
|
|
12650
13038
|
@overload
|
|
12651
13039
|
@staticmethod
|
|
12652
13040
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -12746,7 +13134,7 @@ class MultiPoint(GeometryCollection):
|
|
|
12746
13134
|
raise NotImplementedError()
|
|
12747
13135
|
|
|
12748
13136
|
@overload
|
|
12749
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
13137
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
12750
13138
|
'''Export this geometry to an image representation.
|
|
12751
13139
|
|
|
12752
13140
|
:param width: Width of the map.
|
|
@@ -12827,6 +13215,24 @@ class MultiPoint(GeometryCollection):
|
|
|
12827
13215
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
12828
13216
|
raise NotImplementedError()
|
|
12829
13217
|
|
|
13218
|
+
@overload
|
|
13219
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13220
|
+
'''Unites this geometry and a specified geometry.
|
|
13221
|
+
|
|
13222
|
+
:param other: A geometry to unite with.
|
|
13223
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13224
|
+
point set that present in this geometry or in an argument.'''
|
|
13225
|
+
raise NotImplementedError()
|
|
13226
|
+
|
|
13227
|
+
@overload
|
|
13228
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
13229
|
+
'''Unites this geometry and all geometries in other list
|
|
13230
|
+
|
|
13231
|
+
:param other: A list of geometries to unite with.
|
|
13232
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13233
|
+
point set that present in this geometry or in an argument.'''
|
|
13234
|
+
raise NotImplementedError()
|
|
13235
|
+
|
|
12830
13236
|
def to_editable(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.MultiPoint:
|
|
12831
13237
|
'''Gets an editable copy of this geometry.
|
|
12832
13238
|
|
|
@@ -13048,14 +13454,6 @@ class MultiPoint(GeometryCollection):
|
|
|
13048
13454
|
point set that present in both this geometry and an argument.'''
|
|
13049
13455
|
raise NotImplementedError()
|
|
13050
13456
|
|
|
13051
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13052
|
-
'''Unites this geometry and a specified geometry.
|
|
13053
|
-
|
|
13054
|
-
:param other: A geometry to unite with.
|
|
13055
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13056
|
-
point set that present in this geometry or in an argument.'''
|
|
13057
|
-
raise NotImplementedError()
|
|
13058
|
-
|
|
13059
13457
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13060
13458
|
'''Subtracts a specified geometry from this geometry.
|
|
13061
13459
|
|
|
@@ -13105,8 +13503,11 @@ class MultiPoint(GeometryCollection):
|
|
|
13105
13503
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
13106
13504
|
raise NotImplementedError()
|
|
13107
13505
|
|
|
13108
|
-
|
|
13109
|
-
|
|
13506
|
+
@property
|
|
13507
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
13508
|
+
'''Gets an instance of null geometry.'''
|
|
13509
|
+
raise NotImplementedError()
|
|
13510
|
+
|
|
13110
13511
|
@property
|
|
13111
13512
|
def coordinate_dimension(self) -> int:
|
|
13112
13513
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -13184,6 +13585,10 @@ class MultiPolygon(MultiSurface):
|
|
|
13184
13585
|
'''A :py:class:`aspose.gis.geometries.MultiPolygon` is a one-dimensional
|
|
13185
13586
|
:py:class:`aspose.gis.geometries.GeometryCollection` whose elements are :py:class:`aspose.gis.geometries.Polygon`s.'''
|
|
13186
13587
|
|
|
13588
|
+
def __init__(self) -> None:
|
|
13589
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.MultiPolygon` class.'''
|
|
13590
|
+
raise NotImplementedError()
|
|
13591
|
+
|
|
13187
13592
|
@overload
|
|
13188
13593
|
@staticmethod
|
|
13189
13594
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -13294,7 +13699,7 @@ class MultiPolygon(MultiSurface):
|
|
|
13294
13699
|
raise NotImplementedError()
|
|
13295
13700
|
|
|
13296
13701
|
@overload
|
|
13297
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
13702
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
13298
13703
|
'''Export this geometry to an image representation.
|
|
13299
13704
|
|
|
13300
13705
|
:param width: Width of the map.
|
|
@@ -13375,6 +13780,24 @@ class MultiPolygon(MultiSurface):
|
|
|
13375
13780
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
13376
13781
|
raise NotImplementedError()
|
|
13377
13782
|
|
|
13783
|
+
@overload
|
|
13784
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13785
|
+
'''Unites this geometry and a specified geometry.
|
|
13786
|
+
|
|
13787
|
+
:param other: A geometry to unite with.
|
|
13788
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13789
|
+
point set that present in this geometry or in an argument.'''
|
|
13790
|
+
raise NotImplementedError()
|
|
13791
|
+
|
|
13792
|
+
@overload
|
|
13793
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
13794
|
+
'''Unites this geometry and all geometries in other list
|
|
13795
|
+
|
|
13796
|
+
:param other: A list of geometries to unite with.
|
|
13797
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13798
|
+
point set that present in this geometry or in an argument.'''
|
|
13799
|
+
raise NotImplementedError()
|
|
13800
|
+
|
|
13378
13801
|
def to_editable(self) -> aspose.gis.geometries.MultiPolygon:
|
|
13379
13802
|
'''Gets an editable copy of this geometry.
|
|
13380
13803
|
|
|
@@ -13596,14 +14019,6 @@ class MultiPolygon(MultiSurface):
|
|
|
13596
14019
|
point set that present in both this geometry and an argument.'''
|
|
13597
14020
|
raise NotImplementedError()
|
|
13598
14021
|
|
|
13599
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13600
|
-
'''Unites this geometry and a specified geometry.
|
|
13601
|
-
|
|
13602
|
-
:param other: A geometry to unite with.
|
|
13603
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
13604
|
-
point set that present in this geometry or in an argument.'''
|
|
13605
|
-
raise NotImplementedError()
|
|
13606
|
-
|
|
13607
14022
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
13608
14023
|
'''Subtracts a specified geometry from this geometry.
|
|
13609
14024
|
|
|
@@ -13653,8 +14068,11 @@ class MultiPolygon(MultiSurface):
|
|
|
13653
14068
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
13654
14069
|
raise NotImplementedError()
|
|
13655
14070
|
|
|
13656
|
-
|
|
13657
|
-
|
|
14071
|
+
@property
|
|
14072
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
14073
|
+
'''Gets an instance of null geometry.'''
|
|
14074
|
+
raise NotImplementedError()
|
|
14075
|
+
|
|
13658
14076
|
@property
|
|
13659
14077
|
def coordinate_dimension(self) -> int:
|
|
13660
14078
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -13731,6 +14149,10 @@ class MultiPolygon(MultiSurface):
|
|
|
13731
14149
|
class MultiSurface(GeometryCollection):
|
|
13732
14150
|
'''A :py:class:`aspose.gis.geometries.MultiSurface` is a one-dimensional :py:class:`aspose.gis.geometries.GeometryCollection` whose elements are :py:class:`aspose.gis.geometries.ISurface`s.'''
|
|
13733
14151
|
|
|
14152
|
+
def __init__(self) -> None:
|
|
14153
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.MultiSurface` class.'''
|
|
14154
|
+
raise NotImplementedError()
|
|
14155
|
+
|
|
13734
14156
|
@overload
|
|
13735
14157
|
@staticmethod
|
|
13736
14158
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -13841,7 +14263,7 @@ class MultiSurface(GeometryCollection):
|
|
|
13841
14263
|
raise NotImplementedError()
|
|
13842
14264
|
|
|
13843
14265
|
@overload
|
|
13844
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
14266
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
13845
14267
|
'''Export this geometry to an image representation.
|
|
13846
14268
|
|
|
13847
14269
|
:param width: Width of the map.
|
|
@@ -13922,6 +14344,24 @@ class MultiSurface(GeometryCollection):
|
|
|
13922
14344
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
13923
14345
|
raise NotImplementedError()
|
|
13924
14346
|
|
|
14347
|
+
@overload
|
|
14348
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14349
|
+
'''Unites this geometry and a specified geometry.
|
|
14350
|
+
|
|
14351
|
+
:param other: A geometry to unite with.
|
|
14352
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14353
|
+
point set that present in this geometry or in an argument.'''
|
|
14354
|
+
raise NotImplementedError()
|
|
14355
|
+
|
|
14356
|
+
@overload
|
|
14357
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
14358
|
+
'''Unites this geometry and all geometries in other list
|
|
14359
|
+
|
|
14360
|
+
:param other: A list of geometries to unite with.
|
|
14361
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14362
|
+
point set that present in this geometry or in an argument.'''
|
|
14363
|
+
raise NotImplementedError()
|
|
14364
|
+
|
|
13925
14365
|
def to_editable(self) -> aspose.gis.geometries.MultiSurface:
|
|
13926
14366
|
'''Gets an editable copy of this geometry.
|
|
13927
14367
|
|
|
@@ -14143,14 +14583,6 @@ class MultiSurface(GeometryCollection):
|
|
|
14143
14583
|
point set that present in both this geometry and an argument.'''
|
|
14144
14584
|
raise NotImplementedError()
|
|
14145
14585
|
|
|
14146
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14147
|
-
'''Unites this geometry and a specified geometry.
|
|
14148
|
-
|
|
14149
|
-
:param other: A geometry to unite with.
|
|
14150
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14151
|
-
point set that present in this geometry or in an argument.'''
|
|
14152
|
-
raise NotImplementedError()
|
|
14153
|
-
|
|
14154
14586
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14155
14587
|
'''Subtracts a specified geometry from this geometry.
|
|
14156
14588
|
|
|
@@ -14200,8 +14632,11 @@ class MultiSurface(GeometryCollection):
|
|
|
14200
14632
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
14201
14633
|
raise NotImplementedError()
|
|
14202
14634
|
|
|
14203
|
-
|
|
14204
|
-
|
|
14635
|
+
@property
|
|
14636
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
14637
|
+
'''Gets an instance of null geometry.'''
|
|
14638
|
+
raise NotImplementedError()
|
|
14639
|
+
|
|
14205
14640
|
@property
|
|
14206
14641
|
def coordinate_dimension(self) -> int:
|
|
14207
14642
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -14278,6 +14713,45 @@ class MultiSurface(GeometryCollection):
|
|
|
14278
14713
|
class Point(Geometry):
|
|
14279
14714
|
'''A :py:class:`aspose.gis.geometries.Point` represents a single location in coordinate space.'''
|
|
14280
14715
|
|
|
14716
|
+
@overload
|
|
14717
|
+
def __init__(self) -> None:
|
|
14718
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Point` class.'''
|
|
14719
|
+
raise NotImplementedError()
|
|
14720
|
+
|
|
14721
|
+
@overload
|
|
14722
|
+
def __init__(self, x : float, y : float) -> None:
|
|
14723
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Point` class.
|
|
14724
|
+
|
|
14725
|
+
:param x: The value for X coordinate.
|
|
14726
|
+
:param y: The value for Y coordinate.'''
|
|
14727
|
+
raise NotImplementedError()
|
|
14728
|
+
|
|
14729
|
+
@overload
|
|
14730
|
+
def __init__(self, x : float, y : float, z : float) -> None:
|
|
14731
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Point` class.
|
|
14732
|
+
|
|
14733
|
+
:param x: The value for X coordinate.
|
|
14734
|
+
:param y: The value for Y coordinate.
|
|
14735
|
+
:param z: The value for Z coordinate.'''
|
|
14736
|
+
raise NotImplementedError()
|
|
14737
|
+
|
|
14738
|
+
@overload
|
|
14739
|
+
def __init__(self, x : float, y : float, z : float, m : float) -> None:
|
|
14740
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Point` class.
|
|
14741
|
+
|
|
14742
|
+
:param x: The value for X coordinate.
|
|
14743
|
+
:param y: The value for Y coordinate.
|
|
14744
|
+
:param z: The value for Z coordinate.
|
|
14745
|
+
:param m: The value for M coordinate.'''
|
|
14746
|
+
raise NotImplementedError()
|
|
14747
|
+
|
|
14748
|
+
@overload
|
|
14749
|
+
def __init__(self, other : aspose.gis.geometries.IPoint) -> None:
|
|
14750
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Point` class.
|
|
14751
|
+
|
|
14752
|
+
:param other: The other :py:class:`aspose.gis.geometries.IPoint` to copy data from.'''
|
|
14753
|
+
raise NotImplementedError()
|
|
14754
|
+
|
|
14281
14755
|
@overload
|
|
14282
14756
|
@staticmethod
|
|
14283
14757
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -14378,7 +14852,7 @@ class Point(Geometry):
|
|
|
14378
14852
|
raise NotImplementedError()
|
|
14379
14853
|
|
|
14380
14854
|
@overload
|
|
14381
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
14855
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
14382
14856
|
'''Export this geometry to an image representation.
|
|
14383
14857
|
|
|
14384
14858
|
:param width: Width of the map.
|
|
@@ -14459,6 +14933,24 @@ class Point(Geometry):
|
|
|
14459
14933
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
14460
14934
|
raise NotImplementedError()
|
|
14461
14935
|
|
|
14936
|
+
@overload
|
|
14937
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14938
|
+
'''Unites this geometry and a specified geometry.
|
|
14939
|
+
|
|
14940
|
+
:param other: A geometry to unite with.
|
|
14941
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14942
|
+
point set that present in this geometry or in an argument.'''
|
|
14943
|
+
raise NotImplementedError()
|
|
14944
|
+
|
|
14945
|
+
@overload
|
|
14946
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
14947
|
+
'''Unites this geometry and all geometries in other list
|
|
14948
|
+
|
|
14949
|
+
:param other: A list of geometries to unite with.
|
|
14950
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14951
|
+
point set that present in this geometry or in an argument.'''
|
|
14952
|
+
raise NotImplementedError()
|
|
14953
|
+
|
|
14462
14954
|
def to_editable(self) -> aspose.gis.common.formats.mapinfo.graphicalobjects.Point:
|
|
14463
14955
|
'''Gets an editable copy of this geometry.
|
|
14464
14956
|
|
|
@@ -14680,14 +15172,6 @@ class Point(Geometry):
|
|
|
14680
15172
|
point set that present in both this geometry and an argument.'''
|
|
14681
15173
|
raise NotImplementedError()
|
|
14682
15174
|
|
|
14683
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14684
|
-
'''Unites this geometry and a specified geometry.
|
|
14685
|
-
|
|
14686
|
-
:param other: A geometry to unite with.
|
|
14687
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
14688
|
-
point set that present in this geometry or in an argument.'''
|
|
14689
|
-
raise NotImplementedError()
|
|
14690
|
-
|
|
14691
15175
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
14692
15176
|
'''Subtracts a specified geometry from this geometry.
|
|
14693
15177
|
|
|
@@ -14716,8 +15200,11 @@ class Point(Geometry):
|
|
|
14716
15200
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
14717
15201
|
raise NotImplementedError()
|
|
14718
15202
|
|
|
14719
|
-
|
|
14720
|
-
|
|
15203
|
+
@property
|
|
15204
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
15205
|
+
'''Gets an instance of null geometry.'''
|
|
15206
|
+
raise NotImplementedError()
|
|
15207
|
+
|
|
14721
15208
|
@property
|
|
14722
15209
|
def coordinate_dimension(self) -> int:
|
|
14723
15210
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -14827,6 +15314,22 @@ class Polygon(Surface):
|
|
|
14827
15314
|
'''A :py:class:`aspose.gis.geometries.Polygon` is a planar surface,
|
|
14828
15315
|
defined by 1 exterior boundary and 0 or more interior boundaries.'''
|
|
14829
15316
|
|
|
15317
|
+
@overload
|
|
15318
|
+
def __init__(self) -> None:
|
|
15319
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Polygon` class.'''
|
|
15320
|
+
raise NotImplementedError()
|
|
15321
|
+
|
|
15322
|
+
@overload
|
|
15323
|
+
def __init__(self, exterior_ring : aspose.gis.geometries.ILinearRing) -> None:
|
|
15324
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.geometries.Polygon` class.
|
|
15325
|
+
|
|
15326
|
+
:param exterior_ring: The exterior ring.'''
|
|
15327
|
+
raise NotImplementedError()
|
|
15328
|
+
|
|
15329
|
+
@overload
|
|
15330
|
+
def __init__(self, exterior_ring : aspose.gis.geometries.ILinearRing, interior_rings : Iterable[aspose.gis.geometries.ILinearRing]) -> None:
|
|
15331
|
+
raise NotImplementedError()
|
|
15332
|
+
|
|
14830
15333
|
@overload
|
|
14831
15334
|
@staticmethod
|
|
14832
15335
|
def from_text(wkt : str) -> aspose.gis.geometries.IGeometry:
|
|
@@ -14937,7 +15440,7 @@ class Polygon(Surface):
|
|
|
14937
15440
|
raise NotImplementedError()
|
|
14938
15441
|
|
|
14939
15442
|
@overload
|
|
14940
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
15443
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
14941
15444
|
'''Export this geometry to an image representation.
|
|
14942
15445
|
|
|
14943
15446
|
:param width: Width of the map.
|
|
@@ -15018,6 +15521,24 @@ class Polygon(Surface):
|
|
|
15018
15521
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
15019
15522
|
raise NotImplementedError()
|
|
15020
15523
|
|
|
15524
|
+
@overload
|
|
15525
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
15526
|
+
'''Unites this geometry and a specified geometry.
|
|
15527
|
+
|
|
15528
|
+
:param other: A geometry to unite with.
|
|
15529
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
15530
|
+
point set that present in this geometry or in an argument.'''
|
|
15531
|
+
raise NotImplementedError()
|
|
15532
|
+
|
|
15533
|
+
@overload
|
|
15534
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
15535
|
+
'''Unites this geometry and all geometries in other list
|
|
15536
|
+
|
|
15537
|
+
:param other: A list of geometries to unite with.
|
|
15538
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
15539
|
+
point set that present in this geometry or in an argument.'''
|
|
15540
|
+
raise NotImplementedError()
|
|
15541
|
+
|
|
15021
15542
|
@overload
|
|
15022
15543
|
def equals(self, other : aspose.gis.geometries.ICurvePolygon) -> bool:
|
|
15023
15544
|
'''Determines whether the specified object is equal to the current object.
|
|
@@ -15255,14 +15776,6 @@ class Polygon(Surface):
|
|
|
15255
15776
|
point set that present in both this geometry and an argument.'''
|
|
15256
15777
|
raise NotImplementedError()
|
|
15257
15778
|
|
|
15258
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
15259
|
-
'''Unites this geometry and a specified geometry.
|
|
15260
|
-
|
|
15261
|
-
:param other: A geometry to unite with.
|
|
15262
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
15263
|
-
point set that present in this geometry or in an argument.'''
|
|
15264
|
-
raise NotImplementedError()
|
|
15265
|
-
|
|
15266
15779
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
15267
15780
|
'''Subtracts a specified geometry from this geometry.
|
|
15268
15781
|
|
|
@@ -15303,8 +15816,11 @@ class Polygon(Surface):
|
|
|
15303
15816
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
15304
15817
|
raise NotImplementedError()
|
|
15305
15818
|
|
|
15306
|
-
|
|
15307
|
-
|
|
15819
|
+
@property
|
|
15820
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
15821
|
+
'''Gets an instance of null geometry.'''
|
|
15822
|
+
raise NotImplementedError()
|
|
15823
|
+
|
|
15308
15824
|
@property
|
|
15309
15825
|
def coordinate_dimension(self) -> int:
|
|
15310
15826
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
@@ -15498,7 +16014,7 @@ class Surface(Geometry):
|
|
|
15498
16014
|
raise NotImplementedError()
|
|
15499
16015
|
|
|
15500
16016
|
@overload
|
|
15501
|
-
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io.
|
|
16017
|
+
def as_image(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement, renderer : aspose.gis.rendering.Renderer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> io._IOBase:
|
|
15502
16018
|
'''Export this geometry to an image representation.
|
|
15503
16019
|
|
|
15504
16020
|
:param width: Width of the map.
|
|
@@ -15579,6 +16095,24 @@ class Surface(Geometry):
|
|
|
15579
16095
|
:returns: if this geometry "spatially intersects" another geometry. otherwise.'''
|
|
15580
16096
|
raise NotImplementedError()
|
|
15581
16097
|
|
|
16098
|
+
@overload
|
|
16099
|
+
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
16100
|
+
'''Unites this geometry and a specified geometry.
|
|
16101
|
+
|
|
16102
|
+
:param other: A geometry to unite with.
|
|
16103
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
16104
|
+
point set that present in this geometry or in an argument.'''
|
|
16105
|
+
raise NotImplementedError()
|
|
16106
|
+
|
|
16107
|
+
@overload
|
|
16108
|
+
def union(self, other : List[aspose.gis.geometries.IGeometry]) -> aspose.gis.geometries.IGeometry:
|
|
16109
|
+
'''Unites this geometry and all geometries in other list
|
|
16110
|
+
|
|
16111
|
+
:param other: A list of geometries to unite with.
|
|
16112
|
+
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
16113
|
+
point set that present in this geometry or in an argument.'''
|
|
16114
|
+
raise NotImplementedError()
|
|
16115
|
+
|
|
15582
16116
|
def to_editable(self) -> aspose.gis.geometries.Surface:
|
|
15583
16117
|
'''Gets an editable copy of this geometry.
|
|
15584
16118
|
|
|
@@ -15800,14 +16334,6 @@ class Surface(Geometry):
|
|
|
15800
16334
|
point set that present in both this geometry and an argument.'''
|
|
15801
16335
|
raise NotImplementedError()
|
|
15802
16336
|
|
|
15803
|
-
def union(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
15804
|
-
'''Unites this geometry and a specified geometry.
|
|
15805
|
-
|
|
15806
|
-
:param other: A geometry to unite with.
|
|
15807
|
-
:returns: A geometry that represents a union of this geometry and an argument. The result geometry contains
|
|
15808
|
-
point set that present in this geometry or in an argument.'''
|
|
15809
|
-
raise NotImplementedError()
|
|
15810
|
-
|
|
15811
16337
|
def difference(self, other : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.IGeometry:
|
|
15812
16338
|
'''Subtracts a specified geometry from this geometry.
|
|
15813
16339
|
|
|
@@ -15835,8 +16361,11 @@ class Surface(Geometry):
|
|
|
15835
16361
|
'''Gets the topological dimension of this :py:class:`aspose.gis.geometries.Geometry`.'''
|
|
15836
16362
|
raise NotImplementedError()
|
|
15837
16363
|
|
|
15838
|
-
|
|
15839
|
-
|
|
16364
|
+
@property
|
|
16365
|
+
def null(self) -> aspose.gis.geometries.IGeometry:
|
|
16366
|
+
'''Gets an instance of null geometry.'''
|
|
16367
|
+
raise NotImplementedError()
|
|
16368
|
+
|
|
15840
16369
|
@property
|
|
15841
16370
|
def coordinate_dimension(self) -> int:
|
|
15842
16371
|
'''Gets the number of coordinate dimensions for this :py:class:`aspose.gis.geometries.Geometry`.'''
|