aspose-gis-net 25.2.0__py3-none-win_amd64.whl → 25.4.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
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=99-SCgk511HY3UEIymTSjq4hs55EAv4CbB3yMWrwwzY,123612
13
+ aspose/gis/__init__.pyi,sha256=dV3nkOdV2YZvA8ikUS2Zf-naP9y5nOIP6bK1yubYUqA,123695
14
14
  aspose/gis/common/__init__.pyi,sha256=5IGAarPHjbd9yP1mLiRUl8rztMnPdy-tly-7vXI5YvU,29975
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
@@ -39,14 +39,14 @@ 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
46
46
  aspose/gis/formats/jpegw/__init__.pyi,sha256=LOcdvlktBBoJGOnUeLl0oEFAH9QqJ9GRyUt-xP0FN88,4943
47
47
  aspose/gis/formats/kml/__init__.pyi,sha256=wKsYzbM6LU15mUPMHfCX7zdUE_8WpIUf7NErMeRNCc0,24601
48
48
  aspose/gis/formats/kml/styles/__init__.pyi,sha256=dJZUdlnncajg0k-sWm764gRFZ8B_fgFbpMReIjHAXls,26254
49
- aspose/gis/formats/mapinfointerchange/__init__.pyi,sha256=9P1cx1tquNw_ZlmIyirS5PPQX1p7ZLWHiDW8DC7nBHU,22445
49
+ aspose/gis/formats/mapinfointerchange/__init__.pyi,sha256=8GEJEQ9nK8y7dOMm4vuJjTvNrmy0czwOgQZjVJ6XLXA,23753
50
50
  aspose/gis/formats/mapinfotab/__init__.pyi,sha256=3fikXNXr3_pNi4G6c2IcnuUPDkPfVsEysKB8x0aOHEg,23700
51
51
  aspose/gis/formats/osmxml/__init__.pyi,sha256=VkE52iDPN0_44D1VZM-e8qLNX3ZSiGKOTtahyM1gqjg,24451
52
52
  aspose/gis/formats/pngw/__init__.pyi,sha256=6rFyo2DTMiKt64HOmzmcWAXcn1VeF60mUbXQ4AygiVo,4945
@@ -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=AKhU4wnQGvKM_e3IwLNGgzaMbvHD41iNG2IkmiXer4k,4382208
96
- aspose/gis.cp311-win_amd64.pyd,sha256=VQbCr3xTpGOgYPq0i0HYWDbwKxEGnYglumAT1-Fc4gI,4382208
97
- aspose/gis.cp312-win_amd64.pyd,sha256=6b2xHzXdrkuv6mmaJ4ea8E9Qn62k61ZIA7iw8RY47ko,4428800
98
- aspose/gis.cp313-win_amd64.pyd,sha256=p6iHY_gopl3RHaJ-UvKfoCk79e7-KEmPOy3N4erzsyk,4428800
99
- aspose/gis.cp35-win_amd64.pyd,sha256=GGHcWoWEb7UiPvDbM7IL-w8F4xenazq6JwbbitsfhcQ,4412928
100
- aspose/gis.cp36-win_amd64.pyd,sha256=85a7rrMBLJljRk8ktH1t4o-xFDm50B-wW3M0TvOdOEo,4412928
101
- aspose/gis.cp37-win_amd64.pyd,sha256=1xCHW0dDx7NFtC8egjk2qtIjanmCiL7WfU7c69lgzsk,4408320
102
- aspose/gis.cp38-win_amd64.pyd,sha256=uKte3nu2F02jk4vM4T2c2IrFux18nAmeMa8gT0_YLeU,4391936
103
- aspose/gis.cp39-win_amd64.pyd,sha256=uHdfZBXx3px2x4ouY48khWZfry4rORhU4xnhwx188EQ,4390400
95
+ aspose/gis.cp310-win_amd64.pyd,sha256=w1_2296eUd8iio-imTIUUV_rFT-UmGwsxZY_jZ-6GEE,4383744
96
+ aspose/gis.cp311-win_amd64.pyd,sha256=qEzfw-LzKql7nfda20XHBnMW6duYvBnfqQON2WAQKaQ,4383744
97
+ aspose/gis.cp312-win_amd64.pyd,sha256=avHGpAa_OKCBql8FHivXrKHMoMpcaaeFY6iVE5s2ciw,4430336
98
+ aspose/gis.cp313-win_amd64.pyd,sha256=T_phvWfRqSBhyFS8VvNLWL_SyPl_pjFcHI4OfIY3Yjg,4430336
99
+ aspose/gis.cp35-win_amd64.pyd,sha256=wHzxXbc-Uhrucz_Qh-K3rUlI1znAGaswOSDrw6IdDA8,4415488
100
+ aspose/gis.cp36-win_amd64.pyd,sha256=GMgDNPIlk9GKdeDuoHT0qJA43IiXRYEkd2shmYvAsYk,4415488
101
+ aspose/gis.cp37-win_amd64.pyd,sha256=7nheOgf49bD4mGmvYz0khL0lJ0G3jNuMm9BSfrYE_Yw,4410880
102
+ aspose/gis.cp38-win_amd64.pyd,sha256=ZLxI9Mhwkh38LYH2Fl9g8z-oPC6GFRdx5Jqfa3HowsY,4394496
103
+ aspose/gis.cp39-win_amd64.pyd,sha256=IrAEO0o-P3oLSMsRTO3oGDir-LrbiE9DIRez0ImWiDM,4391936
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=NDjsa3nPtyLn3IYq8n6Cw1-ReoONxbkS6ARdv4BLbGw,7998648
151
+ aspose/assemblies/gis/Aspose.GIS.dll,sha256=m7r6sGDo1Z3j0fnqRpWvBgLJaRl4PbWQuhiM-DubEVY,15628480
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=idUPaEWzuY07DKNO4qNunRt0yodZVlwBRaPRZl4KohU,1147904
155
+ aspose/assemblies/gis/System.Runtime.CompilerServices.Unsafe.dll,sha256=pTOoCbS7iwJyxzOPotRV6qdes42KCU6cOmuvfmJvXI8,18024
156
+ aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll,sha256=dsQG75KOsa-NKUy-pPmNrCIEaYhUy9d6muVKLD2_NVs,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.2.0.dist-info/METADATA,sha256=SQnfYWCm4E7L-cIUSgkTT8ImrbC2Rc7yFvz5On8870E,13918
405
- aspose_gis_net-25.2.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
406
- aspose_gis_net-25.2.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
407
- aspose_gis_net-25.2.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
408
- aspose_gis_net-25.2.0.dist-info/RECORD,,
405
+ aspose_gis_net-25.4.0.dist-info/METADATA,sha256=qcqEBiMM_ojvXJjwNK2XIcEAYJj6huPgYAMzv8sX7ao,13987
406
+ aspose_gis_net-25.4.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
407
+ aspose_gis_net-25.4.0.dist-info/entry_points.txt,sha256=hYD6xgXJYZmRzfaI2HfNYTXuUboz9IgWLzPemhlyU0Q,66
408
+ aspose_gis_net-25.4.0.dist-info/top_level.txt,sha256=oaVLKmiUSo0u7EtpqKJ11ARBx8ZWhYuUXJdy-lByYWg,7
409
+ aspose_gis_net-25.4.0.dist-info/RECORD,,