aspose-gis-net 25.5.0__py3-none-manylinux1_x86_64.whl → 25.7.0__py3-none-manylinux1_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.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/gis/formats/xyztile/__init__.pyi +23 -0
- aspose/gis/geotools/__init__.pyi +27 -0
- aspose/gis.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-39-x86_64-linux-gnu.so +0 -0
- {aspose_gis_net-25.5.0.dist-info → aspose_gis_net-25.7.0.dist-info}/METADATA +1 -1
- {aspose_gis_net-25.5.0.dist-info → aspose_gis_net-25.7.0.dist-info}/RECORD +18 -18
- {aspose_gis_net-25.5.0.dist-info → aspose_gis_net-25.7.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.5.0.dist-info → aspose_gis_net-25.7.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-25.5.0.dist-info → aspose_gis_net-25.7.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
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.'''
|
aspose/gis/geotools/__init__.pyi
CHANGED
|
@@ -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.
|
|
3
|
+
Version: 25.7.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=
|
|
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=
|
|
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-x86_64-linux-gnu.so,sha256=
|
|
96
|
-
aspose/gis.cpython-311-x86_64-linux-gnu.so,sha256=
|
|
97
|
-
aspose/gis.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
98
|
-
aspose/gis.cpython-313-x86_64-linux-gnu.so,sha256=
|
|
99
|
-
aspose/gis.cpython-35m-x86_64-linux-gnu.so,sha256=
|
|
100
|
-
aspose/gis.cpython-36m-x86_64-linux-gnu.so,sha256=
|
|
101
|
-
aspose/gis.cpython-37m-x86_64-linux-gnu.so,sha256=
|
|
102
|
-
aspose/gis.cpython-38-x86_64-linux-gnu.so,sha256=
|
|
103
|
-
aspose/gis.cpython-39-x86_64-linux-gnu.so,sha256=
|
|
95
|
+
aspose/gis.cpython-310-x86_64-linux-gnu.so,sha256=O6D3zOLdqD5qelqZM2R1mtSYe1DaA5c-6M7D-OIddNc,10849520
|
|
96
|
+
aspose/gis.cpython-311-x86_64-linux-gnu.so,sha256=MmKR8hf2R9zumVQ3FRYM2FT1r7nZglyOQD195gJmyRM,10857776
|
|
97
|
+
aspose/gis.cpython-312-x86_64-linux-gnu.so,sha256=2xVNELJVwLY7AgDQCLNS4GsSJ8EUpuxQmL1GaF_PFdQ,10959848
|
|
98
|
+
aspose/gis.cpython-313-x86_64-linux-gnu.so,sha256=XQlqDFudEAW4WWAXxfQ70BFg3q15KbUPewdAl8fkZwo,10959848
|
|
99
|
+
aspose/gis.cpython-35m-x86_64-linux-gnu.so,sha256=BhYuRiESjZLUBflFPJKqdYk6sJcOyTAzr230yLTS45U,10959264
|
|
100
|
+
aspose/gis.cpython-36m-x86_64-linux-gnu.so,sha256=NiknVJPZtZaqEybobXEDKf3VZKppEWwGDIf97nrKxjM,10955168
|
|
101
|
+
aspose/gis.cpython-37m-x86_64-linux-gnu.so,sha256=PB2HHJVseVFEP8otsPyN6JZBdjGl6HAmUJRR1zWeSb0,10955128
|
|
102
|
+
aspose/gis.cpython-38-x86_64-linux-gnu.so,sha256=KAZn54anelall1XRWUbyhws4I8f9x068BcvqSyXeYcw,10849472
|
|
103
|
+
aspose/gis.cpython-39-x86_64-linux-gnu.so,sha256=xCJxOMHQzsmKYIjrXgd3Fp9zTwKphsQTV7sd8IBnqio,10849536
|
|
104
104
|
aspose/pycore.cpython-310-x86_64-linux-gnu.so,sha256=MJJqnWv03T03alL5kuR3hNRVpZdVCJgrAVPTkVdggfM,171072
|
|
105
105
|
aspose/pycore.cpython-311-x86_64-linux-gnu.so,sha256=BzFQggLQGVyx8UOyd6ELT4QD1pjU-WMu_90jTqqLHrM,171072
|
|
106
106
|
aspose/pycore.cpython-312-x86_64-linux-gnu.so,sha256=a0pLDspwtQSNk32pVByyHuH_vDUIz7sQkBFc1_ldubs,171032
|
|
@@ -148,12 +148,12 @@ aspose/pyreflection.cpython-38-x86_64-linux-gnu.so,sha256=ff2CzzjYLyo4TYPElZXxzY
|
|
|
148
148
|
aspose/pyreflection.cpython-39-x86_64-linux-gnu.so,sha256=ejlT4FnfrWlL6XGOcQhb1DAWTrEuVTgpHlqHboILRo8,666496
|
|
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=
|
|
151
|
+
aspose/assemblies/gis/Aspose.GIS.dll,sha256=N0DnsvqL1JQaVjhbXzpfZbLiec8sAb8s0WSf0EKKyaU,15636160
|
|
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=
|
|
156
|
+
aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=zuNeAhsf4DDzJhe-54TZmRIV8S6GRiyj2TaHtRC_nNQ,1153024
|
|
157
157
|
aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=FpZww8Viow3BxyQptCxPKo7dVYTDqs5eL2_1aFi8_Wc,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.
|
|
372
|
-
aspose_gis_net-25.
|
|
373
|
-
aspose_gis_net-25.
|
|
374
|
-
aspose_gis_net-25.
|
|
375
|
-
aspose_gis_net-25.
|
|
371
|
+
aspose_gis_net-25.7.0.dist-info/METADATA,sha256=34WXmnHJBc1QKiIXoz-NMuQh-VRIlpYTDFoKzSbp-K0,13715
|
|
372
|
+
aspose_gis_net-25.7.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
|
|
373
|
+
aspose_gis_net-25.7.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
|
|
374
|
+
aspose_gis_net-25.7.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
|
|
375
|
+
aspose_gis_net-25.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|