aspose-gis-net 25.5.0__py3-none-macosx_11_0_arm64.whl → 25.6.0__py3-none-macosx_11_0_arm64.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
@@ -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=VV6m5-K89pyMmxb45JyGOk82gRMfqS4
56
56
  aspose/gis/formats/tiffw/__init__.pyi,sha256=Lbr-opLNdYXKu-aV6DqqSKPYtVpxt8TTRugFBQ-uIlY,4817
57
57
  aspose/gis/formats/topojson/__init__.pyi,sha256=eS0qqqCEaBBMvfUhHSzprh8pXGDKcat87olc4zVandE,25428
58
58
  aspose/gis/formats/worldfile/__init__.pyi,sha256=NXjiK8SreD-hDYJGKu0Gomn2SpcrKGpZ-58kNIIAA1Y,4817
59
- aspose/gis/formats/xyztile/__init__.pyi,sha256=8XCq8auHmOZYkbO8ssPZs5-X0sxeFvOz0dN0FiHbqkQ,4857
59
+ aspose/gis/formats/xyztile/__init__.pyi,sha256=sCiRRTWtIctSWhLNuGBRDgX7KlxKSAEYimkgyRE-hyY,6068
60
60
  aspose/gis/geometries/__init__.pyi,sha256=Uw5LWX1FIy3oza_8SEaEaJ4ZvUNhuj5GEVhQvqGQDpg,766223
61
- aspose/gis/geotools/__init__.pyi,sha256=lXtWfE_z4znsJ5J07zYA54CxWz3YxFd5cMnFedecr2A,19656
61
+ aspose/gis/geotools/__init__.pyi,sha256=QTijaZNmdxJW7fFdfNAbe91imfcM0osKhSMC5tmvbyc,20774
62
62
  aspose/gis/geotools/extensions/__init__.pyi,sha256=IBT1ITBaI3g9cw-hn0ykDDQmlSYYZIpoOQ-bywrRf9o,3674
63
63
  aspose/gis/geotools/layersmap/__init__.pyi,sha256=Vu3Nm3PeBqzeveibyllc5leDY1sSItJPYERXKCsv8h8,11697
64
64
  aspose/gis/geotools/mapbuilder/__init__.pyi,sha256=9BnrCrPzVj8ajwIa8DU6at2ziY-qDDCLb_DrSIrCBVQ,4828
@@ -92,12 +92,12 @@ aspose/gis/topology/algorithms/__init__.pyi,sha256=IjIVgQZI2_HUQ0sMl0CeJAvvCte-B
92
92
  aspose/gis/topology/buffer/__init__.pyi,sha256=Wo4BhZwYp634DkONNEjolG-9i5U2eFuJTxPtrCWQrPs,7364
93
93
  aspose/gis/topology/graph/__init__.pyi,sha256=hgkUVLayxB2rTg56ViBBmHts-u9jzGzhY4TAjUf1F94,10892
94
94
  aspose/__init__.py,sha256=BZzm7zoBt2MkmKtNe7cyCVeUKSx7QjTyZke3W5jbaAE,3188
95
- aspose/gis.cpython-310-darwin.so,sha256=ZhL2tX7PXAKWvdpb5HRzwMR23uJKfV5yfArDV_rpQyk,8702440
96
- aspose/gis.cpython-311-darwin.so,sha256=_IcQIMz3PkzeWL15i47xZuMvB8HVR8ExLOla7cW8N3w,8702440
97
- aspose/gis.cpython-312-darwin.so,sha256=196u9o1L4isKFxMKZZvWwkutoeYQjWYoHd_Iy6yFvac,8586616
98
- aspose/gis.cpython-313-darwin.so,sha256=rR_5UyOLvwluAYDJ2tgyHXFUH8TFwPdogUW_Ucsl5HM,8586616
99
- aspose/gis.cpython-38-darwin.so,sha256=tApTpDEmydPyoBV0rmXAPYKG2jBbCxokLDApSiqosgc,8702328
100
- aspose/gis.cpython-39-darwin.so,sha256=T_ya1kGg5ijPZk9mqPWk9BggW0w1OfkoRrjya1TH8QA,8702456
95
+ aspose/gis.cpython-310-darwin.so,sha256=273n0rwN891zlgkDp1epFpj69bR8tgD9GcXKJz7598Y,8703496
96
+ aspose/gis.cpython-311-darwin.so,sha256=e4FbdMTEMtXg42I5b5Iy0m0b4iZQXGz1bnM43hsSLRY,8703480
97
+ aspose/gis.cpython-312-darwin.so,sha256=pB_lHtpDm0xN2DktasAIgYvHkrDzj_5yQgxIclkqbg0,8588088
98
+ aspose/gis.cpython-313-darwin.so,sha256=fzFHkmeyWoOcIGJRVHB8W5S8sKXqB1CulSHI7m4L1CQ,8588088
99
+ aspose/gis.cpython-38-darwin.so,sha256=AWoyXomyKHdaGjjcza7x6cfobwSRRcqkIlHZvTZJHCE,8703384
100
+ aspose/gis.cpython-39-darwin.so,sha256=5GuJiWKhQD_OLu_FW2wkvUFAcwRy_N46H8WcjLQ20Rk,8703528
101
101
  aspose/pycore.cpython-310-darwin.so,sha256=4jHIl_Y-U1_PAW0qf-YEStWNdFg5eQs8nt3hrpraVyo,172256
