aspose-gis-net 24.12.0__py3-none-manylinux1_x86_64.whl → 25.2.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.

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
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: 24.12.0
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=Hg0z2tZCYGZ8QIaIEWN-pGOxtyAG0V-CunRpdbnAJ-Y,112383
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-x86_64-linux-gnu.so,sha256=2fsk13qUjbNlpOMh8uQBhHyfW2gY0Tp52--XKkpXOvQ,10810696
96
- aspose/gis.cpython-311-x86_64-linux-gnu.so,sha256=HoLEPQnbRjygJLPdQdvAKlZlGkrtRonAoQAFM-lkPi0,10818880
97
- aspose/gis.cpython-312-x86_64-linux-gnu.so,sha256=HYEVVbwEllKFEE11lpSST46Pl4-Fgoef-RHQLDm6I0w,10916704
98
- aspose/gis.cpython-313-x86_64-linux-gnu.so,sha256=dsZPTXBbVy2FWE37WVTnpREwrXhXVL8RBS15RBJl7aY,10916704
99
- aspose/gis.cpython-35m-x86_64-linux-gnu.so,sha256=gehTjk3ujjXt2VPIZR8IRKOi2Ze-HbFpLE_Uc83DO5U,10916504
100
- aspose/gis.cpython-36m-x86_64-linux-gnu.so,sha256=7EYI4-vPm74hOAoaeuJULZgpC_YW1DbaukJ4ZlqSsDQ,10916504
101
- aspose/gis.cpython-37m-x86_64-linux-gnu.so,sha256=H_L1Xp6_wby8oGESLgjUq7DfLdDmz6GIj5Q7J7ArwMA,10916464
102
- aspose/gis.cpython-38-x86_64-linux-gnu.so,sha256=cw655bIPTdEd726hocGUT5Y7uwUwl46BA6WyTngdcYo,10810640
103
- aspose/gis.cpython-39-x86_64-linux-gnu.so,sha256=mtn2pwl4R7SI3RWDuqMiutyTCAxePoNIAyuRa9fnBZ8,10810712
95
+ aspose/gis.cpython-310-x86_64-linux-gnu.so,sha256=XGuGzoMC22NIxDvaVcNC0TJ6wU_3jHS8jbet08auNKs,10834544
96
+ aspose/gis.cpython-311-x86_64-linux-gnu.so,sha256=E7ynf8lDpDKXy8nWnpnBcr0g-78ciif7kNptGOmDMJE,10846824
97
+ aspose/gis.cpython-312-x86_64-linux-gnu.so,sha256=udfl4w2NxOqjZ8ERDwbdPOxKXo2RtAncLOs2wlrFsL0,10940560
98
+ aspose/gis.cpython-313-x86_64-linux-gnu.so,sha256=hBrZl-KzQSWEIK1q-pCj-34YjONYvmXEavSzHhaIzSw,10940560
99
+ aspose/gis.cpython-35m-x86_64-linux-gnu.so,sha256=MhNasDif_gyd86P_4MfWwVqpMeJjm5VuKU-6bInFK7o,10944456
100
+ aspose/gis.cpython-36m-x86_64-linux-gnu.so,sha256=8HmOXHsYKEXoHq7BYMyoF65OYnMOCjuiy8bc0TDnQGU,10944456
101
+ aspose/gis.cpython-37m-x86_64-linux-gnu.so,sha256=bkFRk9rxDLvDudS3tV6peJkZXXV2bSwvzwmGinCZDYw,10944416
102
+ aspose/gis.cpython-38-x86_64-linux-gnu.so,sha256=63kX9pXcaRbARBxIx6IbtLKXZ_R7v-te_iMi8V-SlCs,10834488
103
+ aspose/gis.cpython-39-x86_64-linux-gnu.so,sha256=_HeDiN4oYS6RWPwOIO98Dbp0h-W3DN7ecPMgqs-qitk,10834560
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,11 +148,11 @@ 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=o5k56hslqda4yom5ShEGzPThFCnJEqYgq7sRa9h4QQk,7988920
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=jjj2Ts6MHEPIr68qhAiGVsUKfjZy-9H0_sIpQLUo0cg,1146368
155
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=Qe0fKHhW8qUu-JSUom8hlj_oUwoQ8-EoohrflvNOja8,1150464
156
156
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=FpZww8Viow3BxyQptCxPKo7dVYTDqs5eL2_1aFi8_Wc,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-24.12.0.dist-info/METADATA,sha256=zuAwwjDa0oWszNdYnMsLJLZi56dNrZuq8GLv82nusqM,13648
371
- aspose_gis_net-24.12.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
372
- aspose_gis_net-24.12.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
373
- aspose_gis_net-24.12.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
374
- aspose_gis_net-24.12.0.dist-info/RECORD,,
370
+ aspose_gis_net-25.2.0.dist-info/METADATA,sha256=gz6If_3mB8ySWqUOqCszFaZaBaR3z9wQY0bdYLML2fM,13647
371
+ aspose_gis_net-25.2.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
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,,