aspose-gis-net 25.5.0__py3-none-macosx_10_14_x86_64.whl → 25.6.0__py3-none-macosx_10_14_x86_64.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=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,15 +92,15 @@ 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=WLm_xyV_UWwZw1B2v1K26J0dDjG13GQ89WtS37cYD8Q,8452392
96
- aspose/gis.cpython-311-darwin.so,sha256=2gJvswleEenGLtPV3OCMGF5h67-d-bIZLMj2klqVYbA,8452384
97
- aspose/gis.cpython-312-darwin.so,sha256=JTI7XZLx1OQxV71ubXlhnlxFbi3mRPXrfie2KIpEn3A,8469096
98
- aspose/gis.cpython-313-darwin.so,sha256=LlT7MeWJsXCoJ11N11JoPzYrVoUEHJLdshMC-FS56m8,8469096
99
- aspose/gis.cpython-35m-darwin.so,sha256=MXGaqp7FszFMIHUjvXLe8I5DiRLo5lxx835_J6C4cn4,8484912
100
- aspose/gis.cpython-36m-darwin.so,sha256=r8Uad_pvmlttZ10k2jsV2rLjrHt6N_OVZLY5qjJfOxI,8468440
101
- aspose/gis.cpython-37m-darwin.so,sha256=ij1yvmTeSFCL3c5Ums62ovvA8mK1vlA4MA-g24BYcaU,8468392
102
- aspose/gis.cpython-38-darwin.so,sha256=73-wF6_Z5Kjcnd_tP__8KDqH_pUD2aUQMB90uV0Vbvk,8468664
103
- aspose/gis.cpython-39-darwin.so,sha256=BdTzW3jnKsFeTa4gMOr98UDqzXz6oXBGdbqHInCpfU0,8452408
95
+ aspose/gis.cpython-310-darwin.so,sha256=_Jvc7d9VgA5bWsBYKGL0k3nbCG59rlw6HdpeMeS7K_8,8453696
96
+ aspose/gis.cpython-311-darwin.so,sha256=f97Vg5i0oc3X_V_pppxHO_ICbqs7HNqrs6lXKUlYDDQ,8453688
97
+ aspose/gis.cpython-312-darwin.so,sha256=nt8Trw5LuJF0MsHjvC4TELQ109j4OuaGCVHkBLnR8Ls,8486840
98
+ aspose/gis.cpython-313-darwin.so,sha256=4hTEb7X_nZZcaEZvDQi9_lQPBog_UU5Hp07fg9xcDcw,8486840
99
+ aspose/gis.cpython-35m-darwin.so,sha256=lecz2v6coXUC-TXY4X1-aoHrXnecQ8wBPEkleDDmsCM,8486560
100
+ aspose/gis.cpython-36m-darwin.so,sha256=LFo3X7xjQG7McDHmWjd24aiQsWmKsEZmz-45UPLtO9I,8486560
101
+ aspose/gis.cpython-37m-darwin.so,sha256=jGqGcPg3MzRw0FJZeB25gwsLmny42qFF52XG2Tv_G6c,8486168
102
+ aspose/gis.cpython-38-darwin.so,sha256=cnbMx197R66slsD5ujsZXrlziPtcI8bdSBr75HjA8wM,8469960
103
+ aspose/gis.cpython-39-darwin.so,sha256=XgrmQkgf-81r5WZ765fB9cmqrqQFoLkoTb1Hf4ZPckw,8453720
104
104
  aspose/pycore.cpython-310-darwin.so,sha256=N-IwaKGdeLmrl7Ye_Bx6bQZyv-hA2w3w7IP1oSYo3Ak,153712
105
105
  aspose/pycore.cpython-311-darwin.so,sha256=UlVOD36Im-oqmcLOcRIrdcUkSeZhFxwTsOMZAIrZLzQ,153712
106
106
  aspose/pycore.cpython-312-darwin.so,sha256=gx2pwSPhleSfXPeNbdOi8ysA122stTdlyVdrBglrq2I,153632
@@ -148,12 +148,12 @@ aspose/pyreflection.cpython-38-darwin.so,sha256=HHNnsw74LmeAYLiCF8WqUt67U7vGndnq
148
148
  aspose/pyreflection.cpython-39-darwin.so,sha256=d1ZDWI26wCTchhAu-hSwXu3Kp47Nil5pJOt741Rf2DM,553112
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=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
153
153
  aspose/assemblies/gis/Newtonsoft.Json.dll,sha256=AmjYhRYDXrZ4UeFf6lvSeHEA5V9O1qnItDSf6TPDkyk,639488
154
154
  aspose/assemblies/gis/System.Drawing.Common.dll,sha256=-Jy68TM39pwgsw9ojLHIK5U-YBC2a81c9yMGYaqXd48,419720
155
155
  aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=hUhWNw08wErl7k8ScaoIKsOYbVij_oK3dCXTRocpqeQ,1149440
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=FQ_pWB3lyrhXvHP-Jf-8M2fIpSfd1ht0oOSBgT5BIyU,1150464
157
157
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=7wJOTbkxq9Fd7Ye_5FaSNenZJweFAmME4EOJT8DnblA,93696
158
158
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
159
159
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=-Jy68TM39pwgsw9ojLHIK5U-YBC2a81c9yMGYaqXd48,419720
@@ -368,8 +368,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
368
368
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
369
369
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
370
370
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
371
- aspose_gis_net-25.5.0.dist-info/METADATA,sha256=JMIuC_ZsUFt1DuwnZh6ZJozQxuJgSm4Ov53_LUPQg4Y,13715
372
- aspose_gis_net-25.5.0.dist-info/WHEEL,sha256=uMFPvbqGJBpI5p-eaYOqcqW2UGzjFgeJB5sHdeYTqGs,108
373
- aspose_gis_net-25.5.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
374
- aspose_gis_net-25.5.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
375
- aspose_gis_net-25.5.0.dist-info/RECORD,,
371
+ aspose_gis_net-25.6.0.dist-info/METADATA,sha256=EM6UCj7z4rJHOs-Xms8q9Gh2abCF9O6D2n-8FPiT3-I,13715
372
+ aspose_gis_net-25.6.0.dist-info/WHEEL,sha256=uMFPvbqGJBpI5p-eaYOqcqW2UGzjFgeJB5sHdeYTqGs,108
373
+ aspose_gis_net-25.6.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
374
+ aspose_gis_net-25.6.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
375
+ aspose_gis_net-25.6.0.dist-info/RECORD,,