aspose-gis-net 25.3.0__py3-none-win32.whl → 25.5.0__py3-none-win32.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
aspose/gis.cp35-win32.pyd CHANGED
Binary file
aspose/gis.cp36-win32.pyd CHANGED
Binary file
aspose/gis.cp37-win32.pyd CHANGED
Binary file
aspose/gis.cp38-win32.pyd CHANGED
Binary file
aspose/gis.cp39-win32.pyd CHANGED
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-win32.pyd,sha256=vJXs1BrOnsS6Ia202PWrs5i1tF0OQx2_5Ke9Cx7CP_4,3572736
96
- aspose/gis.cp311-win32.pyd,sha256=QbIjT7GaqLdsIMlI7eALh8B5RcSMDfvtmA5eak2X2oE,3572736
97
- aspose/gis.cp312-win32.pyd,sha256=a9XI9AM-7iVjh1L_D0yJeN_JvCSNIHoPHwaYgURniC8,3691520
98
- aspose/gis.cp313-win32.pyd,sha256=dT5L6TJefIyiBxFvoqymsKmPXFEvcraFH5hzrT5ckHw,3692032
99
- aspose/gis.cp35-win32.pyd,sha256=sWPUb250simMDH7ldzfHaXMU_XiTmKmAT2k-QF12-ow,3587072
100
- aspose/gis.cp36-win32.pyd,sha256=3Dy-rrKGrP12YgyIh3l5AlGHHcJ1QQ8keJdM-fdMaNI,3586560
101
- aspose/gis.cp37-win32.pyd,sha256=K5e9AU0IaDxhwA9z2A_YiiCK9WYGA-cA6Xgz1LDrtfM,3586560
102
- aspose/gis.cp38-win32.pyd,sha256=W8hBDVpNcsfRwz1xjCpynZ886RlZgvdgqAwtrccMkQc,3588096
103
- aspose/gis.cp39-win32.pyd,sha256=g9vHn3-ibA_8Tk7S4dZYFMrnRkpfx35p2LbVLBxx1Mo,3578880
95
+ aspose/gis.cp310-win32.pyd,sha256=hRxsidXBjUSbhZAZEVchWK5JFtEHSAUNr-qRTzJlC0w,3573760
96
+ aspose/gis.cp311-win32.pyd,sha256=1xHd2tMfiWLvKVWW7IEuulyO63BYPXRSrcRp1lfHEQ8,3573760
97
+ aspose/gis.cp312-win32.pyd,sha256=6-MHL7-bA6CTH4m-00ni5Dp8MRaaShPm7aFYK8NzTeA,3693056
98
+ aspose/gis.cp313-win32.pyd,sha256=p22zZa-Z_ELBQD97tmF5TaIuKoFyhJjoCxaTXnDpc_U,3693056
99
+ aspose/gis.cp35-win32.pyd,sha256=0i5IcJc3xI3J-f-qMjdBZqfI-Wy6kMy2SArbKsE_5Kg,3588608
100
+ aspose/gis.cp36-win32.pyd,sha256=TU7g3T9N2FzL4bKiUT0P2Jx9M8TirIpMKVkxwsAyadg,3588608
101
+ aspose/gis.cp37-win32.pyd,sha256=vRvsgDppSL1Ya8bdCN6smdgxdzYfsQWwuvJB19-tnuw,3588608
102
+ aspose/gis.cp38-win32.pyd,sha256=_G7xH_5VLxeoBLNso062aIHc0w4TDgAfcsV0C-9zfIE,3589632
103
+ aspose/gis.cp39-win32.pyd,sha256=AbzZnCt-7HmQW3Lz-xZkp30TAQRC6hXVAhRHWzuYvHM,3579904
104
104
  aspose/pycore.cp310-win32.pyd,sha256=NTc7ukwKVY9Ejj-0SrjTe4fOqKPchN1haW0tGSDMqDk,95744
105
105
  aspose/pycore.cp311-win32.pyd,sha256=FTyyXIbbnizQXeUfhnGFDsm_Bg334hfXOrt5tIP6XMc,95744
106
106
  aspose/pycore.cp312-win32.pyd,sha256=glBJQOEh3L7u2LwuZjAdUNFC1jyhHKEIyIgNDhUy3_U,96768
@@ -148,11 +148,12 @@ aspose/pyreflection.cp38-win32.pyd,sha256=LaDu7QtXevfXDGLeAu0RoPXBGXQoYuYdGS-Wns
148
148
  aspose/pyreflection.cp39-win32.pyd,sha256=zOFJQpLEBDuZ5O2TYkXAG7QdCzzhzE6U61taC9k2Ao8,261632
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=lVF1W13Q78VCNTPyQttV6HEFFN613H91ShF8F-SeMVU,1149440
155
+ aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=VBjxUnt3CWsWc502-d3YlYv65pCyJMo-zvtaVIc2KFo,1149952
156
157
  aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=tyh1f8dBGg7cYbiW8BrARHz34ptBuA5E8VQNsXFxzso,94720
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
@@ -402,8 +403,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
402
403
  aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
403
404
  aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
404
405
  aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
405
- aspose_gis_net-25.3.0.dist-info/METADATA,sha256=qVcX2jqWRbwEdILsRrw9j6HIMLM2elOT7jyHQCQh0GM,13914
406
- aspose_gis_net-25.3.0.dist-info/WHEEL,sha256=Qp0pkwX2grZiaAQR0_2-Tf5RWO1YRFeNKTRIWlXCrLE,94
407
- aspose_gis_net-25.3.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
408
- aspose_gis_net-25.3.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
409
- aspose_gis_net-25.3.0.dist-info/RECORD,,
406
+ aspose_gis_net-25.5.0.dist-info/METADATA,sha256=TmhCMf-d_3MCO69EPokY6kenluEMk8KALv-H-Hv-iv0,13983
407
+ aspose_gis_net-25.5.0.dist-info/WHEEL,sha256=Qp0pkwX2grZiaAQR0_2-Tf5RWO1YRFeNKTRIWlXCrLE,94
408
+ aspose_gis_net-25.5.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
409
+ aspose_gis_net-25.5.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
410
+ aspose_gis_net-25.5.0.dist-info/RECORD,,