aspose-gis-net 25.3.0__py3-none-win_amd64.whl → 25.5.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
@@ -343,4 +343,5 @@ class UnitId:
343
343
  LINK : UnitId
344
344
  CHAIN : UnitId
345
345
  ROD : UnitId
346
+ DEGREE : UnitId
346
347
 
@@ -132,6 +132,10 @@ class TabFileData:
132
132
  def table_encoding(self) -> str:
133
133
  raise NotImplementedError()
134
134
 
135
+ @property
136
+ def coordinate_system(self) -> aspose.gis.common.formats.mapinfo.CoordinateSystem:
137
+ raise NotImplementedError()
138
+
135
139
  @property
136
140
  def table_type(self) -> str:
137
141
  raise NotImplementedError()
@@ -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.
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.0
3
+ Version: 25.5.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
 
@@ -15,11 +15,11 @@ aspose/gis/common/__init__.pyi,sha256=5IGAarPHjbd9yP1mLiRUl8rztMnPdy-tly-7vXI5Yv
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
17
17
  aspose/gis/common/formats/gdbtable/__init__.pyi,sha256=3lBCWzLmd8eDJEL1389wfhO8vviU1oPJA_yobBhiveQ,28825
18
- aspose/gis/common/formats/mapinfo/__init__.pyi,sha256=mFvVteWbkVzFCE7-wk6qchgoiZnqSujYlF7CU-TS_II,9823
18
+ aspose/gis/common/formats/mapinfo/__init__.pyi,sha256=bj7Y8vxYpq_-nDKsstP5xkdorrGcAZ3lyuhFrlvpw_0,9844
19
19
  aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi,sha256=UMpoRRJ00ZMqvdHZZ-Ieel4Uq1ApRVUW8oK7N1k0y-4,21541
20
20
  aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi,sha256=1Eht9nvZxyasPEw24ZDdeCqjRhCm9Ubu64IiJWrwvSc,7332
21
21
  aspose/gis/common/formats/mapinfo/styling/__init__.pyi,sha256=MuHM9kTSki8Sczt_gtZzq9EwqYB6Goiioh0O5SYM2ks,5072
22
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi,sha256=yuiyoLH-xRaPotjIPaolbr8DFYFfSvw2vGUuZY6TobY,5070
22
+ aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi,sha256=xTP0_-aSj4kRPbx_vftslMgWn8ZJ4drti79kgnas9Rg,5216
23
23
  aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi,sha256=4vtQ3jYjdfPHmVobJrE4bb8rMbZc0u_OC0TBwY00xZE,12932
24
24
  aspose/gis/common/formats/wkb/__init__.pyi,sha256=27B_qdS18dGVSDGcKp3gy43scqCBRdXFz-vlmWfSiQE,3844
25
25
  aspose/gis/common/formats/wkt/__init__.pyi,sha256=F3jRb06bS9qgGWMHoPlXXyfYmvj_PVeoshFc0_y11D4,12842
@@ -39,7 +39,7 @@ aspose/gis/formats/gdal/__init__.pyi,sha256=XSoMTj5BZASjONBcyrYCHY3Be4NYdGmdsMlb
39
39
  aspose/gis/formats/geojson/__init__.pyi,sha256=6O_PUGAifqW_GgW4CiHwIQjFl_S7_qIx6incQemI-kk,27338
40
40
  aspose/gis/formats/geojsonseq/__init__.pyi,sha256=LhmfsRUGMBJr1yQwkeArkVfFYKfDTNc6KU8ytp19upU,25114
41
41
  aspose/gis/formats/geotiff/__init__.pyi,sha256=HCHSc1cvcNtG4GM2jv1rcprp7zy9kvgyE8_DtlErT0g,13118
42
- aspose/gis/formats/gml/__init__.pyi,sha256=2EDoGroTYcMAgVUAOBeBpVCKJdW5WMdyAcqDaLkt-3E,24573
42
+ aspose/gis/formats/gml/__init__.pyi,sha256=cOCKIi5bispLvFfQlutbwGylEX_3Xs54uHfyzQCqE2s,26064
43
43
  aspose/gis/formats/gpx/__init__.pyi,sha256=kNIhsRaMxu6HOxy9bmhSr9bvKPREbwvH3Ahk_XXU8hI,24622
44
44
  aspose/gis/formats/infile/__init__.pyi,sha256=YlXBkh87xqBSIIFyUZu9bYgA6BFapNa7AyQWbAM2ciY,25462
45
45
  aspose/gis/formats/inmemory/__init__.pyi,sha256=9N_Fd1VEpdmlH1o1WcnCd6oY2EoD-xb8S67xZeVKESg,13807
