aspose-gis-net 25.5.0__py3-none-win_amd64.whl → 25.6.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.

Binary file
@@ -101,6 +101,7 @@ class XyzConnection:
101
101
  class XyzTiles(aspose.gis.raster.web.WebTiles):
102
102
  '''A XyzTiles provide access to :py:class:`Aspose.Gis.Formats.XyzTile.XyzTile` objects.'''
103
103
 
104
+ @overload
104
105
  def get_tiles(self, zoom : int, extent : aspose.gis.Extent) -> Iterable[aspose.gis.raster.web.WebTile]:
105
106
  '''Loads tiles by the spatial bounding box and zoom level.
106
107
 
@@ -109,6 +110,17 @@ class XyzTiles(aspose.gis.raster.web.WebTiles):
109
110
  :returns: The web tiles.'''
110
111
  raise NotImplementedError()
111
112
 
113
+ @overload
114
+ def get_tiles(self, zoom : int, extent : aspose.gis.Extent, tile_size : int) -> Iterable[aspose.gis.raster.web.WebTile]:
115
+ '''Loads tiles by the spatial bounding box and zoom level.
116
+
117
+ :param zoom: The zoom level for loading tiles. The highest zoom level is 0. Most tile providers have about 22 maximum zoom levels.
118
+ :param extent: The bounding box to load tiles. The Wgs84 spatial reference will be used if it is missed.
119
+ :param tile_size: Size of tiles, by default is 256 (it is standard for tiles size)
120
+ :returns: The web tiles.'''
121
+ raise NotImplementedError()
122
+
123
+ @overload
112
124
  def get_tile(self, zoom : int, x : int, y : int) -> aspose.gis.raster.web.WebTile:
113
125
  '''Loads the specified tile.
114
126
 
@@ -118,6 +130,17 @@ class XyzTiles(aspose.gis.raster.web.WebTiles):
118
130
  :returns: The web tile.'''
119
131
  raise NotImplementedError()
120
132
 
133
+ @overload
134
+ def get_tile(self, zoom : int, x : int, y : int, tile_size : int) -> aspose.gis.raster.web.WebTile:
135
+ '''Loads the specified tile.
136
+
137
+ :param zoom: The zoom level for loading tiles. The highest zoom level is 0. Most tile providers have about 22 maximum zoom levels.
138
+ :param x: An x-column of a tile.
139
+ :param y: A y-row of a tile.
140
+ :param tile_size: Size of tiles, by default is 256 (it is standard for tiles size)
141
+ :returns: The web tile.'''
142
+ raise NotImplementedError()
143
+
121
144
 
122
145
  class XyzTilesDriver(aspose.gis.Driver):
123
146
  '''A driver for the XYZ tiled web maps.'''
@@ -97,6 +97,11 @@ class GeneratorTiles:
97
97
  def generate_tiles(layers : Iterable[aspose.gis.VectorLayer], out_directory : str, zoom : int, options : aspose.gis.geotools.GeneratorTilesRenderOptions) -> None:
98
98
  raise NotImplementedError()
99
99
 
100
+ @overload
101
+ @staticmethod
102
+ def generate_tiles(layers : Iterable[aspose.gis.VectorLayer], out_directory : str, zoom : int, extent : aspose.gis.Extent, options : aspose.gis.geotools.GeneratorTilesRenderOptions) -> None:
103
+ raise NotImplementedError()
104
+
100
105
  @overload
101
106
  @staticmethod
102
107
  def generate_tiles(layer : aspose.gis.VectorLayer, out_directory : str, zoom : int, options : aspose.gis.geotools.GeneratorTilesRenderOptions) -> None:
