aspose-gis-net 25.2.0__py3-none-manylinux1_x86_64.whl → 25.4.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
@@ -2683,6 +2683,8 @@ class PointFormats:
2683
2683
  '''The Maidenhead Locator System (a.k.a. QTH Locator and IARU Locator)'''
2684
2684
  UTM : PointFormats
2685
2685
  '''Universal Transverse Mercator'''
2686
+ UPS : PointFormats
2687
+ '''Universal polar stereographic coordinate system'''
2686
2688
 
2687
2689
  class SpatialReferenceSystemMode:
2688
2690
  '''Specifies a mode of Spatial Reference System (SRS) writing in database
@@ -153,6 +153,15 @@ class GmlDriver(aspose.gis.FileDriver):
153
153
  :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
154
154
  raise NotImplementedError()
155
155
 
156
+ @overload
157
+ def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.formats.gml.GmlOptions) -> aspose.gis.VectorLayer:
158
+ '''Creates a layer and opens it for adding new features.
159
+
160
+ :param path: Path to the file.
161
+ :param options: Driver-specific options.
162
+ :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
163
+ raise NotImplementedError()
164
+
156
165
  @overload
157
166
  def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.DriverOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
158
167
  '''Creates a layer and opens it for adding new features.
@@ -173,6 +182,16 @@ class GmlDriver(aspose.gis.FileDriver):
173
182
  :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
174
183
  raise NotImplementedError()
175
184
 
185
+ @overload
186
+ def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.formats.gml.GmlOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
187
+ '''Creates a layer and opens it for adding new features.
188
+
189
+ :param path: Path to the file.
190
+ :param options: Driver-specific options.
191
+ :param spatial_reference_system: Spatial reference system.
192
+ :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
193
+ raise NotImplementedError()
194
+
176
195
  @overload
177
196
  def create_layer(self, path : str) -> aspose.gis.VectorLayer:
178
197
  '''Creates the layer and opens it for appending.
@@ -528,6 +547,16 @@ class GmlOptions(aspose.gis.DriverOptions):
528
547
  Default is .'''
529
548
  raise NotImplementedError()
530
549
 
550
+ @property
551
+ def application_namespace(self) -> str:
552
+ '''This specifies a custom namespace to be used as the application namespace for generating the gml document.'''
553
+ raise NotImplementedError()
554
+
555
+ @application_namespace.setter
556
+ def application_namespace(self, value : str) -> None:
557
+ '''This specifies a custom namespace to be used as the application namespace for generating the gml document.'''
558
+ raise NotImplementedError()
559
+
531
560
  @property
532
561
  def restore_schema(self) -> bool:
533
562
  '''Determines whether Aspose.GIS is allowed to parse attributes in a Gml file in which an XML schema is missing or cannot be loaded.
@@ -163,6 +163,16 @@ class MapInfoInterchangeDriver(aspose.gis.FileDriver):
163
163
  :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
164
164
  raise NotImplementedError()
165
165
 
166
+ @overload
167
+ def create_layer(self, path : aspose.gis.AbstractPath, options : aspose.gis.formats.mapinfointerchange.MapInfoInterchangeOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
168
+ '''Creates a layer and opens it for adding new features.
169
+
170
+ :param path: Path to the file.
171
+ :param options: Driver-specific options.
172
+ :param spatial_reference_system: Spatial reference system.
173
+ :returns: An instance of :py:class:`aspose.gis.VectorLayer`.'''
174
+ raise NotImplementedError()
175
+
166
176
  @overload
167
177
  def create_layer(self, path : str, options : aspose.gis.formats.mapinfointerchange.MapInfoInterchangeOptions, spatial_reference_system : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> aspose.gis.VectorLayer:
168
178
  '''Creates a layer and opens it for adding new features.
@@ -498,4 +508,24 @@ class MapInfoInterchangeOptions(aspose.gis.DriverOptions):
498
508
  '''Specifies name of the attribute that represents text of \'Text\' graphical object.'''
499
509
  raise NotImplementedError()
500
510
 
