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
|
@@ -0,0 +1,746 @@
|
|
|
1
|
+
from typing import List, Optional, Dict, Iterable, Any, overload
|
|
2
|
+
import io
|
|
3
|
+
import collections.abc
|
|
4
|
+
from collections.abc import Sequence
|
|
5
|
+
from datetime import datetime
|
|
6
|
+
from aspose.pyreflection import Type
|
|
7
|
+
import aspose.pycore
|
|
8
|
+
import aspose.pydrawing
|
|
9
|
+
from uuid import UUID
|
|
10
|
+
import aspose.gis
|
|
11
|
+
import aspose.gis.common
|
|
12
|
+
import aspose.gis.common.formats
|
|
13
|
+
import aspose.gis.common.formats.dbase
|
|
14
|
+
import aspose.gis.common.formats.gdbtable
|
|
15
|
+
import aspose.gis.common.formats.mapinfo
|
|
16
|
+
import aspose.gis.common.formats.mapinfo.graphicalobjects
|
|
17
|
+
import aspose.gis.common.formats.mapinfo.interchangeformat
|
|
18
|
+
import aspose.gis.common.formats.mapinfo.styling
|
|
19
|
+
import aspose.gis.common.formats.mapinfo.tabformat
|
|
20
|
+
import aspose.gis.common.formats.mapinfo.tabformat.map
|
|
21
|
+
import aspose.gis.common.formats.wkb
|
|
22
|
+
import aspose.gis.common.formats.wkt
|
|
23
|
+
import aspose.gis.common.formats.xml
|
|
24
|
+
import aspose.gis.common.io
|
|
25
|
+
import aspose.gis.epsg
|
|
26
|
+
import aspose.gis.formats
|
|
27
|
+
import aspose.gis.formats.bmpw
|
|
28
|
+
import aspose.gis.formats.csv
|
|
29
|
+
import aspose.gis.formats.database
|
|
30
|
+
import aspose.gis.formats.database.dataediting
|
|
31
|
+
import aspose.gis.formats.database.fromdefinition
|
|
32
|
+
import aspose.gis.formats.esriascii
|
|
33
|
+
import aspose.gis.formats.esrijson
|
|
34
|
+
import aspose.gis.formats.filegdb
|
|
35
|
+
import aspose.gis.formats.gdal
|
|
36
|
+
import aspose.gis.formats.geojson
|
|
37
|
+
import aspose.gis.formats.geojsonseq
|
|
38
|
+
import aspose.gis.formats.geopackage
|
|
39
|
+
import aspose.gis.formats.geotiff
|
|
40
|
+
import aspose.gis.formats.gml
|
|
41
|
+
import aspose.gis.formats.gpx
|
|
42
|
+
import aspose.gis.formats.infile
|
|
43
|
+
import aspose.gis.formats.inmemory
|
|
44
|
+
import aspose.gis.formats.jpegw
|
|
45
|
+
import aspose.gis.formats.kml
|
|
46
|
+
import aspose.gis.formats.kml.specificfields
|
|
47
|
+
import aspose.gis.formats.kml.styles
|
|
48
|
+
import aspose.gis.formats.mapinfointerchange
|
|
49
|
+
import aspose.gis.formats.mapinfotab
|
|
50
|
+
import aspose.gis.formats.osmxml
|
|
51
|
+
import aspose.gis.formats.pngw
|
|
52
|
+
import aspose.gis.formats.postgis
|
|
53
|
+
import aspose.gis.formats.shapefile
|
|
54
|
+
import aspose.gis.formats.sqlserver
|
|
55
|
+
import aspose.gis.formats.tiffw
|
|
56
|
+
import aspose.gis.formats.topojson
|
|
57
|
+
import aspose.gis.formats.worldfile
|
|
58
|
+
import aspose.gis.formats.xyztile
|
|
59
|
+
import aspose.gis.geometries
|
|
60
|
+
import aspose.gis.geotools
|
|
61
|
+
import aspose.gis.geotools.extensions
|
|
62
|
+
import aspose.gis.geotools.layersmap
|
|
63
|
+
import aspose.gis.geotools.mapbuilder
|
|
64
|
+
import aspose.gis.geotools.wayanalyzer
|
|
65
|
+
import aspose.gis.imagemetadata
|
|
66
|
+
import aspose.gis.indexing
|
|
67
|
+
import aspose.gis.indexing.bplustree
|
|
68
|
+
import aspose.gis.indexing.qixtree
|
|
69
|
+
import aspose.gis.indexing.rtree
|
|
70
|
+
import aspose.gis.labeling
|
|
71
|
+
import aspose.gis.labeling.line
|
|
72
|
+
import aspose.gis.painting
|
|
73
|
+
import aspose.gis.projections
|
|
74
|
+
import aspose.gis.raster
|
|
75
|
+
import aspose.gis.raster.web
|
|
76
|
+
import aspose.gis.relationship
|
|
77
|
+
import aspose.gis.relationship.joins
|
|
78
|
+
import aspose.gis.rendering
|
|
79
|
+
import aspose.gis.rendering.colorizers
|
|
80
|
+
import aspose.gis.rendering.formats
|
|
81
|
+
import aspose.gis.rendering.formats.bmp
|
|
82
|
+
import aspose.gis.rendering.formats.jpeg
|
|
83
|
+
import aspose.gis.rendering.formats.png
|
|
84
|
+
import aspose.gis.rendering.formats.svg
|
|
85
|
+
import aspose.gis.rendering.labelings
|
|
86
|
+
import aspose.gis.rendering.sld
|
|
87
|
+
import aspose.gis.rendering.symbolizers
|
|
88
|
+
import aspose.gis.spatialreferencing
|
|
89
|
+
import aspose.gis.topology
|
|
90
|
+
import aspose.gis.topology.algorithms
|
|
91
|
+
import aspose.gis.topology.buffer
|
|
92
|
+
import aspose.gis.topology.graph
|
|
93
|
+
|
|
94
|
+
class GeoPackageDataset(aspose.gis.Dataset):
|
|
95
|
+
'''Represents a collection of feature layers and tile layers in GeoPackage format.'''
|
|
96
|
+
|
|
97
|
+
def __init__(self, path : aspose.gis.AbstractPath, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> None:
|
|
98
|
+
'''Creates new instance.
|
|
99
|
+
|
|
100
|
+
:param path: Path to file gpkg.
|
|
101
|
+
:param options: Settings regarding the particularities of reading the gpkg file.'''
|
|
102
|
+
raise NotImplementedError()
|
|
103
|
+
|
|
104
|
+
@overload
|
|
105
|
+
@staticmethod
|
|
106
|
+
def open(path : aspose.gis.AbstractPath, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> aspose.gis.formats.geopackage.GeoPackageDataset:
|
|
107
|
+
'''Factory method for creating a dataset from a gpkg file.
|
|
108
|
+
|
|
109
|
+
:param path: Path to file gpkg.
|
|
110
|
+
:param options: Settings regarding the particularities of reading the gpkg file.
|
|
111
|
+
:returns: :py:class:`aspose.gis.formats.geopackage.GeoPackageDataset`'''
|
|
112
|
+
raise NotImplementedError()
|
|
113
|
+
|
|
114
|
+
@overload
|
|
115
|
+
@staticmethod
|
|
116
|
+
def open(path : str, driver : aspose.gis.FileDriver) -> aspose.gis.Dataset:
|
|
117
|
+
'''Opens the dataset.
|
|
118
|
+
|
|
119
|
+
:param path: Path to the dataset.
|
|
120
|
+
:param driver: Driver to use.
|
|
121
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
122
|
+
raise NotImplementedError()
|
|
123
|
+
|
|
124
|
+
@overload
|
|
125
|
+
@staticmethod
|
|
126
|
+
def open(path : aspose.gis.AbstractPath, driver : aspose.gis.FileDriver) -> aspose.gis.Dataset:
|
|
127
|
+
'''Opens the dataset.
|
|
128
|
+
|
|
129
|
+
:param path: Path to the dataset.
|
|
130
|
+
:param driver: Driver to use.
|
|
131
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
132
|
+
raise NotImplementedError()
|
|
133
|
+
|
|
134
|
+
@overload
|
|
135
|
+
@staticmethod
|
|
136
|
+
def open(path : str, driver : aspose.gis.FileDriver, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
137
|
+
'''Opens the dataset.
|
|
138
|
+
|
|
139
|
+
:param path: Path to the dataset.
|
|
140
|
+
:param driver: Driver to use.
|
|
141
|
+
:param options: Driver-specific options.
|
|
142
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
143
|
+
raise NotImplementedError()
|
|
144
|
+
|
|
145
|
+
@overload
|
|
146
|
+
@staticmethod
|
|
147
|
+
def open(path : aspose.gis.AbstractPath, driver : aspose.gis.FileDriver, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
148
|
+
'''Opens the dataset.
|
|
149
|
+
|
|
150
|
+
:param path: Path to the dataset.
|
|
151
|
+
:param driver: Driver to use.
|
|
152
|
+
:param options: Driver-specific options.
|
|
153
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
154
|
+
raise NotImplementedError()
|
|
155
|
+
|
|
156
|
+
@overload
|
|
157
|
+
@staticmethod
|
|
158
|
+
def create(path : str, driver : aspose.gis.FileDriver) -> aspose.gis.Dataset:
|
|
159
|
+
'''Creates a dataset.
|
|
160
|
+
|
|
161
|
+
:param path: Path to the dataset.
|
|
162
|
+
:param driver: Driver to use.
|
|
163
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
164
|
+
raise NotImplementedError()
|
|
165
|
+
|
|
166
|
+
@overload
|
|
167
|
+
@staticmethod
|
|
168
|
+
def create(path : aspose.gis.AbstractPath, driver : aspose.gis.FileDriver) -> aspose.gis.Dataset:
|
|
169
|
+
'''Creates a dataset.
|
|
170
|
+
|
|
171
|
+
:param path: Path to the dataset.
|
|
172
|
+
:param driver: Driver to use.
|
|
173
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
174
|
+
raise NotImplementedError()
|
|
175
|
+
|
|
176
|
+
@overload
|
|
177
|
+
@staticmethod
|
|
178
|
+
def create(path : str, driver : aspose.gis.FileDriver, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
179
|
+
'''Creates a dataset.
|
|
180
|
+
|
|
181
|
+
:param path: Path to the dataset.
|
|
182
|
+
:param driver: Driver to use.
|
|
183
|
+
:param options: Driver-specific options.
|
|
184
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
185
|
+
raise NotImplementedError()
|
|
186
|
+
|
|
187
|
+
@overload
|
|
188
|
+
@staticmethod
|
|
189
|
+
def create(path : aspose.gis.AbstractPath, driver : aspose.gis.FileDriver, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
190
|
+
'''Creates a dataset.
|
|
191
|
+
|
|
192
|
+
:param path: Path to the dataset.
|
|
193
|
+
:param driver: Driver to use.
|
|
194
|
+
:param options: Driver-specific options.
|
|
195
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
196
|
+
raise NotImplementedError()
|
|
197
|
+
|
|
198
|
+
@overload
|
|
199
|
+
def open_layer_at(self, index : int, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
200
|
+
'''Opens the layer at specified index for reading.
|
|
201
|
+
|
|
202
|
+
:param index: Index of the layer to open.
|
|
203
|
+
:param options: Open options.
|
|
204
|
+
:returns: The layer opened for reading.'''
|
|
205
|
+
raise NotImplementedError()
|
|
206
|
+
|
|
207
|
+
@overload
|
|
208
|
+
def open_layer_at(self, index : int, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> aspose.gis.VectorLayer:
|
|
209
|
+
'''Opens the layer at specified index for reading.
|
|
210
|
+
|
|
211
|
+
:param index: Index of the layer to open.
|
|
212
|
+
:param options: Open options.
|
|
213
|
+
:returns: The layer opened for reading.'''
|
|
214
|
+
raise NotImplementedError()
|
|
215
|
+
|
|
216
|
+
@overload
|
|
217
|
+
def create_layer(self) -> aspose.gis.VectorLayer:
|
|
218
|
+
'''Creates a new vector layer and opens it for appending.
|
|
219
|
+
|
|
220
|
+
:returns: A :py:class:`aspose.gis.VectorLayer` opened for writing.'''
|
|
221
|
+
raise NotImplementedError()
|
|
222
|
+
|
|
223
|
+
@overload
|
|
224
|
+
def create_layer(self, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
225
|
+
'''Creates a new vector layer and opens it for appending.
|
|
226
|
+
|
|
227
|
+
:param spatial_reference_system: Spatial reference system of the new layer.
|
|
228
|
+
:returns: A :py:class:`aspose.gis.VectorLayer` opened for writing.'''
|
|
229
|
+
raise NotImplementedError()
|
|
230
|
+
|
|
231
|
+
@overload
|
|
232
|
+
def create_layer(self, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
233
|
+
'''Creates a new vector layer and opens it for appending.
|
|
234
|
+
|
|
235
|
+
:param options: Open options.
|
|
236
|
+
:param spatial_reference_system: Spatial reference system of the new layer.
|
|
237
|
+
:returns: A :py:class:`aspose.gis.VectorLayer` opened for writing.'''
|
|
238
|
+
raise NotImplementedError()
|
|
239
|
+
|
|
240
|
+
@overload
|
|
241
|
+
def create_layer(self, name : str, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
242
|
+
'''Creates a new vector layer with specified name and opens it for appending.
|
|
243
|
+
|
|
244
|
+
:param name: Name of the layer.
|
|
245
|
+
:param spatial_reference_system: Spatial reference system of the new layer.
|
|
246
|
+
:returns: A :py:class:`aspose.gis.VectorLayer` opened for writing.'''
|
|
247
|
+
raise NotImplementedError()
|
|
248
|
+
|
|
249
|
+
@overload
|
|
250
|
+
def create_layer(self, name : str, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
251
|
+
'''Creates a new vector layer with specified name and opens it for appending.
|
|
252
|
+
|
|
253
|
+
:param name: Name of the layer.
|
|
254
|
+
:param options: Open options.
|
|
255
|
+
:param spatial_reference_system: Spatial reference system of the new layer.
|
|
256
|
+
:returns: A :py:class:`aspose.gis.VectorLayer` opened for writing.'''
|
|
257
|
+
raise NotImplementedError()
|
|
258
|
+
|
|
259
|
+
def get_layer_name(self, index : int) -> str:
|
|
260
|
+
'''Gets the name of the layer at specified index.
|
|
261
|
+
|
|
262
|
+
:param index: Index of the layer.
|
|
263
|
+
:returns: Name of the layer.'''
|
|
264
|
+
raise NotImplementedError()
|
|
265
|
+
|
|
266
|
+
def open_layer(self, name : str, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
267
|
+
'''Opens the layer with specified name for reading.
|
|
268
|
+
|
|
269
|
+
:param name: Name of the layer to open.
|
|
270
|
+
:param options: Open options.
|
|
271
|
+
:returns: The layer opened for reading.'''
|
|
272
|
+
raise NotImplementedError()
|
|
273
|
+
|
|
274
|
+
def edit_layer(self, name : str, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
275
|
+
'''This method is still under development.
|
|
276
|
+
|
|
277
|
+
:param name: Name of the layer to edit.
|
|
278
|
+
:param options: Open options.
|
|
279
|
+
:param spatial_reference_system: Spatial reference system for new geometries.
|
|
280
|
+
:returns: :py:class:`aspose.gis.VectorLayer`'''
|
|
281
|
+
raise NotImplementedError()
|
|
282
|
+
|
|
283
|
+
def edit_layer_at(self, index : int, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
284
|
+
'''This method is still under development.
|
|
285
|
+
|
|
286
|
+
:param index: Index of the layer to edit.
|
|
287
|
+
:param options: Open options.
|
|
288
|
+
:param spatial_reference_system: Spatial reference system for new geometries.
|
|
289
|
+
:returns: :py:class:`aspose.gis.VectorLayer`'''
|
|
290
|
+
raise NotImplementedError()
|
|
291
|
+
|
|
292
|
+
def remove_layer(self, name : str) -> None:
|
|
293
|
+
'''Removes the vector layer with specified name.
|
|
294
|
+
|
|
295
|
+
:param name: Name of the layer'''
|
|
296
|
+
raise NotImplementedError()
|
|
297
|
+
|
|
298
|
+
def remove_layer_at(self, index : int) -> None:
|
|
299
|
+
'''Removes the vector layer at specified index.
|
|
300
|
+
|
|
301
|
+
:param index: Index of the layer'''
|
|
302
|
+
raise NotImplementedError()
|
|
303
|
+
|
|
304
|
+
def has_layer_with_name(self, name : str) -> bool:
|
|
305
|
+
'''Check has current dataset a layer with specific name
|
|
306
|
+
|
|
307
|
+
:param name: Name of the layer
|
|
308
|
+
:returns: , if dataset has layer with this name; otherwise,'''
|
|
309
|
+
raise NotImplementedError()
|
|
310
|
+
|
|
311
|
+
def rename_layer(self, current_name : str, new_name : str) -> None:
|
|
312
|
+
'''Rename layer in dataset
|
|
313
|
+
|
|
314
|
+
:param current_name: Current name of the layer
|
|
315
|
+
:param new_name: New name for the layer'''
|
|
316
|
+
raise NotImplementedError()
|
|
317
|
+
|
|
318
|
+
def get_tile_layer_name(self, index : int) -> str:
|
|
319
|
+
'''Gets the name of the tile layer at specified index.
|
|
320
|
+
|
|
321
|
+
:param index: Index of the layer.
|
|
322
|
+
:returns: Name of the layer.'''
|
|
323
|
+
raise NotImplementedError()
|
|
324
|
+
|
|
325
|
+
def open_tile_layer(self, name : str, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> aspose.gis.formats.xyztile.XyzTiles:
|
|
326
|
+
'''Opens the tile layer with specified name for reading.
|
|
327
|
+
|
|
328
|
+
:param name: Name of the layer to open.
|
|
329
|
+
:param options: Open options.
|
|
330
|
+
:returns: The tile layer opened for reading.'''
|
|
331
|
+
raise NotImplementedError()
|
|
332
|
+
|
|
333
|
+
def open_tile_layer_at(self, index : int, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> aspose.gis.formats.xyztile.XyzTiles:
|
|
334
|
+
'''Opens the tile layer at specified index for reading.
|
|
335
|
+
|
|
336
|
+
:param index: Index of the layer to open.
|
|
337
|
+
:param options: Open options.
|
|
338
|
+
:returns: :py:class:`aspose.gis.formats.xyztile.XyzTiles`'''
|
|
339
|
+
raise NotImplementedError()
|
|
340
|
+
|
|
341
|
+
@property
|
|
342
|
+
def can_create_layers(self) -> bool:
|
|
343
|
+
'''Gets a value indicating whether this dataset can create vector layers.'''
|
|
344
|
+
raise NotImplementedError()
|
|
345
|
+
|
|
346
|
+
@property
|
|
347
|
+
def can_remove_layers(self) -> bool:
|
|
348
|
+
'''Gets a value indicating whether this dataset can remove vector layers.'''
|
|
349
|
+
raise NotImplementedError()
|
|
350
|
+
|
|
351
|
+
@property
|
|
352
|
+
def driver(self) -> aspose.gis.Driver:
|
|
353
|
+
'''Gets the :py:attr:`aspose.gis.formats.geopackage.GeoPackageDataset.driver` that instantiated this dataset.'''
|
|
354
|
+
raise NotImplementedError()
|
|
355
|
+
|
|
356
|
+
@property
|
|
357
|
+
def layers_count(self) -> int:
|
|
358
|
+
'''Gets the number of layers in this dataset.'''
|
|
359
|
+
raise NotImplementedError()
|
|
360
|
+
|
|
361
|
+
@property
|
|
362
|
+
def tile_layers_count(self) -> int:
|
|
363
|
+
'''Gets the number of tile layers in this dataset.'''
|
|
364
|
+
raise NotImplementedError()
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class GeoPackageDriver(aspose.gis.FileDriver):
|
|
368
|
+
'''A driver for the GPKG file format.'''
|
|
369
|
+
|
|
370
|
+
def __init__(self) -> None:
|
|
371
|
+
raise NotImplementedError()
|
|
372
|
+
|
|
373
|
+
@overload
|
|
374
|
+
def open_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
375
|
+
'''Opens the layer for reading.
|
|
376
|
+
|
|
377
|
+
:param path: Path to the file.
|
|
378
|
+
:param options: Driver-specific options.
|
|
379
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
380
|
+
raise NotImplementedError()
|
|
381
|
+
|
|
382
|
+
@overload
|
|
383
|
+
def open_layer(self, path : str) -> aspose.gis.VectorLayer:
|
|
384
|
+
'''Opens the layer for reading.
|
|
385
|
+
|
|
386
|
+
:param path: Path to the file.
|
|
387
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
388
|
+
raise NotImplementedError()
|
|
389
|
+
|
|
390
|
+
@overload
|
|
391
|
+
def open_layer(self, path : aspose.gis.AbstractPath) -> aspose.gis.VectorLayer:
|
|
392
|
+
'''Opens the layer for reading.
|
|
393
|
+
|
|
394
|
+
:param path: Path to the file.
|
|
395
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
396
|
+
raise NotImplementedError()
|
|
397
|
+
|
|
398
|
+
@overload
|
|
399
|
+
def open_layer(self, path : str, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
400
|
+
'''Opens the layer for reading.
|
|
401
|
+
|
|
402
|
+
:param path: Path to the file.
|
|
403
|
+
:param options: Driver-specific options.
|
|
404
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
405
|
+
raise NotImplementedError()
|
|
406
|
+
|
|
407
|
+
@overload
|
|
408
|
+
def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
409
|
+
'''Creates the layer and opens it for appending.
|
|
410
|
+
|
|
411
|
+
:param path: Path to the file.
|
|
412
|
+
:param options: Driver-specific options.
|
|
413
|
+
:param spatial_reference_system: Spatial reference system.
|
|
414
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
415
|
+
raise NotImplementedError()
|
|
416
|
+
|
|
417
|
+
@overload
|
|
418
|
+
def create_layer(self, path : str) -> aspose.gis.VectorLayer:
|
|
419
|
+
'''Creates the layer and opens it for appending.
|
|
420
|
+
|
|
421
|
+
:param path: Path to the file.
|
|
422
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
423
|
+
raise NotImplementedError()
|
|
424
|
+
|
|
425
|
+
@overload
|
|
426
|
+
def create_layer(self, path : aspose.gis.AbstractPath) -> aspose.gis.VectorLayer:
|
|
427
|
+
'''Creates the layer and opens it for appending.
|
|
428
|
+
|
|
429
|
+
:param path: Path to the file.
|
|
430
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
431
|
+
raise NotImplementedError()
|
|
432
|
+
|
|
433
|
+
@overload
|
|
434
|
+
def create_layer(self, path : str, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
435
|
+
'''Creates the layer and opens it for appending.
|
|
436
|
+
|
|
437
|
+
:param path: Path to the file.
|
|
438
|
+
:param options: Driver-specific options.
|
|
439
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
440
|
+
raise NotImplementedError()
|
|
441
|
+
|
|
442
|
+
@overload
|
|
443
|
+
def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
444
|
+
'''Creates the layer and opens it for appending.
|
|
445
|
+
|
|
446
|
+
:param path: Path to the file.
|
|
447
|
+
:param options: Driver-specific options.
|
|
448
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
449
|
+
raise NotImplementedError()
|
|
450
|
+
|
|
451
|
+
@overload
|
|
452
|
+
def create_layer(self, path : str, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
453
|
+
'''Creates the layer and opens it for appending.
|
|
454
|
+
|
|
455
|
+
:param path: Path to the file.
|
|
456
|
+
:param spatial_reference_system: Spatial reference system.
|
|
457
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
458
|
+
raise NotImplementedError()
|
|
459
|
+
|
|
460
|
+
@overload
|
|
461
|
+
def create_layer(self, path : aspose.gis.AbstractPath, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
462
|
+
'''Creates the layer and opens it for appending.
|
|
463
|
+
|
|
464
|
+
:param path: Path to the file.
|
|
465
|
+
:param spatial_reference_system: Spatial reference system.
|
|
466
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
467
|
+
raise NotImplementedError()
|
|
468
|
+
|
|
469
|
+
@overload
|
|
470
|
+
def create_layer(self, path : str, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
|
|
471
|
+
'''Creates the layer and opens it for appending.
|
|
472
|
+
|
|
473
|
+
:param path: Path to the file.
|
|
474
|
+
:param options: Driver-specific options.
|
|
475
|
+
:param spatial_reference_system: Spatial reference system.
|
|
476
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
477
|
+
raise NotImplementedError()
|
|
478
|
+
|
|
479
|
+
@overload
|
|
480
|
+
def edit_layer(self, path : str, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
481
|
+
'''Opens a layer for editing.
|
|
482
|
+
|
|
483
|
+
:param path: Path to the file.
|
|
484
|
+
:param options: Driver-specific options.
|
|
485
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
486
|
+
raise NotImplementedError()
|
|
487
|
+
|
|
488
|
+
@overload
|
|
489
|
+
def edit_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions) -> aspose.gis.VectorLayer:
|
|
490
|
+
'''Opens a layer for editing.
|
|
491
|
+
|
|
492
|
+
:param path: Path to the file.
|
|
493
|
+
:param options: Driver-specific options.
|
|
494
|
+
:returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
|
|
495
|
+
raise NotImplementedError()
|
|
496
|
+
|
|
497
|
+
@overload
|
|
498
|
+
def open_dataset(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
499
|
+
'''Opens the dataset.
|
|
500
|
+
|
|
501
|
+
:param path: Path to the dataset.
|
|
502
|
+
:param options: Driver-specific options.
|
|
503
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
504
|
+
raise NotImplementedError()
|
|
505
|
+
|
|
506
|
+
@overload
|
|
507
|
+
def open_dataset(self, path : aspose.gis.AbstractPath, options : aspose.gis.formats.geopackage.GeoPackageOptions) -> aspose.gis.formats.geopackage.GeoPackageDataset:
|
|
508
|
+
'''Opens gpkg file as dataset.
|
|
509
|
+
|
|
510
|
+
:param path: Path to the dataset.
|
|
511
|
+
:param options: Driver-specific options.
|
|
512
|
+
:returns: An instance of :py:class:`aspose.gis.formats.geopackage.GeoPackageDataset`.'''
|
|
513
|
+
raise NotImplementedError()
|
|
514
|
+
|
|
515
|
+
@overload
|
|
516
|
+
def open_dataset(self, path : str) -> aspose.gis.Dataset:
|
|
517
|
+
'''Opens the dataset.
|
|
518
|
+
|
|
519
|
+
:param path: Path to the dataset.
|
|
520
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
521
|
+
raise NotImplementedError()
|
|
522
|
+
|
|
523
|
+
@overload
|
|
524
|
+
def open_dataset(self, path : aspose.gis.AbstractPath) -> aspose.gis.Dataset:
|
|
525
|
+
'''Opens the dataset.
|
|
526
|
+
|
|
527
|
+
:param path: Path to the dataset.
|
|
528
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
529
|
+
raise NotImplementedError()
|
|
530
|
+
|
|
531
|
+
@overload
|
|
532
|
+
def open_dataset(self, path : str, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
533
|
+
'''Opens the dataset.
|
|
534
|
+
|
|
535
|
+
:param path: Path to the dataset.
|
|
536
|
+
:param options: Driver-specific options.
|
|
537
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
538
|
+
raise NotImplementedError()
|
|
539
|
+
|
|
540
|
+
@overload
|
|
541
|
+
def create_dataset(self, path : str) -> aspose.gis.Dataset:
|
|
542
|
+
'''Creates a dataset.
|
|
543
|
+
|
|
544
|
+
:param path: Path to the dataset.
|
|
545
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
546
|
+
raise NotImplementedError()
|
|
547
|
+
|
|
548
|
+
@overload
|
|
549
|
+
def create_dataset(self, path : aspose.gis.AbstractPath) -> aspose.gis.Dataset:
|
|
550
|
+
'''Creates a dataset.
|
|
551
|
+
|
|
552
|
+
:param path: Path to the dataset.
|
|
553
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
554
|
+
raise NotImplementedError()
|
|
555
|
+
|
|
556
|
+
@overload
|
|
557
|
+
def create_dataset(self, path : str, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
558
|
+
'''Creates a dataset.
|
|
559
|
+
|
|
560
|
+
:param path: Path to the dataset.
|
|
561
|
+
:param options: Driver-specific options.
|
|
562
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
563
|
+
raise NotImplementedError()
|
|
564
|
+
|
|
565
|
+
@overload
|
|
566
|
+
def create_dataset(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions) -> aspose.gis.Dataset:
|
|
567
|
+
'''Creates a dataset.
|
|
568
|
+
|
|
569
|
+
:param path: Path to the dataset.
|
|
570
|
+
:param options: Driver-specific options.
|
|
571
|
+
:returns: An instance of :py:class:`aspose.gis.Dataset`.'''
|
|
572
|
+
raise NotImplementedError()
|
|
573
|
+
|
|
574
|
+
def supports_spatial_reference_system(self, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> bool:
|
|
575
|
+
'''Determines, whether specified spatial reference system is supported by the driver.
|
|
576
|
+
|
|
577
|
+
:param spatial_reference_system: Spatial reference system.
|
|
578
|
+
:returns: Boolean value, indicating whether specified spatial reference system is supported by the driver.
|
|
579
|
+
is considered supported by any driver.'''
|
|
580
|
+
raise NotImplementedError()
|
|
581
|
+
|
|
582
|
+
@property
|
|
583
|
+
def can_create_layers(self) -> bool:
|
|
584
|
+
'''Gets a value indicating whether this driver can create vector layers.'''
|
|
585
|
+
raise NotImplementedError()
|
|
586
|
+
|
|
587
|
+
@property
|
|
588
|
+
def can_open_layers(self) -> bool:
|
|
589
|
+
'''Gets a value indicating whether this driver can open vector layers.'''
|
|
590
|
+
raise NotImplementedError()
|
|
591
|
+
|
|
592
|
+
@property
|
|
593
|
+
def can_open_datasets(self) -> bool:
|
|
594
|
+
'''Gets a value indicating whether this driver can open datasets.'''
|
|
595
|
+
raise NotImplementedError()
|
|
596
|
+
|
|
597
|
+
@property
|
|
598
|
+
def can_create_datasets(self) -> bool:
|
|
599
|
+
'''Gets a value indicating whether this driver can create datasets.'''
|
|
600
|
+
raise NotImplementedError()
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
class GeoPackageOptions(aspose.gis.DriverOptions):
|
|
604
|
+
'''Driver-specific options for GPKG format.'''
|
|
605
|
+
|
|
606
|
+
def __init__(self) -> None:
|
|
607
|
+
'''Create new instance.'''
|
|
608
|
+
raise NotImplementedError()
|
|
609
|
+
|
|
610
|
+
@property
|
|
611
|
+
def validate_geometries_on_write(self) -> bool:
|
|
612
|
+
'''Determines if geometries should be validated when they are added to the layer.
|
|
613
|
+
If set to , :py:attr:`aspose.gis.geometries.Geometry.is_valid` is called for each
|
|
614
|
+
geometry when it\'s added to the layer, and if validation fails (:py:attr:`aspose.gis.geometries.Geometry.is_valid` is ), :py:class:`aspose.gis.GisException` is thrown.'''
|
|
615
|
+
raise NotImplementedError()
|
|
616
|
+
|
|
617
|
+
@validate_geometries_on_write.setter
|
|
618
|
+
def validate_geometries_on_write(self, value : bool) -> None:
|
|
619
|
+
'''Determines if geometries should be validated when they are added to the layer.
|
|
620
|
+
If set to , :py:attr:`aspose.gis.geometries.Geometry.is_valid` is called for each
|
|
621
|
+
geometry when it\'s added to the layer, and if validation fails (:py:attr:`aspose.gis.geometries.Geometry.is_valid` is ), :py:class:`aspose.gis.GisException` is thrown.'''
|
|
622
|
+
raise NotImplementedError()
|
|
623
|
+
|
|
624
|
+
@property
|
|
625
|
+
def write_polygons_as_lines(self) -> bool:
|
|
626
|
+
'''Determines if transformation of polygon or multipolygon to linestring is allowed. Defaults to .'''
|
|
627
|
+
raise NotImplementedError()
|
|
628
|
+
|
|
629
|
+
@write_polygons_as_lines.setter
|
|
630
|
+
def write_polygons_as_lines(self, value : bool) -> None:
|
|
631
|
+
'''Determines if transformation of polygon or multipolygon to linestring is allowed. Defaults to .'''
|
|
632
|
+
raise NotImplementedError()
|
|
633
|
+
|
|
634
|
+
@property
|
|
635
|
+
def create_midpoints(self) -> bool:
|
|
636
|
+
'''Determines if add a new point in the middle to each segment of geometry. Defaults to .'''
|
|
637
|
+
raise NotImplementedError()
|
|
638
|
+
|
|
639
|
+
@create_midpoints.setter
|
|
640
|
+
def create_midpoints(self, value : bool) -> None:
|
|
641
|
+
'''Determines if add a new point in the middle to each segment of geometry. Defaults to .'''
|
|
642
|
+
raise NotImplementedError()
|
|
643
|
+
|
|
644
|
+
@property
|
|
645
|
+
def close_linear_ring(self) -> bool:
|
|
646
|
+
'''Determines if close a unclosed :py:attr:`aspose.gis.geometries.GeometryType.LINEAR_RING` in each geometry. Defaults to .'''
|
|
647
|
+
raise NotImplementedError()
|
|
648
|
+
|
|
649
|
+
@close_linear_ring.setter
|
|
650
|
+
def close_linear_ring(self, value : bool) -> None:
|
|
651
|
+
'''Determines if close a unclosed :py:attr:`aspose.gis.geometries.GeometryType.LINEAR_RING` in each geometry. Defaults to .'''
|
|
652
|
+
raise NotImplementedError()
|
|
653
|
+
|
|
654
|
+
@property
|
|
655
|
+
def delete_near_points(self) -> bool:
|
|
656
|
+
'''Determines if delete near points in each geometry. Defaults to .'''
|
|
657
|
+
raise NotImplementedError()
|
|
658
|
+
|
|
659
|
+
@delete_near_points.setter
|
|
660
|
+
def delete_near_points(self, value : bool) -> None:
|
|
661
|
+
'''Determines if delete near points in each geometry. Defaults to .'''
|
|
662
|
+
raise NotImplementedError()
|
|
663
|
+
|
|
664
|
+
@property
|
|
665
|
+
def delete_near_points_distance(self) -> float:
|
|
666
|
+
'''Determines distance for :py:attr:`aspose.gis.DriverOptions.delete_near_points`. Defaults to .'''
|
|
667
|
+
raise NotImplementedError()
|
|
668
|
+
|
|
669
|
+
@delete_near_points_distance.setter
|
|
670
|
+
def delete_near_points_distance(self, value : float) -> None:
|
|
671
|
+
'''Determines distance for :py:attr:`aspose.gis.DriverOptions.delete_near_points`. Defaults to .'''
|
|
672
|
+
raise NotImplementedError()
|
|
673
|
+
|
|
674
|
+
@property
|
|
675
|
+
def simplify_segments(self) -> bool:
|
|
676
|
+
'''Determines if delete points lying on the same segment in each geometry. Defaults to .'''
|
|
677
|
+
raise NotImplementedError()
|
|
678
|
+
|
|
679
|
+
@simplify_segments.setter
|
|
680
|
+
def simplify_segments(self, value : bool) -> None:
|
|
681
|
+
'''Determines if delete points lying on the same segment in each geometry. Defaults to .'''
|
|
682
|
+
raise NotImplementedError()
|
|
683
|
+
|
|
684
|
+
@property
|
|
685
|
+
def simplify_segments_distance(self) -> float:
|
|
686
|
+
'''Determines distance for :py:attr:`aspose.gis.DriverOptions.simplify_segments`. Defaults to .'''
|
|
687
|
+
raise NotImplementedError()
|
|
688
|
+
|
|
689
|
+
@simplify_segments_distance.setter
|
|
690
|
+
def simplify_segments_distance(self, value : float) -> None:
|
|
691
|
+
'''Determines distance for :py:attr:`aspose.gis.DriverOptions.simplify_segments`. Defaults to .'''
|
|
692
|
+
raise NotImplementedError()
|
|
693
|
+
|
|
694
|
+
@property
|
|
695
|
+
def xy_precision_model(self) -> aspose.gis.PrecisionModel:
|
|
696
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to X and Y coordinates
|
|
697
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
698
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
699
|
+
raise NotImplementedError()
|
|
700
|
+
|
|
701
|
+
@xy_precision_model.setter
|
|
702
|
+
def xy_precision_model(self, value : aspose.gis.PrecisionModel) -> None:
|
|
703
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to X and Y coordinates
|
|
704
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
705
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
706
|
+
raise NotImplementedError()
|
|
707
|
+
|
|
708
|
+
@property
|
|
709
|
+
def z_precision_model(self) -> aspose.gis.PrecisionModel:
|
|
710
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to Z coordinate
|
|
711
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
712
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
713
|
+
raise NotImplementedError()
|
|
714
|
+
|
|
715
|
+
@z_precision_model.setter
|
|
716
|
+
def z_precision_model(self, value : aspose.gis.PrecisionModel) -> None:
|
|
717
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to Z coordinate
|
|
718
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
719
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
720
|
+
raise NotImplementedError()
|
|
721
|
+
|
|
722
|
+
@property
|
|
723
|
+
def m_precision_model(self) -> aspose.gis.PrecisionModel:
|
|
724
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to M coordinate
|
|
725
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
726
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
727
|
+
raise NotImplementedError()
|
|
728
|
+
|
|
729
|
+
@m_precision_model.setter
|
|
730
|
+
def m_precision_model(self, value : aspose.gis.PrecisionModel) -> None:
|
|
731
|
+
'''A :py:class:`aspose.gis.PrecisionModel` that will be applied to M coordinate
|
|
732
|
+
when geometries are added to the :py:class:`aspose.gis.VectorLayer` or when they are read from the :py:class:`aspose.gis.VectorLayer`.
|
|
733
|
+
The default value is :py:attr:`aspose.gis.PrecisionModel.exact`.'''
|
|
734
|
+
raise NotImplementedError()
|
|
735
|
+
|
|
736
|
+
@property
|
|
737
|
+
def linearization_tolerance(self) -> float:
|
|
738
|
+
'''A tolerance to use to linearize curve geometries.'''
|
|
739
|
+
raise NotImplementedError()
|
|
740
|
+
|
|
741
|
+
@linearization_tolerance.setter
|
|
742
|
+
def linearization_tolerance(self, value : float) -> None:
|
|
743
|
+
'''A tolerance to use to linearize curve geometries.'''
|
|
744
|
+
raise NotImplementedError()
|
|
745
|
+
|
|
746
|
+
|