@@ -108,6 +113,18 @@ class GeneratorTiles:
108
113
  :param options: Options to render tiles'''
109
114
  raise NotImplementedError()
110
115
 
116
+ @overload
117
+ @staticmethod
118
+ def generate_tiles(layer : aspose.gis.VectorLayer, out_directory : str, zoom : int, extent : aspose.gis.Extent, options : aspose.gis.geotools.GeneratorTilesRenderOptions) -> None:
119
+ '''Generate tiles with zoom to output directory
120
+
121
+ :param layer: Imput layer
122
+ :param out_directory: Output directory
123
+ :param zoom: Zoom level for tiles
124
+ :param extent: The bounding box to render tiles
125
+ :param options: Options to render tiles'''
126
+ raise NotImplementedError()
127
+
111
128
 
112
129
  class GeneratorTilesRenderOptions:
113
130
  '''Options to render tiles'''
@@ -117,11 +134,21 @@ class GeneratorTilesRenderOptions:
117
134
  '''Size of tile'''
118
135
  raise NotImplementedError()
119
136
 
137
+ @tile_size.setter
138
+ def tile_size(self, value : float) -> None:
139
+ '''Size of tile'''
140
+ raise NotImplementedError()
141
+
120
142
  @property
121
143
  def tile_name_template(self) -> str:
122
144
  '''Tile name template'''
123
145
  raise NotImplementedError()
124
146
 
147
+ @tile_name_template.setter
148
+ def tile_name_template(self, value : str) -> None:
149
+ '''Tile name template'''
150
+ raise NotImplementedError()
151
+
125
152
  @property
126
153
  def background_color(self) -> aspose.pydrawing.Color:
127
154
  '''Background color'''
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aspose-gis-net
3
- Version: 25.5.0
3
+ Version: 25.6.0
4
4
  Summary: Aspose.GIS for Python via .NET is a standalone API to read, write, process, convert GDB, GPX, Shapefile, GML, FileGDB, KML and other popular gis formats. Integration with DataBases and Rendering capabilities of GIS data out from the box.
5
5
  Home-page: https://products.aspose.com/gis/python-net
6
6
  Author: Aspose
@@ -56,9 +56,9 @@ aspose/gis/formats/sqlserver/__init__.pyi,sha256=is-xX3tJgxR6WqOJMgpHDhLyRbHdDq6
56
56
  aspose/gis/formats/tiffw/__init__.pyi,sha256=JYF3J-ib8Yqy5_cE4zj8aGy3tii9omMph0ISbBrRM1Q,4943
57
57
  aspose/gis/formats/topojson/__init__.pyi,sha256=SoQtmsdiNJrh3AGU5ziy_Icsah4F039IYYsz1MhroWY,26016
58
58
  aspose/gis/formats/worldfile/__init__.pyi,sha256=SewuazK5ooezt3Jk09yVUx3nF28E6izAvii-EoZ4cYk,4943
59
- aspose/gis/formats/xyztile/__init__.pyi,sha256=u_asjIhClgHovhQcTzwDGvsO6oMDx7A6Uhfz9SUuL7A,4981
59
+ aspose/gis/formats/xyztile/__init__.pyi,sha256=zEvKZEmm_WvhNR4ghrZljxy9nhHfSIHA8K3Fx5Yltic,6215
60
60
  aspose/gis/geometries/__init__.pyi,sha256=W8Mu5toUqc9yerl7PYKgRJ4a0838dEO-St0a1qbRkh4,782185
61
- aspose/gis/geotools/__init__.pyi,sha256=xFffMqykKa7ewhY6LW7b4D6nMpJJb4NOgHhN_GAIh7o,20167
61
+ aspose/gis/geotools/__init__.pyi,sha256=VS_LjoEGTteAyBAH99goVEF6JsfYwiLe0zT5zlIBsXk,21312
62
62
  aspose/gis/geotools/extensions/__init__.pyi,sha256=9I43TZaCtphMc8m7mdnb0pWdU1KQCklGw_aKdES1_qo,3773
63
63
  aspose/gis/geotools/layersmap/__init__.pyi,sha256=0mCkPph-dqaHKNhOpZ1SgjsAUs4Om1n2U8GD0ghq-Yc,12000
64
64
  aspose/gis/geotools/mapbuilder/__init__.pyi,sha256=CCrM7_M8Z60SircTO2gEeHp1IQKBBOe1mMWUafWMWRA,4961
@@ -92,15 +92,15 @@ aspose/gis/topology/algorithms/__init__.pyi,sha256=yg3RRtZt8Z1z2SIeW0b3DCbfNE-FQ
92
92
  aspose/gis/topology/buffer/__init__.pyi,sha256=4WzhFE9dDkfKKoQ1k5A_mufK2jxOb-XxWz0x70f_56A,7570
93
93
  aspose/gis/topology/graph/__init__.pyi,sha256=ujFNMyO7MASVdGbyns5GDuFeDKyVm8K6Z7YK1SuO2w8,11222
94
94
  aspose/__init__.py,sha256=BZzm7zoBt2MkmKtNe7cyCVeUKSx7QjTyZke3W5jbaAE,3188
95
- aspose/gis.cp310-win_amd64.pyd,sha256=70Enodlrvl1hRS6Tz1OrK9AvUM1YAJZhUIijMbtJt7Y,4383744
96
- aspose/gis.cp311-win_amd64.pyd,sha256=VAySzrfFxmOVoYdlxxrOrULhzZ9jtL0UN-1x9WG6HAw,4384256
97
- aspose/gis.cp312-win_amd64.pyd,sha256=Kh3d6dPPKryktxiSFjRZNf4jr5qR6tWmNGw-vSVvOSk,4430848
98
- aspose/gis.cp313-win_amd64.pyd,sha256=GtHdycMof76cAr4ezoqcKCr7BEegHYHdO4egE47aa7I,4430848
99
- aspose/gis.cp35-win_amd64.pyd,sha256=mPL8L6GWop8S8SuN0GC6KT7OZWSV0wh4OJJ54Tg2sNk,4416000
100
- aspose/gis.cp36-win_amd64.pyd,sha256=WGkGr0sRuG9ehXw1nObdLulbhj_1y_jC5siOsz1dF_Y,4416000
101
- aspose/gis.cp37-win_amd64.pyd,sha256=DJqk9sdGZiPcpUSj0fxI3NLsqrSXsCkJYjoJI3jUY8Q,4411392
102
- aspose/gis.cp38-win_amd64.pyd,sha256=4OEFvNiAQr5_YkuvK53L9e3doIPVWSsnJmbjPCxeAdI,4394496
103
- aspose/gis.cp39-win_amd64.pyd,sha256=tOkLkabQq030_JZ49_IwC2JmL-V6KJv1sFEL73ZZZh4,4392448
95
+ aspose/gis.cp310-win_amd64.pyd,sha256=qm3YhAPxJ0yCPVmCE9BUeSRmfEhIipZu_Zlxl92G8V0,4386304
96
+ aspose/gis.cp311-win_amd64.pyd,sha256=ETqcqZFJu0mlWNnbcc1oaNTZiesqk3izacT9fouNEuI,4386304
97
+ aspose/gis.cp312-win_amd64.pyd,sha256=DOmRUXh7kSpmaVwWhD9a3NydglNWtmcj-uFqlixyAYo,4432384
98
+ aspose/gis.cp313-win_amd64.pyd,sha256=PHCqJGB0aJE6KGEONwfYY7jWIgs500dwFUPxcdhVrMs,4432384
99
+ aspose/gis.cp35-win_amd64.pyd,sha256=MgnmGMVOy1_2ASESSp1RplM1krFtrLgqs_5cnqgbCRA,4417536
100
+ aspose/gis.cp36-win_amd64.pyd,sha256=m-5kPUEeOrSdgQqdgCB_TvhoSOwNAdIRN_JiUqdb2Ao,4417536
101
+ aspose/gis.cp37-win_amd64.pyd,sha256=yVC_uu6rb8-jnjodCJgOTgQbYhSB_3Esu29NriqG_AY,4413440
102
+ aspose/gis.cp38-win_amd64.pyd,sha256=m2ywMzu4aZfXBcG7HVdHBlH7y4Os6Vd4vsA4mXSvuOs,4396544
103
+ aspose/gis.cp39-win_amd64.pyd,sha256=Jp64-s4OFArJQLoILPA2KXQRhZLSOtQwe2unQS_6Vqs,4394496
104
104
  aspose/pycore.cp310-win_amd64.pyd,sha256=k5cqZt-xjBQ9QU8EbhLjAbCFdfny9wvTY5b2Gd6TL8s,118784
105
105
  aspose/pycore.cp311-win_amd64.pyd,sha256=kmSLHnfsVpGaV1SHtPi9MBFmlS0X1VS3BrFE7t2SLa8,118784
106
106
  aspose/pycore.cp312-win_amd64.pyd,sha256=waRQwJ_siUrCNpXYR-agW5rnnWc8-Qaqk22k05ZGcow,119296
@@ -148,12 +148,12 @@ aspose/pyreflection.cp38-win_amd64.pyd,sha256=BwJqP43uCffVYHJnq8ZtektRaIOuJcLbwM
148
148
  aspose/pyreflection.cp39-win_amd64.pyd,sha256=8hFE1GJmsPIDwMo2Q5Vm4oLkGfSt6Fi_TgDRtayzX74,322048
149
149
  aspose/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
150
150
  aspose/__pyinstaller/hook-aspose.py,sha256=G2uQAF1mgFtEjkZFyvcElHUEzLLoFGdqVOMAs9bsTi0,258
151
- aspose/assemblies/gis/Aspose.GIS.dll,sha256=Y7vIILPaN2HIEtC8cpckVtJg96g2NuI9Trh1-PzgXPc,15631552
151
+ aspose/assemblies/gis/Aspose.GIS.dll,sha256=_aON7el4UWzCpMVxmlBgqzABYLM0dFuKeQ2R983_xG4,15635136
152
152
  aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
153
153
  aspose/assemblies/gis/Newtonsoft.Json.dll,sha256=AmjYhRYDXrZ4UeFf6lvSeHEA5V9O1qnItDSf6TPDkyk,639488
154
154
  aspose/assemblies/gis/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
155
155
  aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=5QE2vp2VVIgKxRJFkGRgwDmYVGFZQ0Ux4LEz6jT_B_A,1149440
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=9agd7Nu1cv16MkXeIBxjtp7ePXJKEv9FwHiCH8WXjOM,1150464
157
157
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=CEDKvNDovmshtGxX5OD9N5LPqiiaGw2LjaowBXiZ_To,93696
158
158
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
159
159
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
@@ -402,8 +402,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
402
402
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
403
403
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
404
404
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
405
- aspose_gis_net-25.5.0.dist-info/METADATA,sha256=WJX5IlxgNfAyQRMQMtUMT1F-VIG4Kj4K8_iFE0vWnbw,13987
406
- aspose_gis_net-25.5.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
407
- aspose_gis_net-25.5.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
408
- aspose_gis_net-25.5.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
409
- aspose_gis_net-25.5.0.dist-info/RECORD,,
405
+ aspose_gis_net-25.6.0.dist-info/METADATA,sha256=gBbFbD7fs7VZcCcPIZJrVjce3Q_ggUgqnlN5buOLmfE,13987
406
+ aspose_gis_net-25.6.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
407
+ aspose_gis_net-25.6.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
408
+ aspose_gis_net-25.6.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
409
+ aspose_gis_net-25.6.0.dist-info/RECORD,,