aspose-gis-net 25.2.0__py3-none-macosx_11_0_arm64.whl → 25.3.0__py3-none-macosx_11_0_arm64.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.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/gis/__init__.pyi +2 -0
- aspose/gis/formats/mapinfointerchange/__init__.pyi +30 -0
- aspose/gis.cpython-310-darwin.so +0 -0
- aspose/gis.cpython-311-darwin.so +0 -0
- aspose/gis.cpython-312-darwin.so +0 -0
- aspose/gis.cpython-313-darwin.so +0 -0
- aspose/gis.cpython-38-darwin.so +0 -0
- aspose/gis.cpython-39-darwin.so +0 -0
- {aspose_gis_net-25.2.0.dist-info → aspose_gis_net-25.3.0.dist-info}/METADATA +1 -1
- {aspose_gis_net-25.2.0.dist-info → aspose_gis_net-25.3.0.dist-info}/RECORD +15 -15
- {aspose_gis_net-25.2.0.dist-info → aspose_gis_net-25.3.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.2.0.dist-info → aspose_gis_net-25.3.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-25.2.0.dist-info → aspose_gis_net-25.3.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
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
|
|
@@ -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
|
|
aspose/gis.cpython-310-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-311-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-312-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-313-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-38-darwin.so
CHANGED
|
Binary file
|
aspose/gis.cpython-39-darwin.so
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aspose-gis-net
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.3.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=
|
|
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
|
|
@@ -46,7 +46,7 @@ aspose/gis/formats/inmemory/__init__.pyi,sha256=dS7QBUrZd5IjFXDNKbhNv1W7ZruOK32b
|
|
|
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=
|
|
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,12 +92,12 @@ 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-darwin.so,sha256=
|
|
96
|
-
aspose/gis.cpython-311-darwin.so,sha256=
|
|
97
|
-
aspose/gis.cpython-312-darwin.so,sha256=
|
|
98
|
-
aspose/gis.cpython-313-darwin.so,sha256=
|
|
99
|
-
aspose/gis.cpython-38-darwin.so,sha256=
|
|
100
|
-
aspose/gis.cpython-39-darwin.so,sha256
|
|
95
|
+
aspose/gis.cpython-310-darwin.so,sha256=VQ05jtw00i2e-L3qdralstH47T6JLNsRkGWxVTIMbKU,8684248
|
|
96
|
+
aspose/gis.cpython-311-darwin.so,sha256=XGHnvmnEshqBoPbdvgJlqseQYN1q83P41UCIbpISzB8,8684248
|
|
97
|
+
aspose/gis.cpython-312-darwin.so,sha256=1lOA86UHV62B7srJGb1zp3NEDF6uhy0SS7Wu8l9zuvw,8585224
|
|
98
|
+
aspose/gis.cpython-313-darwin.so,sha256=Uu-fefwO2tlVpAxOSbGSSSF5t65FZIIMH41F-wzSp84,8585224
|
|
99
|
+
aspose/gis.cpython-38-darwin.so,sha256=Up-oGe-sg2BUFwn3w8N8hXYPhm8cbiJiZw-PlQk5CjA,8684136
|
|
100
|
+
aspose/gis.cpython-39-darwin.so,sha256=-L-0Nt6n_pWwCA2TGbsYSV474fWqNDH9Mv8jTW-TCFc,8684264
|
|
101
101
|
aspose/pycore.cpython-310-darwin.so,sha256=4jHIl_Y-U1_PAW0qf-YEStWNdFg5eQs8nt3hrpraVyo,172256
|
|
102
102
|
aspose/pycore.cpython-311-darwin.so,sha256=X11EA-PNTkLZcVb_z8WajIGfUC9vVstuZMxeCNqjOuI,172256
|
|
103
103
|
aspose/pycore.cpython-312-darwin.so,sha256=erQesn8HhVAUJuQLgXDmk15smVO1OcjZzYAUWvpx72A,172192
|
|
@@ -130,11 +130,11 @@ aspose/pyreflection.cpython-38-darwin.so,sha256=L_UkX7rytQyrhqoPgsujMizV0Q0_c9B3
|
|
|
130
130
|
aspose/pyreflection.cpython-39-darwin.so,sha256=DkbTyBoWdB_tTCHSGkLqYkZNLUonadWQF2i3ElW0Qxc,554304
|
|
131
131
|
aspose/__pyinstaller/__init__.pyi,sha256=JUQjpLnZGSJEDwHrogA4y1SSuAI9uGQxXL40_PPuGes,31
|
|
132
132
|
aspose/__pyinstaller/hook-aspose.py,sha256=G2uQAF1mgFtEjkZFyvcElHUEzLLoFGdqVOMAs9bsTi0,258
|
|
133
|
-
aspose/assemblies/gis/Aspose.GIS.dll,sha256=
|
|
133
|
+
aspose/assemblies/gis/Aspose.GIS.dll,sha256=tfTv-Mu4ZPENgfWfeyJY98Fd09twFj3TySuY1PMrZPM,8007352
|
|
134
134
|
aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll,sha256=yklb9shrfwktYkkoEBmFqUFTLRSdzYrP6hcPilO-iFA,26224
|
|
135
135
|
aspose/assemblies/gis/Newtonsoft.Json.dll,sha256=cs8pHUurDt0IqbB8YXPh560au3q3J_1wRL9jBddRVmE,695336
|
|
136
136
|
aspose/assemblies/gis/System.Drawing.Common.dll,sha256=iepZXMsf0ThEgMHjC9SHySr10G07BvKVMj7_YBrNkBk,427112
|
|
137
|
-
aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=
|
|
137
|
+
aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=JxrZbS045yczM3W9rZyoPQIbV2BgMV4mBKIkoROm-l4,1148416
|
|
138
138
|
aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll,sha256=rAU2-TFzgta7mZBLhRFZ-zglSmiOID4CeUvZlsfgBbs,93696
|
|
139
139
|
aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll,sha256=yklb9shrfwktYkkoEBmFqUFTLRSdzYrP6hcPilO-iFA,26224
|
|
140
140
|
aspose/assemblies/pydrawing/System.Drawing.Common.dll,sha256=iepZXMsf0ThEgMHjC9SHySr10G07BvKVMj7_YBrNkBk,427112
|
|
@@ -342,8 +342,8 @@ aspose/pyio/__pyinstaller/hook-aspose.pyio.py,sha256=9xlEEIG-ZYexVunXu_ySjemnSFJ
|
|
|
342
342
|
aspose/pyreflection/__init__.pyi,sha256=m1gNKyNjs7AAirNANAXD4Pp6USsE77y4cXIudmqePW8,257
|
|
343
343
|
aspose/pyreflection/__pyinstaller/__init__.pyi,sha256=micugwtjBQx5QHPQ3sjszDmdDrh_j6WEf2rIgmQEQtg,30
|
|
344
344
|
aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py,sha256=KhNCbh91nfinnu94UllN04QVKgzGfhV8briC6xbCK9o,272
|
|
345
|
-
aspose_gis_net-25.
|
|
346
|
-
aspose_gis_net-25.
|
|
347
|
-
aspose_gis_net-25.
|
|
348
|
-
aspose_gis_net-25.
|
|
349
|
-
aspose_gis_net-25.
|
|
345
|
+
aspose_gis_net-25.3.0.dist-info/METADATA,sha256=gqHU3lTbG2teXbGS2ynzuY7zqVGxFuJa_MCCo36g-K8,13646
|
|
346
|
+
aspose_gis_net-25.3.0.dist-info/WHEEL,sha256=KrVDKVigj527zHYfIMw7ZX5PorjHxPIDW5Iz7Z5Koz0,106
|
|
347
|
+
aspose_gis_net-25.3.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
|
|
348
|
+
aspose_gis_net-25.3.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
|
|
349
|
+
aspose_gis_net-25.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|