102
102
  aspose/pycore.cpython-311-darwin.so,sha256=X11EA-PNTkLZcVb_z8WajIGfUC9vVstuZMxeCNqjOuI,172256
103
103
  aspose/pycore.cpython-312-darwin.so,sha256=erQesn8HhVAUJuQLgXDmk15smVO1OcjZzYAUWvpx72A,172192
@@ -130,11 +130,11 @@ aspose/pyreflection.cpython-38-darwin.so,sha256=L_UkX7rytQyrhqoPgsujMizV0Q0_c9B3
130
130
  aspose/pyreflection.cpython-39-darwin.so,sha256=DkbTyBoWdB_tTCHSGkLqYkZNLUonadWQF2i3ElW0Qxc,554304
131
131
  aspose/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
132
132
  aspose/__pyinstaller/hook-aspose.py,sha256=G2uQAF1mgFtEjkZFyvcElHUEzLLoFGdqVOMAs9bsTi0,258
133
- aspose/assemblies/gis/Aspose.GIS.dll,sha256=Y7vIILPaN2HIEtC8cpckVtJg96g2NuI9Trh1-PzgXPc,15631552
133
+ aspose/assemblies/gis/Aspose.GIS.dll,sha256=_aON7el4UWzCpMVxmlBgqzABYLM0dFuKeQ2R983_xG4,15635136
134
134
  aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll,sha256=yklb9shrfwktYkkoEBmFqUFTLRSdzYrP6hcPilO-iFA,26224
135
135
  aspose/assemblies/gis/Newtonsoft.Json.dll,sha256=cs8pHUurDt0IqbB8YXPh560au3q3J_1wRL9jBddRVmE,695336
136
136
  aspose/assemblies/gis/System.Drawing.Common.dll,sha256=iepZXMsf0ThEgMHjC9SHySr10G07BvKVMj7_YBrNkBk,427112
137
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=16_HUe0cePZtl26YCPoQ6XOWO0tHzF46hVMZu-qVByY,1149440
137
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=t25lp4DnirQhVJUnwVS_QsZo6wzPKaDUtHR3gzev9PY,1150464
138
138
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=rAU2-TFzgta7mZBLhRFZ-zglSmiOID4CeUvZlsfgBbs,93696
139
139
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=yklb9shrfwktYkkoEBmFqUFTLRSdzYrP6hcPilO-iFA,26224
140
140
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=iepZXMsf0ThEgMHjC9SHySr10G07BvKVMj7_YBrNkBk,427112
@@ -342,8 +342,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
342
342
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
343
343
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
344
344
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
345
- aspose_gis_net-25.5.0.dist-info/METADATA,sha256=Iv-_G0gHKhFi3JjAcm7DVUVV05QJS_MRI5csIDnL0jo,13714
346
- aspose_gis_net-25.5.0.dist-info/WHEEL,sha256=KrVDKVigj527zHYfIMw7ZX5PorjHxPIDW5Iz7Z5Koz0,106
347
- aspose_gis_net-25.5.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
348
- aspose_gis_net-25.5.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
349
- aspose_gis_net-25.5.0.dist-info/RECORD,,
345
+ aspose_gis_net-25.6.0.dist-info/METADATA,sha256=6rxN7CrTuvucH5jAfwJeA7qHPGg9TnCqcDTKfguFmdI,13714
346
+ aspose_gis_net-25.6.0.dist-info/WHEEL,sha256=KrVDKVigj527zHYfIMw7ZX5PorjHxPIDW5Iz7Z5Koz0,106
347
+ aspose_gis_net-25.6.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
348
+ aspose_gis_net-25.6.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
349
+ aspose_gis_net-25.6.0.dist-info/RECORD,,