@@ -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=HPiGejO-XuX4wX-k-nBV-j33vVZHgVd5ZZep2IgKd1I,4382720
96
- aspose/gis.cp311-win_amd64.pyd,sha256=xy6e6B21nymMB-sD52cIiCCv5AGLr69EvpKyNbqe4kA,4382720
97
- aspose/gis.cp312-win_amd64.pyd,sha256=r1cnpn74Ns23IUefaq2qiFImRn2axCJnsqa1p81l0gM,4429312
98
- aspose/gis.cp313-win_amd64.pyd,sha256=xXcXeQ8DxE5hd2aUhoyG3rIqDTJ497ndwirWHXf6WP0,4429312
99
- aspose/gis.cp35-win_amd64.pyd,sha256=Ts1xgp-qFGe7m8NCez0r-4qDnbxE2HLECJYLxnYNh5Y,4413952
100
- aspose/gis.cp36-win_amd64.pyd,sha256=PVoqVrTLj8KPghhEAflKK4CHNorJpbj7nM6ODO3nWZM,4413952
101
- aspose/gis.cp37-win_amd64.pyd,sha256=HtPTMmSCmoYrPxRfMr74BDPBxKsqhC9bBtDnLc3RddM,4408832
102
- aspose/gis.cp38-win_amd64.pyd,sha256=Kt6SnKGs-IA-zXPgROLLiTFdEswtfy8eNrm6NkmmFco,4392448
103
- aspose/gis.cp39-win_amd64.pyd,sha256=TA27O0id-6t8YHClkWH5gFLfkK3KgNgU3U9BSlpfsU8,4390912
95
+ aspose/gis.cp310-win_amd64.pyd,sha256=70Enodlrvl1hRS6Tz1OrK9AvUM1YAJZhUIijMbtJt7Y,4383744
96
+ aspose/gis.cp311-win_amd64.pyd,sha256=VAySzrfFxmOVoYdlxxrOrULhzZ9jtL0UN-1x9WG6HAw,4384256
97
+ aspose/gis.cp312-win_amd64.pyd,sha256=Kh3d6dPPKryktxiSFjRZNf4jr5qR6tWmNGw-vSVvOSk,4430848
98
+ aspose/gis.cp313-win_amd64.pyd,sha256=GtHdycMof76cAr4ezoqcKCr7BEegHYHdO4egE47aa7I,4430848
99
+ aspose/gis.cp35-win_amd64.pyd,sha256=mPL8L6GWop8S8SuN0GC6KT7OZWSV0wh4OJJ54Tg2sNk,4416000
100
+ aspose/gis.cp36-win_amd64.pyd,sha256=WGkGr0sRuG9ehXw1nObdLulbhj_1y_jC5siOsz1dF_Y,4416000
101
+ aspose/gis.cp37-win_amd64.pyd,sha256=DJqk9sdGZiPcpUSj0fxI3NLsqrSXsCkJYjoJI3jUY8Q,4411392
102
+ aspose/gis.cp38-win_amd64.pyd,sha256=4OEFvNiAQr5_YkuvK53L9e3doIPVWSsnJmbjPCxeAdI,4394496
103
+ aspose/gis.cp39-win_amd64.pyd,sha256=tOkLkabQq030_JZ49_IwC2JmL-V6KJv1sFEL73ZZZh4,4392448
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,12 @@ 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=tfTv-Mu4ZPENgfWfeyJY98Fd09twFj3TySuY1PMrZPM,8007352
151
+ aspose/assemblies/gis/Aspose.GIS.dll,sha256=Y7vIILPaN2HIEtC8cpckVtJg96g2NuI9Trh1-PzgXPc,15631552
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=aD9tld-NUCA5tztHtLB9YP0C1aXIMVv7mLkx9F1kjYs,1148416
155
+ aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=5QE2vp2VVIgKxRJFkGRgwDmYVGFZQ0Ux4LEz6jT_B_A,1149440
156
157
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=CEDKvNDovmshtGxX5OD9N5LPqiiaGw2LjaowBXiZ_To,93696
157
158
  aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=ByxMO9MLtnP--Va1d3JNGUp76EBFi8nkQo7-VeS45EQ,52104
158
159
  aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=cx5hkSgY-2ueuE0JMJtdBUWVeAtp0D9G7Zd5YorlVW8,436600
@@ -401,8 +402,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
401
402
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
402
403
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
403
404
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
404
- aspose_gis_net-25.3.0.dist-info/METADATA,sha256=4QhxANabtyvnhYGzOq6pZ6rXgpqJ4FaprT-I7rrYmRA,13918
405
- aspose_gis_net-25.3.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
406
- aspose_gis_net-25.3.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
407
- aspose_gis_net-25.3.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
408
- aspose_gis_net-25.3.0.dist-info/RECORD,,
405
+ aspose_gis_net-25.5.0.dist-info/METADATA,sha256=WJX5IlxgNfAyQRMQMtUMT1F-VIG4Kj4K8_iFE0vWnbw,13987
406
+ aspose_gis_net-25.5.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
407
+ aspose_gis_net-25.5.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
408
+ aspose_gis_net-25.5.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
409
+ aspose_gis_net-25.5.0.dist-info/RECORD,,