511
+ @property
512
+ def delimiter(self) -> str:
513
+ '''Determines delimiter for attributes in mid file, by default is tab character'''
514
+ raise NotImplementedError()
515
+
516
+ @delimiter.setter
517
+ def delimiter(self, value : str) -> None:
518
+ '''Determines delimiter for attributes in mid file, by default is tab character'''
519
+ raise NotImplementedError()
520
+
521
+ @property
522
+ def charset(self) -> str:
523
+ '''Determines charset, by default is Neutral'''
524
+ raise NotImplementedError()
525
+
526
+ @charset.setter
527
+ def charset(self, value : str) -> None:
528
+ '''Determines charset, by default is Neutral'''
529
+ raise NotImplementedError()
530
+
501
531
 
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.2.0
3
+ Version: 25.4.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
@@ -81,7 +81,7 @@ The following table lists the vector formats that Aspose.GIS for Python can read
81
81
  | GeoJSON | .json, .geojson | ✔️ | ✔️ |
82
82
  | GeoJSON Seq | .json, .geojson | ✔️ | ✔️ |
83
83
  | ESRI File Geodatabase (FileGDB) | .gdb | ✔️ | ✔️ |
84
- | Geography Markup Language | .gml | ✔️ | |
84
+ | Geography Markup Language | .gml | ✔️ | ✔️ |
85
85
  | Keyhole Markup Language | .kml | ✔️ | ✔️ |
86
86
  | GPS Exchange Format | .gpx | ✔️ | ✔️ |
87
87
  | TopoJSON | .json, .topojson | ✔️ | ✔️ |
@@ -109,6 +109,7 @@ The following table lists the raster formats that Aspose.GIS for .NET can only r
109
109
  | Description | Format | Read |
110
110
  |---------------------|----------------------------|------|
111
111
  | Geo TIFF, TIFF | .tiff, .tif | ✔️ |
112
+ | Geo Big TIFF | .tiff, .tif | ✔️ |
112
113
  | Esri ASCII | .ascii | ✔️ |
113
114
  | World File | (.png, .jpg, .tiff) + .pgw | ✔️ |
114
115
 
@@ -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=ik92pi1qruKjlsYa_ChFRl8mbTQNz-5Pf5gdwykzS7U,120924
13
+ aspose/gis/__init__.pyi,sha256=D_Q3AnX5xav9JcD0iUpS6uY_4mvUzZ7z1UC3hdz3XcA,121005
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
@@ -39,14 +39,14 @@ aspose/gis/formats/gdal/__init__.pyi,sha256=SxLq0C5aZEwHDaXuNk4Fa83aIQEpjCiNPZ-G
39
39
  aspose/gis/formats/geojson/__init__.pyi,sha256=w5dZAObAQ15eod-Yr6tsT8-8_OGiJB9cP_81FkupCVE,26726
40
40
  aspose/gis/formats/geojsonseq/__init__.pyi,sha256=ZUQiNjO6kVR31H8TUmHkyUpA_5ATjnbf6I7Xa-t2JTg,24550
41
41
  aspose/gis/formats/geotiff/__init__.pyi,sha256=EIxEMtxt192QzGdLYb2h4P7bJ1J5wI50ixSuLlutrb4,12834
42
- aspose/gis/formats/gml/__init__.pyi,sha256=9-rzY9HQjNZdRNzIQtZNqz0pOc8QUug7dQxRsh_4YMk,24036
42
+ aspose/gis/formats/gml/__init__.pyi,sha256=_8EDSryd5al1rUATSvqDulU5TbMs3OS5TFap7nvmvi4,25498
43
43
  aspose/gis/formats/gpx/__init__.pyi,sha256=W6Hur2e4NAb_EhES6AvJki8iwBIOcKzzcGAjxvml8eA,24087
44
44
  aspose/gis/formats/infile/__init__.pyi,sha256=HHQP2r0h190BOhngN5oNnWff5FDtDY-U5ntNi2GauUM,24888
45
45
  aspose/gis/formats/inmemory/__init__.pyi,sha256=dS7QBUrZd5IjFXDNKbhNv1W7ZruOK32bz8-TFv9_5Qw,13478
46
46
  aspose/gis/formats/jpegw/__init__.pyi,sha256=g3P0-asLnkXjLLWJE32XEIH8cJwuMig_1QBND5H5Kys,4817
47
47
  aspose/gis/formats/kml/__init__.pyi,sha256=Tda2-rcyneiiSx-y7-jpgIw5WdAfJTJoDR1X7HI0vfw,24053
48
48
  aspose/gis/formats/kml/styles/__init__.pyi,sha256=IFD0YFpMsg0icCnktJBtC0mOpuI0PR8cKvOgwx6Tpbs,25626
