aspose-gis-net 25.7.0__py3-none-win32.whl → 25.9.0__py3-none-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspose-gis-net might be problematic. Click here for more details.
- 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-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.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
aspose/gis/painting/__init__.pyi
CHANGED
|
@@ -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
|
|
@@ -138,6 +140,9 @@ class PaintEngine:
|
|
|
138
140
|
|
|
139
141
|
class PaintEngineOptions:
|
|
140
142
|
|
|
143
|
+
def __init__(self) -> None:
|
|
144
|
+
raise NotImplementedError()
|
|
145
|
+
|
|
141
146
|
def clone(self) -> aspose.gis.painting.PaintEngineOptions:
|
|
142
147
|
raise NotImplementedError()
|
|
143
148
|
|
|
@@ -176,6 +181,9 @@ class PaintEngineOptions:
|
|
|
176
181
|
|
|
177
182
|
class PaintEngineState:
|
|
178
183
|
|
|
184
|
+
def __init__(self) -> None:
|
|
185
|
+
raise NotImplementedError()
|
|
186
|
+
|
|
179
187
|
@overload
|
|
180
188
|
def rotate(self, degrees : float) -> None:
|
|
181
189
|
raise NotImplementedError()
|
|
@@ -283,7 +291,10 @@ class PaintLayerOptions:
|
|
|
283
291
|
def nearly_equal(self, other : aspose.gis.painting.PaintLayerOptions) -> bool:
|
|
284
292
|
raise NotImplementedError()
|
|
285
293
|
|
|
286
|
-
|
|
294
|
+
@property
|
|
295
|
+
def by_default(self) -> aspose.gis.painting.PaintLayerOptions:
|
|
296
|
+
raise NotImplementedError()
|
|
297
|
+
|
|
287
298
|
@property
|
|
288
299
|
def opacity(self) -> float:
|
|
289
300
|
raise NotImplementedError()
|
|
@@ -303,6 +314,9 @@ class PaintLayerOptions:
|
|
|
303
314
|
|
|
304
315
|
class Painter:
|
|
305
316
|
|
|
317
|
+
def __init__(self, engine : aspose.gis.painting.PaintEngine) -> None:
|
|
318
|
+
raise NotImplementedError()
|
|
319
|
+
|
|
306
320
|
@overload
|
|
307
321
|
def start_new_layer(self, options : aspose.gis.painting.PaintLayerOptions) -> None:
|
|
308
322
|
raise NotImplementedError()
|
|
@@ -412,10 +426,25 @@ class PainterBrush:
|
|
|
412
426
|
|
|
413
427
|
class PainterPen:
|
|
414
428
|
|
|
429
|
+
@overload
|
|
430
|
+
def __init__(self) -> None:
|
|
431
|
+
raise NotImplementedError()
|
|
432
|
+
|
|
433
|
+
@overload
|
|
434
|
+
def __init__(self, color : aspose.pydrawing.Color, width : float, style : aspose.gis.painting.PenStyle, line_join : aspose.gis.painting.PenLineJoin) -> None:
|
|
435
|
+
raise NotImplementedError()
|
|
436
|
+
|
|
437
|
+
@overload
|
|
438
|
+
def __init__(self, options : aspose.gis.painting.PainterPenOptions) -> None:
|
|
439
|
+
raise NotImplementedError()
|
|
440
|
+
|
|
415
441
|
def equals(self, other : aspose.gis.painting.PainterPen) -> bool:
|
|
416
442
|
raise NotImplementedError()
|
|
417
443
|
|
|
418
|
-
|
|
444
|
+
@property
|
|
445
|
+
def no_pen(self) -> aspose.gis.painting.PainterPen:
|
|
446
|
+
raise NotImplementedError()
|
|
447
|
+
|
|
419
448
|
@property
|
|
420
449
|
def color(self) -> aspose.pydrawing.Color:
|
|
421
450
|
raise NotImplementedError()
|
|
@@ -447,6 +476,9 @@ class PainterPen:
|
|
|
447
476
|
|
|
448
477
|
class PainterPenOptions:
|
|
449
478
|
|
|
479
|
+
def __init__(self) -> None:
|
|
480
|
+
raise NotImplementedError()
|
|
481
|
+
|
|
450
482
|
@property
|
|
451
483
|
def color(self) -> aspose.pydrawing.Color:
|
|
452
484
|
raise NotImplementedError()
|
|
@@ -513,6 +545,9 @@ class PaintingExtensions:
|
|
|
513
545
|
|
|
514
546
|
class PlacedCharacter:
|
|
515
547
|
|
|
548
|
+
def __init__(self) -> None:
|
|
549
|
+
raise NotImplementedError()
|
|
550
|
+
|
|
516
551
|
@property
|
|
517
552
|
def symbol(self) -> str:
|
|
518
553
|
raise NotImplementedError()
|
|
@@ -540,6 +575,9 @@ class PlacedCharacter:
|
|
|
540
575
|
|
|
541
576
|
class PolylinesShape:
|
|
542
577
|
|
|
578
|
+
def __init__(self) -> None:
|
|
579
|
+
raise NotImplementedError()
|
|
580
|
+
|
|
543
581
|
def add_rectangle(self, rectangle : aspose.gis.common.Rectangle) -> None:
|
|
544
582
|
raise NotImplementedError()
|
|
545
583
|
|
|
@@ -553,13 +591,24 @@ class PolylinesShape:
|
|
|
553
591
|
|
|
554
592
|
class SolidPainterBrush(PainterBrush):
|
|
555
593
|
|
|
594
|
+
@overload
|
|
595
|
+
def __init__(self) -> None:
|
|
596
|
+
raise NotImplementedError()
|
|
597
|
+
|
|
598
|
+
@overload
|
|
599
|
+
def __init__(self, color : aspose.pydrawing.Color, style : aspose.gis.painting.BrushStyle) -> None:
|
|
600
|
+
raise NotImplementedError()
|
|
601
|
+
|
|
556
602
|
def get_hash_code(self) -> int:
|
|
557
603
|
raise NotImplementedError()
|
|
558
604
|
|
|
559
605
|
def equals(self, base_other : aspose.gis.painting.PainterBrush) -> bool:
|
|
560
606
|
raise NotImplementedError()
|
|
561
607
|
|
|
562
|
-
|
|
608
|
+
@property
|
|
609
|
+
def no_brush(self) -> aspose.gis.painting.SolidPainterBrush:
|
|
610
|
+
raise NotImplementedError()
|
|
611
|
+
|
|
563
612
|
@property
|
|
564
613
|
def color(self) -> aspose.pydrawing.Color:
|
|
565
614
|
raise NotImplementedError()
|
|
@@ -571,17 +620,35 @@ class SolidPainterBrush(PainterBrush):
|
|
|
571
620
|
|
|
572
621
|
class StrokeTemplates:
|
|
573
622
|
|
|
623
|
+
def __init__(self) -> None:
|
|
624
|
+
raise NotImplementedError()
|
|
625
|
+
|
|
574
626
|
@staticmethod
|
|
575
627
|
def is_equal_pattern(multipliers : List[float], pattern : List[float]) -> bool:
|
|
576
628
|
raise NotImplementedError()
|
|
577
629
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
630
|
+
@property
|
|
631
|
+
def DOT_MULTIPLIERS(self) -> List[float]:
|
|
632
|
+
raise NotImplementedError()
|
|
633
|
+
|
|
634
|
+
@property
|
|
635
|
+
def DASH_MULTIPLIERS(self) -> List[float]:
|
|
636
|
+
raise NotImplementedError()
|
|
637
|
+
|
|
638
|
+
@property
|
|
639
|
+
def DASH_DOT_MULTIPLIERS(self) -> List[float]:
|
|
640
|
+
raise NotImplementedError()
|
|
641
|
+
|
|
642
|
+
@property
|
|
643
|
+
def DASH_DOT_DOT_MULTIPLIERS(self) -> List[float]:
|
|
644
|
+
raise NotImplementedError()
|
|
645
|
+
|
|
582
646
|
|
|
583
647
|
class SvgGeometryOptions:
|
|
584
648
|
|
|
649
|
+
def __init__(self) -> None:
|
|
650
|
+
raise NotImplementedError()
|
|
651
|
+
|
|
585
652
|
@property
|
|
586
653
|
def background_color(self) -> aspose.pydrawing.Color:
|
|
587
654
|
raise NotImplementedError()
|
|
@@ -593,6 +660,9 @@ class SvgGeometryOptions:
|
|
|
593
660
|
|
|
594
661
|
class SvgOptions:
|
|
595
662
|
|
|
663
|
+
def __init__(self) -> None:
|
|
664
|
+
raise NotImplementedError()
|
|
665
|
+
|
|
596
666
|
@property
|
|
597
667
|
def width(self) -> str:
|
|
598
668
|
raise NotImplementedError()
|
|
@@ -644,6 +714,9 @@ class SvgOptions:
|
|
|
644
714
|
|
|
645
715
|
class SvgTextureBrush(PainterBrush):
|
|
646
716
|
|
|
717
|
+
def __init__(self, url_pattern_id : str) -> None:
|
|
718
|
+
raise NotImplementedError()
|
|
719
|
+
|
|
647
720
|
def get_hash_code(self) -> int:
|
|
648
721
|
raise NotImplementedError()
|
|
649
722
|
|
|
@@ -693,7 +766,10 @@ class SystemDrawingAdapter:
|
|
|
693
766
|
def measure_text(graphics : Any, text : str, font : Any) -> aspose.gis.common.Size:
|
|
694
767
|
raise NotImplementedError()
|
|
695
768
|
|
|
696
|
-
|
|
769
|
+
@property
|
|
770
|
+
def string_format(self) -> Any:
|
|
771
|
+
raise NotImplementedError()
|
|
772
|
+
|
|
697
773
|
|
|
698
774
|
class SystemDrawingPaintEngine(PaintEngine):
|
|
699
775
|
|
|
@@ -744,6 +820,9 @@ class SystemDrawingPaintEngine(PaintEngine):
|
|
|
744
820
|
|
|
745
821
|
class SystemDrawingTextureBrush(PainterBrush):
|
|
746
822
|
|
|
823
|
+
def __init__(self, brush : Any) -> None:
|
|
824
|
+
raise NotImplementedError()
|
|
825
|
+
|
|
747
826
|
def get_hash_code(self) -> int:
|
|
748
827
|
raise NotImplementedError()
|
|
749
828
|
|
|
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
|
|
|
35
35
|
import aspose.gis.formats.gdal
|
|
36
36
|
import aspose.gis.formats.geojson
|
|
37
37
|
import aspose.gis.formats.geojsonseq
|
|
38
|
+
import aspose.gis.formats.geopackage
|
|
38
39
|
import aspose.gis.formats.geotiff
|
|
39
40
|
import aspose.gis.formats.gml
|
|
40
41
|
import aspose.gis.formats.gpx
|
|
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
|
|
|
42
43
|
import aspose.gis.formats.inmemory
|
|
43
44
|
import aspose.gis.formats.jpegw
|
|
44
45
|
import aspose.gis.formats.kml
|
|
46
|
+
import aspose.gis.formats.kml.specificfields
|
|
45
47
|
import aspose.gis.formats.kml.styles
|
|
46
48
|
import aspose.gis.formats.mapinfointerchange
|
|
47
49
|
import aspose.gis.formats.mapinfotab
|
|
@@ -91,6 +93,9 @@ import aspose.gis.topology.graph
|
|
|
91
93
|
|
|
92
94
|
class EllipsoidProperties:
|
|
93
95
|
|
|
96
|
+
def __init__(self, semi_major_axis : float, inverse_flattening : float) -> None:
|
|
97
|
+
raise NotImplementedError()
|
|
98
|
+
|
|
94
99
|
@property
|
|
95
100
|
def is_valid(self) -> bool:
|
|
96
101
|
raise NotImplementedError()
|
|
@@ -135,9 +140,20 @@ class Projection:
|
|
|
135
140
|
|
|
136
141
|
class ProjectionException:
|
|
137
142
|
|
|
143
|
+
@overload
|
|
144
|
+
def __init__(self) -> None:
|
|
145
|
+
raise NotImplementedError()
|
|
146
|
+
|
|
147
|
+
@overload
|
|
148
|
+
def __init__(self, message : str) -> None:
|
|
149
|
+
raise NotImplementedError()
|
|
150
|
+
|
|
138
151
|
|
|
139
152
|
class ProjectionParameters:
|
|
140
153
|
|
|
154
|
+
def __init__(self) -> None:
|
|
155
|
+
raise NotImplementedError()
|
|
156
|
+
|
|
141
157
|
@property
|
|
142
158
|
def ellipsoid_properties(self) -> aspose.gis.projections.EllipsoidProperties:
|
|
143
159
|
raise NotImplementedError()
|
aspose/gis/raster/__init__.pyi
CHANGED
|
@@ -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
|
|
@@ -213,6 +215,12 @@ class IRasterValues:
|
|
|
213
215
|
class RasterBand(IRasterBand):
|
|
214
216
|
'''Contains data about a raster Band.'''
|
|
215
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
|
+
|
|
216
224
|
@property
|
|
217
225
|
def data_type(self) -> aspose.gis.raster.BandTypes:
|
|
218
226
|
'''Gets type of values stored in each cell.'''
|
|
@@ -222,6 +230,10 @@ class RasterBand(IRasterBand):
|
|
|
222
230
|
class RasterCellSize(IRasterCellSize):
|
|
223
231
|
'''Describes the size, scale and rotation of a raster cell on a map.'''
|
|
224
232
|
|
|
233
|
+
def __init__(self) -> None:
|
|
234
|
+
'''Create an instance of :py:class:`aspose.gis.raster.RasterCellSize`.'''
|
|
235
|
+
raise NotImplementedError()
|
|
236
|
+
|
|
225
237
|
@property
|
|
226
238
|
def height(self) -> float:
|
|
227
239
|
'''Compute the pixel height.'''
|
|
@@ -276,6 +288,18 @@ class RasterCellSize(IRasterCellSize):
|
|
|
276
288
|
class RasterExpressionContext:
|
|
277
289
|
'''This class describes the value context when it reads raster a band.'''
|
|
278
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
|
+
|
|
279
303
|
def equals(self, other : aspose.gis.raster.RasterExpressionContext) -> bool:
|
|
280
304
|
'''Indicates whether the current object is equal to another object of the same type.
|
|
281
305
|
|
|
@@ -420,6 +444,15 @@ class RasterLayer:
|
|
|
420
444
|
class RasterRect:
|
|
421
445
|
'''Block of raster cells.'''
|
|
422
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
|
+
|
|
423
456
|
@property
|
|
424
457
|
def x(self) -> int:
|
|
425
458
|
'''Gets start column (x-coordinate).'''
|
|
@@ -473,6 +506,9 @@ class RasterStatistics:
|
|
|
473
506
|
class WarpOptions:
|
|
474
507
|
'''Options for raster warping.'''
|
|
475
508
|
|
|
509
|
+
def __init__(self) -> None:
|
|
510
|
+
raise NotImplementedError()
|
|
511
|
+
|
|
476
512
|
@property
|
|
477
513
|
def width(self) -> int:
|
|
478
514
|
'''Specifies output raster width in pixels and columns.
|
|
@@ -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
|
|
@@ -98,6 +100,12 @@ class WebTile:
|
|
|
98
100
|
:returns: A spatial extent of this layer.'''
|
|
99
101
|
raise NotImplementedError()
|
|
100
102
|
|
|
103
|
+
def as_binary(self) -> List[int]:
|
|
104
|
+
'''Returns the image byte sequence
|
|
105
|
+
|
|
106
|
+
:returns: Byte sequence'''
|
|
107
|
+
raise NotImplementedError()
|
|
108
|
+
|
|
101
109
|
def as_raster(self) -> aspose.gis.raster.RasterLayer:
|
|
102
110
|
'''Presents the tile content as a Raster layer.
|
|
103
111
|
|
|
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
|
|
|
35
35
|
import aspose.gis.formats.gdal
|
|
36
36
|
import aspose.gis.formats.geojson
|
|
37
37
|
import aspose.gis.formats.geojsonseq
|
|
38
|
+
import aspose.gis.formats.geopackage
|
|
38
39
|
import aspose.gis.formats.geotiff
|
|
39
40
|
import aspose.gis.formats.gml
|
|
40
41
|
import aspose.gis.formats.gpx
|
|
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
|
|
|
42
43
|
import aspose.gis.formats.inmemory
|
|
43
44
|
import aspose.gis.formats.jpegw
|
|
44
45
|
import aspose.gis.formats.kml
|
|
46
|
+
import aspose.gis.formats.kml.specificfields
|
|
45
47
|
import aspose.gis.formats.kml.styles
|
|
46
48
|
import aspose.gis.formats.mapinfointerchange
|
|
47
49
|
import aspose.gis.formats.mapinfotab
|
|
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
|
|
|
35
35
|
import aspose.gis.formats.gdal
|
|
36
36
|
import aspose.gis.formats.geojson
|
|
37
37
|
import aspose.gis.formats.geojsonseq
|
|
38
|
+
import aspose.gis.formats.geopackage
|
|
38
39
|
import aspose.gis.formats.geotiff
|
|
39
40
|
import aspose.gis.formats.gml
|
|
40
41
|
import aspose.gis.formats.gpx
|
|
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
|
|
|
42
43
|
import aspose.gis.formats.inmemory
|
|
43
44
|
import aspose.gis.formats.jpegw
|
|
44
45
|
import aspose.gis.formats.kml
|
|
46
|
+
import aspose.gis.formats.kml.specificfields
|
|
45
47
|
import aspose.gis.formats.kml.styles
|
|
46
48
|
import aspose.gis.formats.mapinfointerchange
|
|
47
49
|
import aspose.gis.formats.mapinfotab
|
|
@@ -92,6 +94,10 @@ import aspose.gis.topology.graph
|
|
|
92
94
|
class JoinByGeometryOptions:
|
|
93
95
|
'''Options for layers joining.'''
|
|
94
96
|
|
|
97
|
+
def __init__(self) -> None:
|
|
98
|
+
'''Create a new instance.'''
|
|
99
|
+
raise NotImplementedError()
|
|
100
|
+
|
|
95
101
|
@property
|
|
96
102
|
def radius(self) -> float:
|
|
97
103
|
'''Specifies a radius to look for the joined geometry.'''
|
|
@@ -116,6 +122,10 @@ class JoinByGeometryOptions:
|
|
|
116
122
|
class JoinOptions:
|
|
117
123
|
'''Options for layers joining.'''
|
|
118
124
|
|
|
125
|
+
def __init__(self) -> None:
|
|
126
|
+
'''Create a new instance.'''
|
|
127
|
+
raise NotImplementedError()
|
|
128
|
+
|
|
119
129
|
@property
|
|
120
130
|
def join_attribute_name(self) -> str:
|
|
121
131
|
'''Specifies an attribute name of the joined layer which value will be used into :py:attr:`aspose.gis.relationship.joins.JoinOptions.ConditionComparer`.'''
|
|
@@ -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,19 @@ import aspose.gis.topology.graph
|
|
|
92
94
|
class Map:
|
|
93
95
|
'''Map is a collection of layers that can be rendered on top of each other via :py:class:`aspose.gis.rendering.Renderer`.'''
|
|
94
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
|
+
|
|
95
110
|
@overload
|
|
96
111
|
def add(self, layer : aspose.gis.VectorLayer, keep_open : bool) -> None:
|
|
97
112
|
'''Creates a :py:class:`aspose.gis.rendering.VectorMapLayer` with default symbolizer and adds it to the map. Layers are rendered in addition order.
|
|
@@ -279,6 +294,18 @@ class MapLayer:
|
|
|
279
294
|
class Measurement:
|
|
280
295
|
'''A number that indicates a render measurement.'''
|
|
281
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
|
+
|
|
282
309
|
@staticmethod
|
|
283
310
|
def pixels(value : float) -> aspose.gis.rendering.Measurement:
|
|
284
311
|
'''Returns a new instance of ``Measurement`` that represents length in pixels.
|
|
@@ -327,8 +354,11 @@ class Measurement:
|
|
|
327
354
|
:returns: New instance of ``Measurement`` class.'''
|
|
328
355
|
raise NotImplementedError()
|
|
329
356
|
|
|
330
|
-
|
|
331
|
-
|
|
357
|
+
@property
|
|
358
|
+
def zero(self) -> aspose.gis.rendering.Measurement:
|
|
359
|
+
'''A measurement of zero length.'''
|
|
360
|
+
raise NotImplementedError()
|
|
361
|
+
|
|
332
362
|
@property
|
|
333
363
|
def value(self) -> float:
|
|
334
364
|
'''A number that indicates the length of the measurement.'''
|
|
@@ -343,6 +373,14 @@ class Measurement:
|
|
|
343
373
|
class RasterMapLayer(MapLayer):
|
|
344
374
|
'''A layer inside :py:class:`aspose.gis.rendering.Map` that represents a raster layer data.'''
|
|
345
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
|
+
|
|
346
384
|
@property
|
|
347
385
|
def opacity(self) -> float:
|
|
348
386
|
'''Opacity of the layer.'''
|
|
@@ -377,6 +415,9 @@ class RasterMapLayer(MapLayer):
|
|
|
377
415
|
class RasterMapResampling:
|
|
378
416
|
'''This class describes how to resample a raster layer when rendering a map.'''
|
|
379
417
|
|
|
418
|
+
def __init__(self) -> None:
|
|
419
|
+
raise NotImplementedError()
|
|
420
|
+
|
|
380
421
|
@property
|
|
381
422
|
def width(self) -> int:
|
|
382
423
|
'''Specifies raster width on a map in pixels and columns.
|
|
@@ -425,18 +466,93 @@ class Renderer:
|
|
|
425
466
|
class Renderers:
|
|
426
467
|
'''Renderers for all supported formats.'''
|
|
427
468
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
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
|
+
|
|
436
489
|
|
|
437
490
|
class VectorMapLayer(MapLayer):
|
|
438
491
|
'''A layer inside :py:class:`aspose.gis.rendering.Map` that represents a vector layer data.'''
|
|
439
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
|
+
|
|
440
556
|
@overload
|
|
441
557
|
def import_sld(self, path : str, options : aspose.gis.rendering.sld.SldImportOptions) -> None:
|
|
442
558
|
'''Imports style from Styled Layer Descriptor file located at the specified path.
|