aspose-gis-net 24.12.0__py3-none-macosx_10_14_x86_64.whl → 25.2.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.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/gis/__init__.pyi +162 -0
- aspose/gis.cpython-310-darwin.so +0 -0
- aspose/gis.cpython-311-darwin.so +0 -0
- aspose/gis.cpython-312-darwin.so +0 -0
- aspose/gis.cpython-313-darwin.so +0 -0
- aspose/gis.cpython-35m-darwin.so +0 -0
- aspose/gis.cpython-36m-darwin.so +0 -0
- aspose/gis.cpython-37m-darwin.so +0 -0
- aspose/gis.cpython-38-darwin.so +0 -0
- aspose/gis.cpython-39-darwin.so +0 -0
- {aspose_gis_net-24.12.0.dist-info → aspose_gis_net-25.2.0.dist-info}/METADATA +1 -1
- {aspose_gis_net-24.12.0.dist-info → aspose_gis_net-25.2.0.dist-info}/RECORD +17 -17
- {aspose_gis_net-24.12.0.dist-info → aspose_gis_net-25.2.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-24.12.0.dist-info → aspose_gis_net-25.2.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-24.12.0.dist-info → aspose_gis_net-25.2.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
aspose/gis/__init__.pyi
CHANGED
|
@@ -1357,6 +1357,38 @@ class FeaturesSequence:
|
|
|
1357
1357
|
:returns: Features with attribute value greater or equal to the provided value.'''
|
|
1358
1358
|
raise NotImplementedError()
|
|
1359
1359
|
|
|
1360
|
+
def where_smaller(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
1361
|
+
'''Selects features with attribute value smaller than the provided value.
|
|
1362
|
+
|
|
1363
|
+
:param attribute_name: Attribute to filter by.
|
|
1364
|
+
:param value: Value to compare against.
|
|
1365
|
+
:returns: Features with attribute value smaller than the provided value.'''
|
|
1366
|
+
raise NotImplementedError()
|
|
1367
|
+
|
|
1368
|
+
def where_smaller_or_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
1369
|
+
'''Selects features with attribute value smaller or equal to the provided value.
|
|
1370
|
+
|
|
1371
|
+
:param attribute_name: Attribute to filter by.
|
|
1372
|
+
:param value: Value to compare against.
|
|
1373
|
+
:returns: Features with attribute value smaller or equal to the provided value.'''
|
|
1374
|
+
raise NotImplementedError()
|
|
1375
|
+
|
|
1376
|
+
def where_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
1377
|
+
'''Selects features with attribute value equal to the provided value.
|
|
1378
|
+
|
|
1379
|
+
:param attribute_name: Attribute to filter by.
|
|
1380
|
+
:param value: Value to compare against.
|
|
1381
|
+
:returns: Features with attribute value equal to the provided value.'''
|
|
1382
|
+
raise NotImplementedError()
|
|
1383
|
+
|
|
1384
|
+
def where_not_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
1385
|
+
'''Selects features with attribute value not equal to the provided value.
|
|
1386
|
+
|
|
1387
|
+
:param attribute_name: Attribute to filter by.
|
|
1388
|
+
:param value: Value to compare against.
|
|
1389
|
+
:returns: Features with attribute value not equal to the provided value.'''
|
|
1390
|
+
raise NotImplementedError()
|
|
1391
|
+
|
|
1360
1392
|
def where_null(self, attribute_name : str) -> aspose.gis.FeaturesSequence:
|
|
1361
1393
|
'''Selects features with attribute equal to null.
|
|
1362
1394
|
|
|
@@ -1739,6 +1771,96 @@ class Metered:
|
|
|
1739
1771
|
raise NotImplementedError()
|
|
1740
1772
|
|
|
1741
1773
|
|
|
1774
|
+
class MultiStreamPath(AbstractPath):
|
|
1775
|
+
'''This class works with formats which contains several files.'''
|
|
1776
|
+
|
|
1777
|
+
@staticmethod
|
|
1778
|
+
def from_local_path(path : str) -> aspose.gis.AbstractPath:
|
|
1779
|
+
'''Creates an :py:class:`aspose.gis.AbstractPath` that represents a location on the local filesystem.
|
|
1780
|
+
|
|
1781
|
+
:param path: A path on the local filesystem, like ``"C:\\file.shp"`` or ``"D:\\directory\\"``.
|
|
1782
|
+
:returns: An :py:class:`aspose.gis.AbstractPath` that represents the location defined by the ``path``.'''
|
|
1783
|
+
raise NotImplementedError()
|
|
1784
|
+
|
|
1785
|
+
@staticmethod
|
|
1786
|
+
def from_stream(stream : io.RawIOBase) -> aspose.gis.AbstractPath:
|
|
1787
|
+
'''Creates an :py:class:`aspose.gis.AbstractPath` from a :py:class:`io.RawIOBase`.
|
|
1788
|
+
|
|
1789
|
+
:param stream: A stream to create an :py:class:`aspose.gis.AbstractPath` from. ``Aspose.GIS`` does not dispose the stream.
|
|
1790
|
+
:returns: An instance of :py:class:`aspose.gis.AbstractPath` with the specified :py:class:`io.RawIOBase` as its content.'''
|
|
1791
|
+
raise NotImplementedError()
|
|
1792
|
+
|
|
1793
|
+
def is_file(self) -> bool:
|
|
1794
|
+
'''Gets a value indicating whether this path points to an existing file that can be opened for reading.
|
|
1795
|
+
|
|
1796
|
+
:returns: if location points to a file; otherwise.'''
|
|
1797
|
+
raise NotImplementedError()
|
|
1798
|
+
|
|
1799
|
+
def delete(self) -> None:
|
|
1800
|
+
'''Deletes a file pointed to by this path.'''
|
|
1801
|
+
raise NotImplementedError()
|
|
1802
|
+
|
|
1803
|
+
def open(self, access : System.IO.FileAccess) -> io.RawIOBase:
|
|
1804
|
+
'''Abstracts a set of open streaming multi-file formats a path for accessing data.
|
|
1805
|
+
|
|
1806
|
+
:param access: Specifies a subset of operations that can be performed on a :py:class:`io.RawIOBase`.
|
|
1807
|
+
:returns: This can be either a :py:class:`System.IO.MemoryStream` or the stream originally passed by the client.'''
|
|
1808
|
+
raise NotImplementedError()
|
|
1809
|
+
|
|
1810
|
+
def list_directory(self) -> Iterable[aspose.gis.AbstractPath]:
|
|
1811
|
+
'''Returns paths located inside this ``AbstractPath``, if it\'s a directory.
|
|
1812
|
+
|
|
1813
|
+
:returns: Paths located inside this ``AbstractPath``.'''
|
|
1814
|
+
raise NotImplementedError()
|
|
1815
|
+
|
|
1816
|
+
def combine(self, location : str) -> aspose.gis.AbstractPath:
|
|
1817
|
+
'''Combines this :py:class:`aspose.gis.AbstractPath` with specified path components.
|
|
1818
|
+
|
|
1819
|
+
:param location: A path component to append to this :py:class:`aspose.gis.AbstractPath`.
|
|
1820
|
+
:returns: A new :py:class:`aspose.gis.AbstractPath` pointing to a :py:attr:`aspose.gis.AbstractPath.location` that is a combination of locations of this :py:class:`aspose.gis.AbstractPath` and
|
|
1821
|
+
the argument.'''
|
|
1822
|
+
raise NotImplementedError()
|
|
1823
|
+
|
|
1824
|
+
def with_extension(self, new_extension : str) -> aspose.gis.AbstractPath:
|
|
1825
|
+
'''Returns a new :py:class:`aspose.gis.AbstractPath` with the file extension changed to the specified value.
|
|
1826
|
+
|
|
1827
|
+
:param new_extension: A new extension.
|
|
1828
|
+
:returns: A new :py:class:`aspose.gis.AbstractPath`, that points to a file in the same directory, but with a new extension.'''
|
|
1829
|
+
raise NotImplementedError()
|
|
1830
|
+
|
|
1831
|
+
def get_file_name(self) -> str:
|
|
1832
|
+
'''Returns the file name and extension of this :py:class:`aspose.gis.AbstractPath`.
|
|
1833
|
+
|
|
1834
|
+
:returns: The characters after the last :py:attr:`aspose.gis.AbstractPath.separator` character in the :py:attr:`aspose.gis.AbstractPath.location`. If the
|
|
1835
|
+
last character is the :py:attr:`aspose.gis.AbstractPath.separator` character, an empty string is returned. If there is no
|
|
1836
|
+
:py:attr:`aspose.gis.AbstractPath.separator` characters in the :py:attr:`aspose.gis.AbstractPath.location`, the :py:attr:`aspose.gis.AbstractPath.location` itself
|
|
1837
|
+
is returned.'''
|
|
1838
|
+
raise NotImplementedError()
|
|
1839
|
+
|
|
1840
|
+
def get_file_name_without_extension(self) -> str:
|
|
1841
|
+
'''Returns the file name of this :py:class:`aspose.gis.AbstractPath` without the extension.
|
|
1842
|
+
|
|
1843
|
+
:returns: The string returned by :py:func:`aspose.gis.AbstractPath.get_file_name` minus the last period and all characters following it.'''
|
|
1844
|
+
raise NotImplementedError()
|
|
1845
|
+
|
|
1846
|
+
def get_extension(self) -> str:
|
|
1847
|
+
'''Returns the extension of this :py:class:`aspose.gis.AbstractPath`.
|
|
1848
|
+
|
|
1849
|
+
:returns: The extension of this :py:class:`aspose.gis.AbstractPath` (including the period ".") or
|
|
1850
|
+
an empty string if the :py:class:`aspose.gis.AbstractPath` has no extension.'''
|
|
1851
|
+
raise NotImplementedError()
|
|
1852
|
+
|
|
1853
|
+
@property
|
|
1854
|
+
def location(self) -> str:
|
|
1855
|
+
'''Gets a string representation of the location of this ``AbstractPath``.'''
|
|
1856
|
+
raise NotImplementedError()
|
|
1857
|
+
|
|
1858
|
+
@property
|
|
1859
|
+
def separator(self) -> str:
|
|
1860
|
+
'''Gets a separator character used to separate directory levels of the :py:attr:`aspose.gis.MultiStreamPath.location` string.'''
|
|
1861
|
+
raise NotImplementedError()
|
|
1862
|
+
|
|
1863
|
+
|
|
1742
1864
|
class NumericFormat:
|
|
1743
1865
|
''':py:class:`aspose.gis.NumericFormat` are used to format common numeric types in text.'''
|
|
1744
1866
|
|
|
@@ -2368,6 +2490,38 @@ class VectorLayer(FeaturesSequence):
|
|
|
2368
2490
|
:returns: Features with attribute value greater or equal to the provided value.'''
|
|
2369
2491
|
raise NotImplementedError()
|
|
2370
2492
|
|
|
2493
|
+
def where_smaller(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
2494
|
+
'''Selects features with attribute value smaller than the provided value.
|
|
2495
|
+
|
|
2496
|
+
:param attribute_name: Attribute to filter by.
|
|
2497
|
+
:param value: Value to compare against.
|
|
2498
|
+
:returns: Features with attribute value smaller than the provided value.'''
|
|
2499
|
+
raise NotImplementedError()
|
|
2500
|
+
|
|
2501
|
+
def where_smaller_or_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
2502
|
+
'''Selects features with attribute value smaller or equal to the provided value.
|
|
2503
|
+
|
|
2504
|
+
:param attribute_name: Attribute to filter by.
|
|
2505
|
+
:param value: Value to compare against.
|
|
2506
|
+
:returns: Features with attribute value smaller or equal to the provided value.'''
|
|
2507
|
+
raise NotImplementedError()
|
|
2508
|
+
|
|
2509
|
+
def where_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
2510
|
+
'''Selects features with attribute value equal to the provided value.
|
|
2511
|
+
|
|
2512
|
+
:param attribute_name: Attribute to filter by.
|
|
2513
|
+
:param value: Value to compare against.
|
|
2514
|
+
:returns: Features with attribute value equal to the provided value.'''
|
|
2515
|
+
raise NotImplementedError()
|
|
2516
|
+
|
|
2517
|
+
def where_not_equal(self, attribute_name : str, value : Any) -> aspose.gis.FeaturesSequence:
|
|
2518
|
+
'''Selects features with attribute value not equal to the provided value.
|
|
2519
|
+
|
|
2520
|
+
:param attribute_name: Attribute to filter by.
|
|
2521
|
+
:param value: Value to compare against.
|
|
2522
|
+
:returns: Features with attribute value not equal to the provided value.'''
|
|
2523
|
+
raise NotImplementedError()
|
|
2524
|
+
|
|
2371
2525
|
def where_null(self, attribute_name : str) -> aspose.gis.FeaturesSequence:
|
|
2372
2526
|
'''Selects features with attribute equal to null.
|
|
2373
2527
|
|
|
@@ -2521,6 +2675,14 @@ class PointFormats:
|
|
|
2521
2675
|
'''Military Grid Reference System with WGS 84 datum.'''
|
|
2522
2676
|
USNG : PointFormats
|
|
2523
2677
|
'''United States National Grid with WGS 84 datum.'''
|
|
2678
|
+
GARS : PointFormats
|
|
2679
|
+
'''Global Area Reference System'''
|
|
2680
|
+
PLUS_CODE : PointFormats
|
|
2681
|
+
'''The Open Location Code (OLC) or Plus Code'''
|
|
2682
|
+
MAIDENHEAD : PointFormats
|
|
2683
|
+
'''The Maidenhead Locator System (a.k.a. QTH Locator and IARU Locator)'''
|
|
2684
|
+
UTM : PointFormats
|
|
2685
|
+
'''Universal Transverse Mercator'''
|
|
2524
2686
|
|
|
2525
2687
|
class SpatialReferenceSystemMode:
|
|
2526
2688
|
'''Specifies a mode of Spatial Reference System (SRS) writing in database
|
aspose/gis.cpython-310-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-311-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-312-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-313-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-35m-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-36m-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-37m-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-38-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-39-darwin.so
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aspose-gis-net
|
|
3
|
-
Version:
|
|
3
|
+
Version: 25.2.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
|
|
@@ -10,7 +10,7 @@ aspose/pydrawing/drawing2d.pyi,sha256=vjT_Xf0asz8QHWsXjPVcxeASXI1bevNtbHUWv0pB5c
|
|
|
10
10
|
aspose/pydrawing/imaging.pyi,sha256=auXPFkCkxeEciS9nLkhLXwGm3OZZ__CRDuZePEJZDas,40846
|
|
11
11
|
aspose/pydrawing/printing.pyi,sha256=Vit9MnxUilfEyw2TS_PNxxH1NTBPG5yPBsyEtxeNSwQ,21169
|
|
12
12
|
aspose/pydrawing/text.pyi,sha256=03-Y8-4DrtyquN21aR1pHDYNLCqWEuF1Makw3Mj0Fkg,1229
|
|
13
|
-
aspose/gis/__init__.pyi,sha256=
|
|
13
|
+
aspose/gis/__init__.pyi,sha256=ik92pi1qruKjlsYa_ChFRl8mbTQNz-5Pf5gdwykzS7U,120924
|
|
14
14
|
aspose/gis/common/__init__.pyi,sha256=E7xycAFwtYti6ubJE8RxBypv6IGP23dlxJXdZKRJCoM,28955
|
|
15
15
|
aspose/gis/common/formats/__init__.pyi,sha256=94f-iikgeguhe--Dl2VZo0QlQ_8SfTCNqG5NJPDDKog,3388
|
|
16
16
|
aspose/gis/common/formats/dbase/__init__.pyi,sha256=qMV5HrW38OKvmja1Z5TWK2NmiopTyLGBce7WOuaPiUc,8591
|
|
@@ -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=
|
|
96
|
-
aspose/gis.cpython-311-darwin.so,sha256=
|
|
97
|
-
aspose/gis.cpython-312-darwin.so,sha256=
|
|
98
|
-
aspose/gis.cpython-313-darwin.so,sha256=
|
|
99
|
-
aspose/gis.cpython-35m-darwin.so,sha256
|
|
100
|
-
aspose/gis.cpython-36m-darwin.so,sha256=
|
|
101
|
-
aspose/gis.cpython-37m-darwin.so,sha256=
|
|
102
|
-
aspose/gis.cpython-38-darwin.so,sha256=
|
|
103
|
-
aspose/gis.cpython-39-darwin.so,sha256=
|
|
95
|
+
aspose/gis.cpython-310-darwin.so,sha256=RQr41k4J1MG1WqmmBN1BQLP7dD5cMs_irzLR1fawlYE,8450440
|
|
96
|
+
aspose/gis.cpython-311-darwin.so,sha256=RyrT5ME7WF0zsrzUz24nSpcpIvX3_giThA0lQrT-Ggs,8450424
|
|
97
|
+
aspose/gis.cpython-312-darwin.so,sha256=4lBKIkHSKir_v6Tu00OXhnDm-TJ_U-nvSMOwn3ZEDnA,8466512
|
|
98
|
+
aspose/gis.cpython-313-darwin.so,sha256=qWloBsnNYWlEfh4NAaGSJqXp8pU4ea80g4s1vccOtG4,8466512
|
|
99
|
+
aspose/gis.cpython-35m-darwin.so,sha256=-WF8bWDUc-pMvd_9QMHiv4ehecG0R63g5_9j-QlYyLs,8466216
|
|
100
|
+
aspose/gis.cpython-36m-darwin.so,sha256=PJbZvjQhURZq4IWfnSCOkLULeY7k1GTz_YHYDyPIUbg,8466216
|
|
101
|
+
aspose/gis.cpython-37m-darwin.so,sha256=6QhWZ3Ko_WfPUDuM151mqLoixhjG8oxzsLwSgG0O7uw,8466496
|
|
102
|
+
aspose/gis.cpython-38-darwin.so,sha256=tith4AvNdKmPMnzrX915nDsbGGAlxbhkZH9ERxLIHjc,8450336
|
|
103
|
+
aspose/gis.cpython-39-darwin.so,sha256=i3HsgiymjWhfzPfY64tox-r04-ZLZr-gU1CQ1fDo1xE,8450464
|
|
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,11 +148,11 @@ 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=
|
|
151
|
+
aspose/assemblies/gis/Aspose.GIS.dll,sha256=NDjsa3nPtyLn3IYq8n6Cw1-ReoONxbkS6ARdv4BLbGw,7998648
|
|
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
|
-
aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=
|
|
155
|
+
aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=uSzeSQoSgphU4ovcwuajBK6wGLX_6DnphrMp7L01YJc,1147904
|
|
156
156
|
aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=7wJOTbkxq9Fd7Ye_5FaSNenZJweFAmME4EOJT8DnblA,93696
|
|
157
157
|
aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
|
|
158
158
|
aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=-Jy68TM39pwgsw9ojLHIK5U-YBC2a81c9yMGYaqXd48,419720
|
|
@@ -367,8 +367,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
|
|
|
367
367
|
aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
|
|
368
368
|
aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
|
|
369
369
|
aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
|
|
370
|
-
aspose_gis_net-
|
|
371
|
-
aspose_gis_net-
|
|
372
|
-
aspose_gis_net-
|
|
373
|
-
aspose_gis_net-
|
|
374
|
-
aspose_gis_net-
|
|
370
|
+
aspose_gis_net-25.2.0.dist-info/METADATA,sha256=66c18d71km-6YEfBfjuLMFA_Q3H5fZrmQ2RKleccCb4,13647
|
|
371
|
+
aspose_gis_net-25.2.0.dist-info/WHEEL,sha256=uMFPvbqGJBpI5p-eaYOqcqW2UGzjFgeJB5sHdeYTqGs,108
|
|
372
|
+
aspose_gis_net-25.2.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
|
|
373
|
+
aspose_gis_net-25.2.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
|
|
374
|
+
aspose_gis_net-25.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|