aspose-gis-net 25.8.0__py3-none-win32.whl → 25.9.0__py3-none-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspose-gis-net might be problematic. Click here for more details.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/gis/__init__.pyi +246 -74
- aspose/gis/common/__init__.pyi +99 -9
- aspose/gis/common/formats/dbase/__init__.pyi +19 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +36 -1
- aspose/gis/common/formats/mapinfo/__init__.pyi +48 -7
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +40 -1
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +47 -5
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +32 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +69 -11
- aspose/gis/common/formats/wkt/__init__.pyi +26 -0
- aspose/gis/common/formats/xml/__init__.pyi +12 -0
- aspose/gis/common/io/__init__.pyi +31 -8
- aspose/gis/epsg/__init__.pyi +69 -0
- aspose/gis/formats/csv/__init__.pyi +7 -0
- aspose/gis/formats/database/__init__.pyi +3 -0
- aspose/gis/formats/esriascii/__init__.pyi +4 -0
- aspose/gis/formats/esrijson/__init__.pyi +4 -0
- aspose/gis/formats/filegdb/__init__.pyi +7 -0
- aspose/gis/formats/gdal/__init__.pyi +6 -0
- aspose/gis/formats/geojson/__init__.pyi +4 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +4 -0
- aspose/gis/formats/geopackage/__init__.pyi +14 -0
- aspose/gis/formats/geotiff/__init__.pyi +4 -0
- aspose/gis/formats/gml/__init__.pyi +4 -0
- aspose/gis/formats/gpx/__init__.pyi +4 -0
- aspose/gis/formats/infile/__init__.pyi +4 -0
- aspose/gis/formats/kml/__init__.pyi +11 -0
- aspose/gis/formats/kml/specificfields/__init__.pyi +6 -0
- aspose/gis/formats/kml/styles/__init__.pyi +39 -2
- aspose/gis/formats/mapinfointerchange/__init__.pyi +4 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +4 -0
- aspose/gis/formats/osmxml/__init__.pyi +4 -0
- aspose/gis/formats/postgis/__init__.pyi +4 -0
- aspose/gis/formats/shapefile/__init__.pyi +4 -0
- aspose/gis/formats/sqlserver/__init__.pyi +4 -0
- aspose/gis/formats/topojson/__init__.pyi +13 -0
- aspose/gis/formats/xyztile/__init__.pyi +15 -0
- aspose/gis/geometries/__init__.pyi +851 -324
- aspose/gis/geotools/__init__.pyi +44 -0
- aspose/gis/geotools/layersmap/__init__.pyi +15 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +7 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +12 -0
- aspose/gis/imagemetadata/__init__.pyi +3 -3
- aspose/gis/indexing/__init__.pyi +8 -0
- aspose/gis/indexing/bplustree/__init__.pyi +3 -0
- aspose/gis/indexing/qixtree/__init__.pyi +3 -0
- aspose/gis/indexing/rtree/__init__.pyi +3 -0
- aspose/gis/labeling/__init__.pyi +32 -0
- aspose/gis/labeling/line/__init__.pyi +24 -0
- aspose/gis/painting/__init__.pyi +85 -8
- aspose/gis/projections/__init__.pyi +14 -0
- aspose/gis/raster/__init__.pyi +34 -0
- aspose/gis/relationship/joins/__init__.pyi +8 -0
- aspose/gis/rendering/__init__.pyi +124 -10
- aspose/gis/rendering/colorizers/__init__.pyi +37 -10
- aspose/gis/rendering/labelings/__init__.pyi +71 -10
- aspose/gis/rendering/sld/__init__.pyi +3 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +191 -28
- aspose/gis/spatialreferencing/__init__.pyi +502 -154
- aspose/gis/topology/__init__.pyi +37 -0
- aspose/gis/topology/buffer/__init__.pyi +6 -0
- aspose/gis/topology/graph/__init__.pyi +5 -0
- aspose/gis.cp310-win32.pyd +0 -0
- aspose/gis.cp311-win32.pyd +0 -0
- aspose/gis.cp312-win32.pyd +0 -0
- aspose/gis.cp313-win32.pyd +0 -0
- aspose/gis.cp35-win32.pyd +0 -0
- aspose/gis.cp36-win32.pyd +0 -0
- aspose/gis.cp37-win32.pyd +0 -0
- aspose/gis.cp38-win32.pyd +0 -0
- aspose/gis.cp39-win32.pyd +0 -0
- aspose/pydrawing/__init__.pyi +29 -7
- {aspose_gis_net-25.8.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +1 -1
- {aspose_gis_net-25.8.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +80 -83
- {aspose_gis_net-25.8.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.8.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-25.8.0.dist-info → aspose_gis_net-25.9.0.dist-info}/top_level.txt +0 -0
aspose/gis/raster/__init__.pyi
CHANGED
|
@@ -215,6 +215,12 @@ class IRasterValues:
|
|
|
215
215
|
class RasterBand(IRasterBand):
|
|
216
216
|
'''Contains data about a raster Band.'''
|
|
217
217
|
|
|
218
|
+
def __init__(self, data_type : aspose.gis.raster.BandTypes) -> None:
|
|
219
|
+
'''Create an instance of :py:class:`aspose.gis.raster.RasterBand`.
|
|
220
|
+
|
|
221
|
+
:param data_type: Specifies the type and size of values stored in each pixel or cell.'''
|
|
222
|
+
raise NotImplementedError()
|
|
223
|
+
|
|
218
224
|
@property
|
|
219
225
|
def data_type(self) -> aspose.gis.raster.BandTypes:
|
|
220
226
|
'''Gets type of values stored in each cell.'''
|
|
@@ -224,6 +230,10 @@ class RasterBand(IRasterBand):
|
|
|
224
230
|
class RasterCellSize(IRasterCellSize):
|
|
225
231
|
'''Describes the size, scale and rotation of a raster cell on a map.'''
|
|
226
232
|
|
|
233
|
+
def __init__(self) -> None:
|
|
234
|
+
'''Create an instance of :py:class:`aspose.gis.raster.RasterCellSize`.'''
|
|
235
|
+
raise NotImplementedError()
|
|
236
|
+
|
|
227
237
|
@property
|
|
228
238
|
def height(self) -> float:
|
|
229
239
|
'''Compute the pixel height.'''
|
|
@@ -278,6 +288,18 @@ class RasterCellSize(IRasterCellSize):
|
|
|
278
288
|
class RasterExpressionContext:
|
|
279
289
|
'''This class describes the value context when it reads raster a band.'''
|
|
280
290
|
|
|
291
|
+
@overload
|
|
292
|
+
def __init__(self, cell_x : int, cell_y : int) -> None:
|
|
293
|
+
'''Create an instance of :py:class:`aspose.gis.raster.RasterExpressionContext`
|
|
294
|
+
|
|
295
|
+
:param cell_x: Column value (x-coordinate).
|
|
296
|
+
:param cell_y: Row value (y-coordinate).'''
|
|
297
|
+
raise NotImplementedError()
|
|
298
|
+
|
|
299
|
+
@overload
|
|
300
|
+
def __init__(self) -> None:
|
|
301
|
+
raise NotImplementedError()
|
|
302
|
+
|
|
281
303
|
def equals(self, other : aspose.gis.raster.RasterExpressionContext) -> bool:
|
|
282
304
|
'''Indicates whether the current object is equal to another object of the same type.
|
|
283
305
|
|
|
@@ -422,6 +444,15 @@ class RasterLayer:
|
|
|
422
444
|
class RasterRect:
|
|
423
445
|
'''Block of raster cells.'''
|
|
424
446
|
|
|
447
|
+
def __init__(self, x : int, y : int, width : int, height : int) -> None:
|
|
448
|
+
'''Create an instance of :py:class:`aspose.gis.raster.RasterRect`.
|
|
449
|
+
|
|
450
|
+
:param x: The x-coordinate of the upper-left corner (start column). Numbering starts at 0.
|
|
451
|
+
:param y: The y-coordinate of the upper-left corner (start row). Numbering starts at 0.
|
|
452
|
+
:param width: The value for width (column count).
|
|
453
|
+
:param height: The value for height (row count).'''
|
|
454
|
+
raise NotImplementedError()
|
|
455
|
+
|
|
425
456
|
@property
|
|
426
457
|
def x(self) -> int:
|
|
427
458
|
'''Gets start column (x-coordinate).'''
|
|
@@ -475,6 +506,9 @@ class RasterStatistics:
|
|
|
475
506
|
class WarpOptions:
|
|
476
507
|
'''Options for raster warping.'''
|
|
477
508
|
|
|
509
|
+
def __init__(self) -> None:
|
|
510
|
+
raise NotImplementedError()
|
|
511
|
+
|
|
478
512
|
@property
|
|
479
513
|
def width(self) -> int:
|
|
480
514
|
'''Specifies output raster width in pixels and columns.
|
|
@@ -94,6 +94,10 @@ import aspose.gis.topology.graph
|
|
|
94
94
|
class JoinByGeometryOptions:
|
|
95
95
|
'''Options for layers joining.'''
|
|
96
96
|
|
|
97
|
+
def __init__(self) -> None:
|
|
98
|
+
'''Create a new instance.'''
|
|
99
|
+
raise NotImplementedError()
|
|
100
|
+
|
|
97
101
|
@property
|
|
98
102
|
def radius(self) -> float:
|
|
99
103
|
'''Specifies a radius to look for the joined geometry.'''
|
|
@@ -118,6 +122,10 @@ class JoinByGeometryOptions:
|
|
|
118
122
|
class JoinOptions:
|
|
119
123
|
'''Options for layers joining.'''
|
|
120
124
|
|
|
125
|
+
def __init__(self) -> None:
|
|
126
|
+
'''Create a new instance.'''
|
|
127
|
+
raise NotImplementedError()
|
|
128
|
+
|
|
121
129
|
@property
|
|
122
130
|
def join_attribute_name(self) -> str:
|
|
123
131
|
'''Specifies an attribute name of the joined layer which value will be used into :py:attr:`aspose.gis.relationship.joins.JoinOptions.ConditionComparer`.'''
|
|
@@ -94,6 +94,19 @@ import aspose.gis.topology.graph
|
|
|
94
94
|
class Map:
|
|
95
95
|
'''Map is a collection of layers that can be rendered on top of each other via :py:class:`aspose.gis.rendering.Renderer`.'''
|
|
96
96
|
|
|
97
|
+
@overload
|
|
98
|
+
def __init__(self, width : aspose.gis.rendering.Measurement, height : aspose.gis.rendering.Measurement) -> None:
|
|
99
|
+
'''Creates new instance of the ``Map`` class.
|
|
100
|
+
|
|
101
|
+
:param width: Width of the map.
|
|
102
|
+
:param height: Height of the map.'''
|
|
103
|
+
raise NotImplementedError()
|
|
104
|
+
|
|
105
|
+
@overload
|
|
106
|
+
def __init__(self) -> None:
|
|
107
|
+
'''Creates new instance of the ``Map`` class.'''
|
|
108
|
+
raise NotImplementedError()
|
|
109
|
+
|
|
97
110
|
@overload
|
|
98
111
|
def add(self, layer : aspose.gis.VectorLayer, keep_open : bool) -> None:
|
|
99
112
|
'''Creates a :py:class:`aspose.gis.rendering.VectorMapLayer` with default symbolizer and adds it to the map. Layers are rendered in addition order.
|
|
@@ -281,6 +294,18 @@ class MapLayer:
|
|
|
281
294
|
class Measurement:
|
|
282
295
|
'''A number that indicates a render measurement.'''
|
|
283
296
|
|
|
297
|
+
@overload
|
|
298
|
+
def __init__(self, value : float, unit : aspose.gis.rendering.Unit) -> None:
|
|
299
|
+
'''Creates new instance.
|
|
300
|
+
|
|
301
|
+
:param value: A number that indicates the length of the measurement.
|
|
302
|
+
:param unit: A unit of measurement.'''
|
|
303
|
+
raise NotImplementedError()
|
|
304
|
+
|
|
305
|
+
@overload
|
|
306
|
+
def __init__(self) -> None:
|
|
307
|
+
raise NotImplementedError()
|
|
308
|
+
|
|
284
309
|
@staticmethod
|
|
285
310
|
def pixels(value : float) -> aspose.gis.rendering.Measurement:
|
|
286
311
|
'''Returns a new instance of ``Measurement`` that represents length in pixels.
|
|
@@ -329,8 +354,11 @@ class Measurement:
|
|
|
329
354
|
:returns: New instance of ``Measurement`` class.'''
|
|
330
355
|
raise NotImplementedError()
|
|
331
356
|
|
|
332
|
-
|
|
333
|
-
|
|
357
|
+
@property
|
|
358
|
+
def zero(self) -> aspose.gis.rendering.Measurement:
|
|
359
|
+
'''A measurement of zero length.'''
|
|
360
|
+
raise NotImplementedError()
|
|
361
|
+
|
|
334
362
|
@property
|
|
335
363
|
def value(self) -> float:
|
|
336
364
|
'''A number that indicates the length of the measurement.'''
|
|
@@ -345,6 +373,14 @@ class Measurement:
|
|
|
345
373
|
class RasterMapLayer(MapLayer):
|
|
346
374
|
'''A layer inside :py:class:`aspose.gis.rendering.Map` that represents a raster layer data.'''
|
|
347
375
|
|
|
376
|
+
def __init__(self, layer : aspose.gis.raster.RasterLayer, colorizer : aspose.gis.rendering.colorizers.RasterColorizer, keep_open : bool) -> None:
|
|
377
|
+
'''Creates new instance.
|
|
378
|
+
|
|
379
|
+
:param layer: Raster layer.
|
|
380
|
+
:param colorizer: Symbolizer to use to render layer. If , default colorizer will be used.
|
|
381
|
+
:param keep_open: to leave the layer open after the :py:class:`aspose.gis.rendering.VectorMapLayer` object is disposed; otherwise, .'''
|
|
382
|
+
raise NotImplementedError()
|
|
383
|
+
|
|
348
384
|
@property
|
|
349
385
|
def opacity(self) -> float:
|
|
350
386
|
'''Opacity of the layer.'''
|
|
@@ -379,6 +415,9 @@ class RasterMapLayer(MapLayer):
|
|
|
379
415
|
class RasterMapResampling:
|
|
380
416
|
'''This class describes how to resample a raster layer when rendering a map.'''
|
|
381
417
|
|
|
418
|
+
def __init__(self) -> None:
|
|
419
|
+
raise NotImplementedError()
|
|
420
|
+
|
|
382
421
|
@property
|
|
383
422
|
def width(self) -> int:
|
|
384
423
|
'''Specifies raster width on a map in pixels and columns.
|
|
@@ -427,18 +466,93 @@ class Renderer:
|
|
|
427
466
|
class Renderers:
|
|
428
467
|
'''Renderers for all supported formats.'''
|
|
429
468
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
469
|
+
@property
|
|
470
|
+
def svg(self) -> aspose.gis.rendering.formats.svg.SvgRenderer:
|
|
471
|
+
'''A renderer that renders into the SVG format.'''
|
|
472
|
+
raise NotImplementedError()
|
|
473
|
+
|
|
474
|
+
@property
|
|
475
|
+
def png(self) -> aspose.gis.rendering.formats.png.PngRenderer:
|
|
476
|
+
'''A renderer that renders into the PNG format.'''
|
|
477
|
+
raise NotImplementedError()
|
|
478
|
+
|
|
479
|
+
@property
|
|
480
|
+
def jpeg(self) -> aspose.gis.rendering.formats.jpeg.JpegRenderer:
|
|
481
|
+
'''A renderer that renders into the JPEG format.'''
|
|
482
|
+
raise NotImplementedError()
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
def bmp(self) -> aspose.gis.rendering.formats.bmp.BmpRenderer:
|
|
486
|
+
'''A renderer that renders into the BMP format.'''
|
|
487
|
+
raise NotImplementedError()
|
|
488
|
+
|
|
438
489
|
|
|
439
490
|
class VectorMapLayer(MapLayer):
|
|
440
491
|
'''A layer inside :py:class:`aspose.gis.rendering.Map` that represents a vector layer data.'''
|
|
441
492
|
|
|
493
|
+
@overload
|
|
494
|
+
def __init__(self, features_sequence : aspose.gis.FeaturesSequence) -> None:
|
|
495
|
+
'''Creates new instance with default symbolizer.
|
|
496
|
+
|
|
497
|
+
:param features_sequence: Features sequence.'''
|
|
498
|
+
raise NotImplementedError()
|
|
499
|
+
|
|
500
|
+
@overload
|
|
501
|
+
def __init__(self, features_sequence : aspose.gis.FeaturesSequence, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> None:
|
|
502
|
+
'''Creates new instance with default symbolizer.
|
|
503
|
+
|
|
504
|
+
:param features_sequence: Features sequence.
|
|
505
|
+
:param symbolizer: Symbolizer to use to render layer. If , default symbolizer will be used.'''
|
|
506
|
+
raise NotImplementedError()
|
|
507
|
+
|
|
508
|
+
@overload
|
|
509
|
+
def __init__(self, features_sequence : aspose.gis.FeaturesSequence, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer, labeling : aspose.gis.rendering.labelings.Labeling, default_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> None:
|
|
510
|
+
'''Creates new instance with default symbolizer.
|
|
511
|
+
|
|
512
|
+
:param features_sequence: Features sequence.
|
|
513
|
+
:param symbolizer: Symbolizer to use to render layer. If , default symbolizer will be used.
|
|
514
|
+
:param labeling: Labeling to use to label features in layer. If , default :py:class:`aspose.gis.rendering.labelings.NullLabeling` will be used.
|
|
515
|
+
:param default_reference_system: Specifies a value for a source spatial reference (layer\sequence) if that is missing. Default **null** will be used.'''
|
|
516
|
+
raise NotImplementedError()
|
|
517
|
+
|
|
518
|
+
@overload
|
|
519
|
+
def __init__(self, layer : aspose.gis.VectorLayer, keep_open : bool) -> None:
|
|
520
|
+
'''Creates new instance with default symbolizer.
|
|
521
|
+
|
|
522
|
+
:param layer: Vector layer.
|
|
523
|
+
:param keep_open: to leave the layer open after the :py:class:`aspose.gis.rendering.VectorMapLayer` object is disposed; otherwise, .'''
|
|
524
|
+
raise NotImplementedError()
|
|
525
|
+
|
|
526
|
+
@overload
|
|
527
|
+
def __init__(self, layer : aspose.gis.VectorLayer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer, keep_open : bool) -> None:
|
|
528
|
+
'''Creates new instance.
|
|
529
|
+
|
|
530
|
+
:param layer: Vector layer.
|
|
531
|
+
:param symbolizer: Symbolizer to use to render layer. If , default symbolizer will be used.
|
|
532
|
+
:param keep_open: to leave the layer open after the :py:class:`aspose.gis.rendering.VectorMapLayer` object is disposed; otherwise, .'''
|
|
533
|
+
raise NotImplementedError()
|
|
534
|
+
|
|
535
|
+
@overload
|
|
536
|
+
def __init__(self, layer : aspose.gis.VectorLayer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer, labeling : aspose.gis.rendering.labelings.Labeling, keep_open : bool) -> None:
|
|
537
|
+
'''Creates new instance.
|
|
538
|
+
|
|
539
|
+
:param layer: Vector layer.
|
|
540
|
+
:param symbolizer: Symbolizer to use to render layer. If , default symbolizer will be used.
|
|
541
|
+
:param labeling: Labeling to use to label features in layer. If , default :py:class:`aspose.gis.rendering.labelings.NullLabeling` will be used.
|
|
542
|
+
:param keep_open: to leave the layer open after the :py:class:`aspose.gis.rendering.VectorMapLayer` object is disposed; otherwise, .'''
|
|
543
|
+
raise NotImplementedError()
|
|
544
|
+
|
|
545
|
+
@overload
|
|
546
|
+
def __init__(self, layer : aspose.gis.VectorLayer, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer, labeling : aspose.gis.rendering.labelings.Labeling, default_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem, keep_open : bool) -> None:
|
|
547
|
+
'''Creates new instance.
|
|
548
|
+
|
|
549
|
+
:param layer: Vector layer.
|
|
550
|
+
:param symbolizer: Symbolizer to use to render layer. If , default symbolizer will be used.
|
|
551
|
+
:param labeling: Labeling to use to label features in layer. If , default :py:class:`aspose.gis.rendering.labelings.NullLabeling` will be used.
|
|
552
|
+
:param default_reference_system: Specifies a value for a source spatial reference (layer\sequence) if that is missing. Default **null** will be used.
|
|
553
|
+
:param keep_open: to leave the layer open after the :py:class:`aspose.gis.rendering.VectorMapLayer` object is disposed; otherwise, .'''
|
|
554
|
+
raise NotImplementedError()
|
|
555
|
+
|
|
442
556
|
@overload
|
|
443
557
|
def import_sld(self, path : str, options : aspose.gis.rendering.sld.SldImportOptions) -> None:
|
|
444
558
|
'''Imports style from Styled Layer Descriptor file located at the specified path.
|
|
@@ -95,6 +95,10 @@ class BandColor:
|
|
|
95
95
|
'''Associates band values and a color component for specified band index.
|
|
96
96
|
There are band values between min and max will be interpolated linearly.'''
|
|
97
97
|
|
|
98
|
+
def __init__(self) -> None:
|
|
99
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.colorizers.BandColor` class.'''
|
|
100
|
+
raise NotImplementedError()
|
|
101
|
+
|
|
98
102
|
@property
|
|
99
103
|
def band_index(self) -> int:
|
|
100
104
|
'''Specifies the index of the band. Numbering starts from 0.'''
|
|
@@ -129,8 +133,15 @@ class BandColor:
|
|
|
129
133
|
class MultiBandColor(RasterColorizer):
|
|
130
134
|
'''Multiband colorizer specifies red, green and blue components for a raster.'''
|
|
131
135
|
|
|
132
|
-
|
|
133
|
-
|
|
136
|
+
def __init__(self) -> None:
|
|
137
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.colorizers.MultiBandColor` class.'''
|
|
138
|
+
raise NotImplementedError()
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
def null(self) -> aspose.gis.rendering.colorizers.NullColorizer:
|
|
142
|
+
'''The :py:class:`aspose.gis.rendering.colorizers.NullColorizer` draws nothing and effectively skips the rendering of cells it is applied to.'''
|
|
143
|
+
raise NotImplementedError()
|
|
144
|
+
|
|
134
145
|
@property
|
|
135
146
|
def alpha_band(self) -> aspose.gis.rendering.colorizers.BandColor:
|
|
136
147
|
'''Specifies the alpha component for our raster.'''
|
|
@@ -175,22 +186,38 @@ class MultiBandColor(RasterColorizer):
|
|
|
175
186
|
class NullColorizer(RasterColorizer):
|
|
176
187
|
'''The ``NullColorizer`` draws nothing and effectively skips rendering of a raster cell it is applied to.'''
|
|
177
188
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
189
|
+
@property
|
|
190
|
+
def null(self) -> aspose.gis.rendering.colorizers.NullColorizer:
|
|
191
|
+
'''The :py:class:`aspose.gis.rendering.colorizers.NullColorizer` draws nothing and effectively skips the rendering of cells it is applied to.'''
|
|
192
|
+
raise NotImplementedError()
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
def instance(self) -> aspose.gis.rendering.colorizers.NullColorizer:
|
|
196
|
+
'''Gets an instance of ``NullColorizer``.'''
|
|
197
|
+
raise NotImplementedError()
|
|
198
|
+
|
|
182
199
|
|
|
183
200
|
class RasterColorizer:
|
|
184
201
|
'''The abstract root class for the colorizer that render a raster.'''
|
|
185
202
|
|
|
186
|
-
|
|
187
|
-
|
|
203
|
+
@property
|
|
204
|
+
def null(self) -> aspose.gis.rendering.colorizers.NullColorizer:
|
|
205
|
+
'''The :py:class:`aspose.gis.rendering.colorizers.NullColorizer` draws nothing and effectively skips the rendering of cells it is applied to.'''
|
|
206
|
+
raise NotImplementedError()
|
|
207
|
+
|
|
188
208
|
|
|
189
209
|
class SingleBandColor(RasterColorizer):
|
|
190
210
|
'''Single band colorizer specifies a gray component for a raster.'''
|
|
191
211
|
|
|
192
|
-
|
|
193
|
-
|
|
212
|
+
def __init__(self) -> None:
|
|
213
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.colorizers.SingleBandColor` class.'''
|
|
214
|
+
raise NotImplementedError()
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
def null(self) -> aspose.gis.rendering.colorizers.NullColorizer:
|
|
218
|
+
'''The :py:class:`aspose.gis.rendering.colorizers.NullColorizer` draws nothing and effectively skips the rendering of cells it is applied to.'''
|
|
219
|
+
raise NotImplementedError()
|
|
220
|
+
|
|
194
221
|
@property
|
|
195
222
|
def gray_band(self) -> aspose.gis.rendering.colorizers.BandColor:
|
|
196
223
|
'''Specifies the gray component for our raster.'''
|
|
@@ -104,8 +104,11 @@ class LabelPlacement:
|
|
|
104
104
|
class Labeling:
|
|
105
105
|
'''The abstract root class for labelings, classes that describe how to place labels on features.'''
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
@property
|
|
108
|
+
def null(self) -> aspose.gis.rendering.labelings.NullLabeling:
|
|
109
|
+
'''Gets an instance of :py:class:`aspose.gis.rendering.labelings.NullLabeling`.'''
|
|
110
|
+
raise NotImplementedError()
|
|
111
|
+
|
|
109
112
|
|
|
110
113
|
class LabelingRule:
|
|
111
114
|
'''A user-defined rule for :py:class:`aspose.gis.rendering.labelings.RuleBasedLabeling`.'''
|
|
@@ -137,6 +140,18 @@ class LabelingRule:
|
|
|
137
140
|
class LineLabelPlacement(LabelPlacement):
|
|
138
141
|
'''Line label placement places labels along line.'''
|
|
139
142
|
|
|
143
|
+
@overload
|
|
144
|
+
def __init__(self) -> None:
|
|
145
|
+
'''Creates new instance.'''
|
|
146
|
+
raise NotImplementedError()
|
|
147
|
+
|
|
148
|
+
@overload
|
|
149
|
+
def __init__(self, other : aspose.gis.rendering.labelings.LineLabelPlacement) -> None:
|
|
150
|
+
'''Creates new instance.
|
|
151
|
+
|
|
152
|
+
:param other: The other :py:class:`aspose.gis.rendering.labelings.LineLabelPlacement` to copy data from.'''
|
|
153
|
+
raise NotImplementedError()
|
|
154
|
+
|
|
140
155
|
def clone(self) -> aspose.gis.rendering.labelings.LabelPlacement:
|
|
141
156
|
'''Clones this instance.
|
|
142
157
|
|
|
@@ -181,14 +196,32 @@ class LineLabelPlacement(LabelPlacement):
|
|
|
181
196
|
class NullLabeling(Labeling):
|
|
182
197
|
'''The :py:class:`aspose.gis.rendering.labelings.NullLabeling` skips labeling of a geometry it is applied to.'''
|
|
183
198
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
199
|
+
@property
|
|
200
|
+
def null(self) -> aspose.gis.rendering.labelings.NullLabeling:
|
|
201
|
+
'''Gets an instance of :py:class:`aspose.gis.rendering.labelings.NullLabeling`.'''
|
|
202
|
+
raise NotImplementedError()
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
def instance(self) -> aspose.gis.rendering.labelings.NullLabeling:
|
|
206
|
+
'''Gets an instance of :py:class:`aspose.gis.rendering.labelings.NullLabeling`.'''
|
|
207
|
+
raise NotImplementedError()
|
|
208
|
+
|
|
188
209
|
|
|
189
210
|
class PointLabelPlacement(LabelPlacement):
|
|
190
211
|
'''Points label placement places labels near geometries centers.'''
|
|
191
212
|
|
|
213
|
+
@overload
|
|
214
|
+
def __init__(self) -> None:
|
|
215
|
+
'''Creates new instance.'''
|
|
216
|
+
raise NotImplementedError()
|
|
217
|
+
|
|
218
|
+
@overload
|
|
219
|
+
def __init__(self, other : aspose.gis.rendering.labelings.PointLabelPlacement) -> None:
|
|
220
|
+
'''Creates new instance.
|
|
221
|
+
|
|
222
|
+
:param other: The other :py:class:`aspose.gis.rendering.labelings.PointLabelPlacement` to copy data from.'''
|
|
223
|
+
raise NotImplementedError()
|
|
224
|
+
|
|
192
225
|
def clone(self) -> aspose.gis.rendering.labelings.LabelPlacement:
|
|
193
226
|
'''Clones this instance.
|
|
194
227
|
|
|
@@ -249,6 +282,9 @@ class PointLabelPlacement(LabelPlacement):
|
|
|
249
282
|
class RuleBasedLabeling(Labeling):
|
|
250
283
|
'''Applies a labeling to feature according to user-defined rules.'''
|
|
251
284
|
|
|
285
|
+
def __init__(self) -> None:
|
|
286
|
+
raise NotImplementedError()
|
|
287
|
+
|
|
252
288
|
def add_else_rule(self, labeling : aspose.gis.rendering.labelings.Labeling) -> None:
|
|
253
289
|
'''Adds a labeling that will be applied to features that don\'t match any filtering rule.
|
|
254
290
|
|
|
@@ -261,20 +297,45 @@ class RuleBasedLabeling(Labeling):
|
|
|
261
297
|
:param rule: Rule to add.'''
|
|
262
298
|
raise NotImplementedError()
|
|
263
299
|
|
|
264
|
-
|
|
265
|
-
|
|
300
|
+
@property
|
|
301
|
+
def null(self) -> aspose.gis.rendering.labelings.NullLabeling:
|
|
302
|
+
'''Gets an instance of :py:class:`aspose.gis.rendering.labelings.NullLabeling`.'''
|
|
303
|
+
raise NotImplementedError()
|
|
304
|
+
|
|
266
305
|
|
|
267
306
|
class SimpleLabeling(Labeling):
|
|
268
307
|
'''A simple labeling places label on every feature.'''
|
|
269
308
|
|
|
309
|
+
@overload
|
|
310
|
+
def __init__(self) -> None:
|
|
311
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.labelings.SimpleLabeling` class.'''
|
|
312
|
+
raise NotImplementedError()
|
|
313
|
+
|
|
314
|
+
@overload
|
|
315
|
+
def __init__(self, label_attribute : str) -> None:
|
|
316
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.labelings.SimpleLabeling` class.
|
|
317
|
+
|
|
318
|
+
:param label_attribute: Attribute name to use as a source of labels.'''
|
|
319
|
+
raise NotImplementedError()
|
|
320
|
+
|
|
321
|
+
@overload
|
|
322
|
+
def __init__(self, other : aspose.gis.rendering.labelings.SimpleLabeling) -> None:
|
|
323
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.labelings.SimpleLabeling` class.
|
|
324
|
+
|
|
325
|
+
:param other: The other :py:class:`aspose.gis.rendering.labelings.SimpleLabeling` to copy data from.'''
|
|
326
|
+
raise NotImplementedError()
|
|
327
|
+
|
|
270
328
|
def clone(self) -> aspose.gis.rendering.labelings.SimpleLabeling:
|
|
271
329
|
'''Clones this instance.
|
|
272
330
|
|
|
273
331
|
:returns: A clone of this instance.'''
|
|
274
332
|
raise NotImplementedError()
|
|
275
333
|
|
|
276
|
-
|
|
277
|
-
|
|
334
|
+
@property
|
|
335
|
+
def null(self) -> aspose.gis.rendering.labelings.NullLabeling:
|
|
336
|
+
'''Gets an instance of :py:class:`aspose.gis.rendering.labelings.NullLabeling`.'''
|
|
337
|
+
raise NotImplementedError()
|
|
338
|
+
|
|
278
339
|
@property
|
|
279
340
|
def label_attribute(self) -> str:
|
|
280
341
|
'''Attribute name to use as a source of labels. Ignored if :py:attr:`aspose.gis.rendering.labelings.SimpleLabeling.LabelExpression` is set.
|
|
@@ -94,6 +94,9 @@ import aspose.gis.topology.graph
|
|
|
94
94
|
class SldImportOptions:
|
|
95
95
|
'''Options for the import of Styled Layer Descriptor file (Sld).'''
|
|
96
96
|
|
|
97
|
+
def __init__(self) -> None:
|
|
98
|
+
raise NotImplementedError()
|
|
99
|
+
|
|
97
100
|
@property
|
|
98
101
|
def load_internet_resources(self) -> bool:
|
|
99
102
|
'''Determines whether Aspose.GIS is allowed to load sources from Internet.
|