49
- aspose/gis/formats/mapinfointerchange/__init__.pyi,sha256=KoMe1AOBlHgZEWDktKSuyAi0L_B_W6jO9n-IN3M31XA,21952
49
+ aspose/gis/formats/mapinfointerchange/__init__.pyi,sha256=O-N173HZP1BNlALCXhWXjnl2SoocVxnCj-uOrC9ClZs,23230
50
50
  aspose/gis/formats/mapinfotab/__init__.pyi,sha256=n77JkSfAtRKMU-tUqun7v3GUJLiCFpTPJg3q8CPo6mM,23178
51
51
  aspose/gis/formats/osmxml/__init__.pyi,sha256=FyiiVekxwGBmiglBet5yZbUppDaqcCgUhLOp7ARfFDM,23916
52
52
  aspose/gis/formats/pngw/__init__.pyi,sha256=Ghi3Is0YmQ6dmg2xIx9EzLMGEP52trlErjqPeJb4WH4,4819
@@ -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=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
95
+ aspose/gis.cpython-310-x86_64-linux-gnu.so,sha256=PgE_1luOpTh4h0V02Vk0Nq4q1eEzuuRieWBvZZbzSR0,10844368
96
+ aspose/gis.cpython-311-x86_64-linux-gnu.so,sha256=XB8WY-77wF0ZmWPwS5fgG4NRC_AYKCbNxz1aK0vRt1E,10852560
97
+ aspose/gis.cpython-312-x86_64-linux-gnu.so,sha256=fcWwOiRkJea9aXlpMlPakM5ndcwsjzdAK4Tp4rkhNlc,10950456
98
+ aspose/gis.cpython-313-x86_64-linux-gnu.so,sha256=Gq0_nFRydNsaNxDJlz8Lebo_YLFo-yzHOJaF0RYEAGI,10950456
99
+ aspose/gis.cpython-35m-x86_64-linux-gnu.so,sha256=f83LzoShkW_tTq_88furMbyQ_RpBKWqL5Er4ZNnNzTM,10950256
100
+ aspose/gis.cpython-36m-x86_64-linux-gnu.so,sha256=AETVQCMBeZkyXqmUUX_7w_YWU7WAXPaJbD1l13MpYqg,10950256
101
+ aspose/gis.cpython-37m-x86_64-linux-gnu.so,sha256=RLJraP_mSF_wT00wsyLQK62slim80ycui6Yb22pqgHU,10950216
102
+ aspose/gis.cpython-38-x86_64-linux-gnu.so,sha256=S8tXcDGyKhDyI_tTUApvOro7M8t2jRDhi7z16OJpP-w,10844352
103
+ aspose/gis.cpython-39-x86_64-linux-gnu.so,sha256=BTebWrv9SHc4AjlDFyed5dqWooZwXxCCdSu8ocAT7us,10844384
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,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=NDjsa3nPtyLn3IYq8n6Cw1-ReoONxbkS6ARdv4BLbGw,7998648
151
+ aspose/assemblies/gis/Aspose.GIS.dll,sha256=m7r6sGDo1Z3j0fnqRpWvBgLJaRl4PbWQuhiM-DubEVY,15628480
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=Qe0fKHhW8qUu-JSUom8hlj_oUwoQ8-EoohrflvNOja8,1150464
155
+ aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=0lXJynN5sZIiGByPT18k6ZwlG1Qd5975dAFL-QOyDpY,1152000
156
157
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=FpZww8Viow3BxyQptCxPKo7dVYTDqs5eL2_1aFi8_Wc,93696
157
158
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=QV6B1p_dQJO7qHvPN0JZr5UKKFp-s9zZSnViNcpgVN8,27528
158
159
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=-Jy68TM39pwgsw9ojLHIK5U-YBC2a81c9yMGYaqXd48,419720
@@ -367,8 +368,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
367
368
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
368
369
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
369
370
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
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,,
371
+ aspose_gis_net-25.4.0.dist-info/METADATA,sha256=OIMhyz2APxx3zXNY3GBsK6vafo3jicWvc12OnM60z8o,13715
372
+ aspose_gis_net-25.4.0.dist-info/WHEEL,sha256=-kQi_VMfvRQozZJT7HUPMfY-5vLo0LVTmAylNJ3Ft98,106
373
+ aspose_gis_net-25.4.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
374
+ aspose_gis_net-25.4.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
375
+ aspose_gis_net-25.4.0.dist-info/RECORD,,