aspose-gis-net 25.3.0__py3-none-macosx_11_0_arm64.whl → 25.4.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/formats/gml/__init__.pyi +29 -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.3.0.dist-info → aspose_gis_net-25.4.0.dist-info}/METADATA +3 -2
- {aspose_gis_net-25.3.0.dist-info → aspose_gis_net-25.4.0.dist-info}/RECORD +14 -14
- {aspose_gis_net-25.3.0.dist-info → aspose_gis_net-25.4.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.3.0.dist-info → aspose_gis_net-25.4.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-25.3.0.dist-info → aspose_gis_net-25.4.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -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.
|
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.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
|
|
|
@@ -39,7 +39,7 @@ 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=
|
|
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
|
|
@@ -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=gr1kww0FEeXSRhocqX-BI9ZkXwXYnuZyPG50TXF9efo,8701528
|
|
96
|
+
aspose/gis.cpython-311-darwin.so,sha256=_hmzguVwyba8QgyOQMUUMHcUW6EydaP5yRPht4ASybs,8701512
|
|
97
|
+
aspose/gis.cpython-312-darwin.so,sha256=m-_tpsJ-1BwXoUogKczCPfH9Y67PfOgm9ykZlrpm43k,8586312
|
|
98
|
+
aspose/gis.cpython-313-darwin.so,sha256=G2u6v0ZhbUjRUCWLsJutenOezkBDg9wyyX0_JGf5or4,8586312
|
|
99
|
+
aspose/gis.cpython-38-darwin.so,sha256=p7aKjhfms6v8jixTVPpacmwUy7VPYLAI22OdmLc-c-s,8701416
|
|
100
|
+
aspose/gis.cpython-39-darwin.so,sha256=_O_PfmAiGW9N5bQsAdKUggzJjGhC8jktZYCCAWp8hpk,8684968
|
|
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=m7r6sGDo1Z3j0fnqRpWvBgLJaRl4PbWQuhiM-DubEVY,15628480
|
|
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=ZTtYVWwIUabO5hfGYOyqfB9RQhzTMsd4IpBYDE8j7K0,1149440
|
|
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.4.0.dist-info/METADATA,sha256=geN_D-95NwmIIenE2Wsx5h1kGwpFALTNPGGqWGlluaI,13714
|
|
346
|
+
aspose_gis_net-25.4.0.dist-info/WHEEL,sha256=KrVDKVigj527zHYfIMw7ZX5PorjHxPIDW5Iz7Z5Koz0,106
|
|
347
|
+
aspose_gis_net-25.4.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
|
|
348
|
+
aspose_gis_net-25.4.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
|
|
349
|
+
aspose_gis_net-25.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|