aspose-gis-net 24.12.0__py3-none-win_amd64.whl → 25.2.0__py3-none-win_amd64.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=dVelGTNzwCXq4bcqGZDVG-FK5pH9XxlAMcZFWvcO4PM,114909
13
+ aspose/gis/__init__.pyi,sha256=99-SCgk511HY3UEIymTSjq4hs55EAv4CbB3yMWrwwzY,123612
14
14
  aspose/gis/common/__init__.pyi,sha256=5IGAarPHjbd9yP1mLiRUl8rztMnPdy-tly-7vXI5YvU,29975
15
15
  aspose/gis/common/formats/__init__.pyi,sha256=TFqSBUVMWolneNTqq1-Ve6uxZgaTVAb-a7u9Ib9WmjA,3478
16
16
  aspose/gis/common/formats/dbase/__init__.pyi,sha256=pEpb3nTt6gfxKSwDac8GTSl1_cQXgqnofZljjtGIkTk,8833
@@ -92,15 +92,15 @@ aspose/gis/topology/algorithms/__init__.pyi,sha256=yg3RRtZt8Z1z2SIeW0b3DCbfNE-FQ
92
92
  aspose/gis/topology/buffer/__init__.pyi,sha256=4WzhFE9dDkfKKoQ1k5A_mufK2jxOb-XxWz0x70f_56A,7570
93
93
  aspose/gis/topology/graph/__init__.pyi,sha256=ujFNMyO7MASVdGbyns5GDuFeDKyVm8K6Z7YK1SuO2w8,11222
94
94
  aspose/__init__.py,sha256=BZzm7zoBt2MkmKtNe7cyCVeUKSx7QjTyZke3W5jbaAE,3188
95
- aspose/gis.cp310-win_amd64.pyd,sha256=wk4OoRMnhpuIzkp84fG5hTEpe9ur7nPOLPef3Tbqxx0,4371456
96
- aspose/gis.cp311-win_amd64.pyd,sha256=Ud0hjtOtr_2hEtlZ-Cv_8d6UNybbT9RgBCpOkqO9XLo,4371968
97
- aspose/gis.cp312-win_amd64.pyd,sha256=c5Ip9ejXyaIbYnPtJSAsPjU27stW5Ml--tCCZigZ_l4,4417536
98
- aspose/gis.cp313-win_amd64.pyd,sha256=e5HlXXBmmvXFPvvn-KSm4GKlp-xP_Iil9hmc2Ip9NXk,4418048
99
- aspose/gis.cp35-win_amd64.pyd,sha256=0O48Yw3UsOrFh4TMA7UL0DYVHmDbDCiw5DtUqFJ9ylA,4402688
100
- aspose/gis.cp36-win_amd64.pyd,sha256=lq5DPISQnplTKNupcMp6fzTjHusZhEg8NXEA2hDHFFc,4402688
101
- aspose/gis.cp37-win_amd64.pyd,sha256=TANJdj_o3WQzuSHIuIqptJWXc9vhuetf9G-BNR9Bn_g,4398080
102
- aspose/gis.cp38-win_amd64.pyd,sha256=7w-XZxTEb9PB-CJqKXkrNTlylBesQfS1iPQid6kSVOA,4381696
103
- aspose/gis.cp39-win_amd64.pyd,sha256=Ht6vcRmwjqNaioROO8kiBNOv8jfU_g5PlJSLyCIVvRc,4380160
95
+ aspose/gis.cp310-win_amd64.pyd,sha256=AKhU4wnQGvKM_e3IwLNGgzaMbvHD41iNG2IkmiXer4k,4382208
96
+ aspose/gis.cp311-win_amd64.pyd,sha256=VQbCr3xTpGOgYPq0i0HYWDbwKxEGnYglumAT1-Fc4gI,4382208
97
+ aspose/gis.cp312-win_amd64.pyd,sha256=6b2xHzXdrkuv6mmaJ4ea8E9Qn62k61ZIA7iw8RY47ko,4428800
98
+ aspose/gis.cp313-win_amd64.pyd,sha256=p6iHY_gopl3RHaJ-UvKfoCk79e7-KEmPOy3N4erzsyk,4428800
99
+ aspose/gis.cp35-win_amd64.pyd,sha256=GGHcWoWEb7UiPvDbM7IL-w8F4xenazq6JwbbitsfhcQ,4412928
100
+ aspose/gis.cp36-win_amd64.pyd,sha256=85a7rrMBLJljRk8ktH1t4o-xFDm50B-wW3M0TvOdOEo,4412928
101
+ aspose/gis.cp37-win_amd64.pyd,sha256=1xCHW0dDx7NFtC8egjk2qtIjanmCiL7WfU7c69lgzsk,4408320
102
+ aspose/gis.cp38-win_amd64.pyd,sha256=uKte3nu2F02jk4vM4T2c2IrFux18nAmeMa8gT0_YLeU,4391936
103
+ aspose/gis.cp39-win_amd64.pyd,sha256=uHdfZBXx3px2x4ouY48khWZfry4rORhU4xnhwx188EQ,4390400
104
104
  aspose/pycore.cp310-win_amd64.pyd,sha256=k5cqZt-xjBQ9QU8EbhLjAbCFdfny9wvTY5b2Gd6TL8s,118784
105
105
  aspose/pycore.cp311-win_amd64.pyd,sha256=kmSLHnfsVpGaV1SHtPi9MBFmlS0X1VS3BrFE7t2SLa8,118784
106
106
  aspose/pycore.cp312-win_amd64.pyd,sha256=waRQwJ_siUrCNpXYR-agW5rnnWc8-Qaqk22k05ZGcow,119296
@@ -148,11 +148,11 @@ aspose/pyreflection.cp38-win_amd64.pyd,sha256=BwJqP43uCffVYHJnq8ZtektRaIOuJcLbwM
148
148
  aspose/pyreflection.cp39-win_amd64.pyd,sha256=8hFE1GJmsPIDwMo2Q5Vm4oLkGfSt6Fi_TgDRtayzX74,322048
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=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
153
153
  aspose/assemblies/gis/Newtonsoft.Json.dll,sha256=AmjYhRYDXrZ4UeFf6lvSeHEA5V9O1qnItDSf6TPDkyk,639488
154
154
  aspose/assemblies/gis/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
155
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=UZurDXk42xau7zT5lR-xsr1ptKnz91eVRjo_NCjnYho,1143808
155
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=idUPaEWzuY07DKNO4qNunRt0yodZVlwBRaPRZl4KohU,1147904
156
156
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=CEDKvNDovmshtGxX5OD9N5LPqiiaGw2LjaowBXiZ_To,93696
157
157
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
158
158
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
@@ -401,8 +401,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
401
401
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
402
402
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
403
403
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
404
- aspose_gis_net-24.12.0.dist-info/METADATA,sha256=qwz3fYXWH-UzWx4hFAI8rAkap6Na5BjeRLazhafr6ZA,13919
405
- aspose_gis_net-24.12.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
406
- aspose_gis_net-24.12.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
407
- aspose_gis_net-24.12.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
408
- aspose_gis_net-24.12.0.dist-info/RECORD,,
404
+ aspose_gis_net-25.2.0.dist-info/METADATA,sha256=SQnfYWCm4E7L-cIUSgkTT8ImrbC2Rc7yFvz5On8870E,13918
405
+ aspose_gis_net-25.2.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
406
+ aspose_gis_net-25.2.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
407
+ aspose_gis_net-25.2.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
408
+ aspose_gis_net-25.2.0.dist-info/RECORD,,