aspose-gis-net 24.12.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.

Files changed (405) hide show
  1. .__pyi_patched +0 -0
  2. aspose/__init__.py +82 -0
  3. aspose/__pyinstaller/__init__.pyi +1 -0
  4. aspose/__pyinstaller/hook-aspose.py +10 -0
  5. aspose/assemblies/gis/Aspose.GIS.dll +0 -0
  6. aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll +0 -0
  7. aspose/assemblies/gis/Newtonsoft.Json.dll +0 -0
  8. aspose/assemblies/gis/System.Drawing.Common.dll +0 -0
  9. aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
  10. aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
  11. aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll +0 -0
  12. aspose/assemblies/pydrawing/System.Drawing.Common.dll +0 -0
  13. aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
  14. aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
  15. aspose/assemblies/pyio/WrpInterop.Aspose.PyIO.dll +0 -0
  16. aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
  17. aspose/gis/__init__.pyi +2535 -0
  18. aspose/gis/__nuitka/__init__.pyi +1 -0
  19. aspose/gis/__nuitka/aspose-gis.nuitka-package.config.yml +20 -0
  20. aspose/gis/__pyinstaller/__init__.pyi +1 -0
  21. aspose/gis/__pyinstaller/hook-aspose.gis.py +9 -0
  22. aspose/gis/common/__init__.pyi +1028 -0
  23. aspose/gis/common/formats/__init__.pyi +98 -0
  24. aspose/gis/common/formats/dbase/__init__.pyi +250 -0
  25. aspose/gis/common/formats/gdbtable/__init__.pyi +1022 -0
  26. aspose/gis/common/formats/mapinfo/__init__.pyi +346 -0
  27. aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +662 -0
  28. aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +217 -0
  29. aspose/gis/common/formats/mapinfo/styling/__init__.pyi +163 -0
  30. aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +139 -0
  31. aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +430 -0
  32. aspose/gis/common/formats/wkb/__init__.pyi +120 -0
  33. aspose/gis/common/formats/wkt/__init__.pyi +420 -0
  34. aspose/gis/common/formats/xml/__init__.pyi +173 -0
  35. aspose/gis/common/io/__init__.pyi +290 -0
  36. aspose/gis/epsg/__init__.pyi +357 -0
  37. aspose/gis/formats/__init__.pyi +91 -0
  38. aspose/gis/formats/bmpw/__init__.pyi +134 -0
  39. aspose/gis/formats/csv/__init__.pyi +608 -0
  40. aspose/gis/formats/database/__init__.pyi +173 -0
  41. aspose/gis/formats/database/dataediting/__init__.pyi +105 -0
  42. aspose/gis/formats/database/fromdefinition/__init__.pyi +141 -0
  43. aspose/gis/formats/esriascii/__init__.pyi +292 -0
  44. aspose/gis/formats/esrijson/__init__.pyi +512 -0
  45. aspose/gis/formats/filegdb/__init__.pyi +722 -0
  46. aspose/gis/formats/gdal/__init__.pyi +478 -0
  47. aspose/gis/formats/geojson/__init__.pyi +620 -0
  48. aspose/gis/formats/geojsonseq/__init__.pyi +572 -0
  49. aspose/gis/formats/geotiff/__init__.pyi +292 -0
  50. aspose/gis/formats/gml/__init__.pyi +545 -0
  51. aspose/gis/formats/gpx/__init__.pyi +543 -0
  52. aspose/gis/formats/infile/__init__.pyi +582 -0
  53. aspose/gis/formats/inmemory/__init__.pyi +337 -0
  54. aspose/gis/formats/jpegw/__init__.pyi +134 -0
  55. aspose/gis/formats/kml/__init__.pyi +556 -0
  56. aspose/gis/formats/kml/styles/__init__.pyi +636 -0
  57. aspose/gis/formats/mapinfointerchange/__init__.pyi +501 -0
  58. aspose/gis/formats/mapinfotab/__init__.pyi +530 -0
  59. aspose/gis/formats/osmxml/__init__.pyi +543 -0
  60. aspose/gis/formats/pngw/__init__.pyi +134 -0
  61. aspose/gis/formats/postgis/__init__.pyi +262 -0
  62. aspose/gis/formats/shapefile/__init__.pyi +511 -0
  63. aspose/gis/formats/sqlserver/__init__.pyi +248 -0
  64. aspose/gis/formats/tiffw/__init__.pyi +134 -0
  65. aspose/gis/formats/topojson/__init__.pyi +596 -0
  66. aspose/gis/formats/worldfile/__init__.pyi +134 -0
  67. aspose/gis/formats/xyztile/__init__.pyi +132 -0
  68. aspose/gis/geometries/__init__.pyi +15970 -0
  69. aspose/gis/geotools/__init__.pyi +519 -0
  70. aspose/gis/geotools/extensions/__init__.pyi +107 -0
  71. aspose/gis/geotools/layersmap/__init__.pyi +311 -0
  72. aspose/gis/geotools/mapbuilder/__init__.pyi +141 -0
  73. aspose/gis/geotools/wayanalyzer/__init__.pyi +187 -0
  74. aspose/gis/imagemetadata/__init__.pyi +297 -0
  75. aspose/gis/indexing/__init__.pyi +103 -0
  76. aspose/gis/indexing/bplustree/__init__.pyi +118 -0
  77. aspose/gis/indexing/qixtree/__init__.pyi +121 -0
  78. aspose/gis/indexing/rtree/__init__.pyi +153 -0
  79. aspose/gis/labeling/__init__.pyi +235 -0
  80. aspose/gis/labeling/line/__init__.pyi +279 -0
  81. aspose/gis/painting/__init__.pyi +790 -0
  82. aspose/gis/projections/__init__.pyi +272 -0
  83. aspose/gis/py.typed +0 -0
  84. aspose/gis/raster/__init__.pyi +586 -0
  85. aspose/gis/raster/web/__init__.pyi +127 -0
  86. aspose/gis/relationship/__init__.pyi +91 -0
  87. aspose/gis/relationship/joins/__init__.pyi +161 -0
  88. aspose/gis/rendering/__init__.pyi +572 -0
  89. aspose/gis/rendering/colorizers/__init__.pyi +202 -0
  90. aspose/gis/rendering/formats/__init__.pyi +91 -0
  91. aspose/gis/rendering/formats/bmp/__init__.pyi +111 -0
  92. aspose/gis/rendering/formats/jpeg/__init__.pyi +111 -0
  93. aspose/gis/rendering/formats/png/__init__.pyi +111 -0
  94. aspose/gis/rendering/formats/svg/__init__.pyi +111 -0
  95. aspose/gis/rendering/labelings/__init__.pyi +416 -0
  96. aspose/gis/rendering/sld/__init__.pyi +109 -0
  97. aspose/gis/rendering/symbolizers/__init__.pyi +882 -0
  98. aspose/gis/spatialreferencing/__init__.pyi +3005 -0
  99. aspose/gis/topology/__init__.pyi +342 -0
  100. aspose/gis/topology/algorithms/__init__.pyi +98 -0
  101. aspose/gis/topology/buffer/__init__.pyi +214 -0
  102. aspose/gis/topology/graph/__init__.pyi +338 -0
  103. aspose/gis.cp310-win_amd64.pyd +0 -0
  104. aspose/gis.cp311-win_amd64.pyd +0 -0
  105. aspose/gis.cp312-win_amd64.pyd +0 -0
  106. aspose/gis.cp313-win_amd64.pyd +0 -0
  107. aspose/gis.cp35-win_amd64.pyd +0 -0
  108. aspose/gis.cp36-win_amd64.pyd +0 -0
  109. aspose/gis.cp37-win_amd64.pyd +0 -0
  110. aspose/gis.cp38-win_amd64.pyd +0 -0
  111. aspose/gis.cp39-win_amd64.pyd +0 -0
  112. aspose/netcore/netcore3.1/Microsoft.CSharp.dll +0 -0
  113. aspose/netcore/netcore3.1/Microsoft.DiaSymReader.Native.amd64.dll +0 -0
  114. aspose/netcore/netcore3.1/Microsoft.VisualBasic.Core.dll +0 -0
  115. aspose/netcore/netcore3.1/Microsoft.VisualBasic.dll +0 -0
  116. aspose/netcore/netcore3.1/Microsoft.Win32.Primitives.dll +0 -0
  117. aspose/netcore/netcore3.1/Microsoft.Win32.Registry.dll +0 -0
  118. aspose/netcore/netcore3.1/SOS_README.md +5 -0
  119. aspose/netcore/netcore3.1/System.AppContext.dll +0 -0
  120. aspose/netcore/netcore3.1/System.Buffers.dll +0 -0
  121. aspose/netcore/netcore3.1/System.Collections.Concurrent.dll +0 -0
  122. aspose/netcore/netcore3.1/System.Collections.Immutable.dll +0 -0
  123. aspose/netcore/netcore3.1/System.Collections.NonGeneric.dll +0 -0
  124. aspose/netcore/netcore3.1/System.Collections.Specialized.dll +0 -0
  125. aspose/netcore/netcore3.1/System.Collections.dll +0 -0
  126. aspose/netcore/netcore3.1/System.ComponentModel.Annotations.dll +0 -0
  127. aspose/netcore/netcore3.1/System.ComponentModel.DataAnnotations.dll +0 -0
  128. aspose/netcore/netcore3.1/System.ComponentModel.EventBasedAsync.dll +0 -0
  129. aspose/netcore/netcore3.1/System.ComponentModel.Primitives.dll +0 -0
  130. aspose/netcore/netcore3.1/System.ComponentModel.TypeConverter.dll +0 -0
  131. aspose/netcore/netcore3.1/System.ComponentModel.dll +0 -0
  132. aspose/netcore/netcore3.1/System.Configuration.dll +0 -0
  133. aspose/netcore/netcore3.1/System.Console.dll +0 -0
  134. aspose/netcore/netcore3.1/System.Core.dll +0 -0
  135. aspose/netcore/netcore3.1/System.Data.Common.dll +0 -0
  136. aspose/netcore/netcore3.1/System.Data.DataSetExtensions.dll +0 -0
  137. aspose/netcore/netcore3.1/System.Data.dll +0 -0
  138. aspose/netcore/netcore3.1/System.Diagnostics.Contracts.dll +0 -0
  139. aspose/netcore/netcore3.1/System.Diagnostics.Debug.dll +0 -0
  140. aspose/netcore/netcore3.1/System.Diagnostics.DiagnosticSource.dll +0 -0
  141. aspose/netcore/netcore3.1/System.Diagnostics.FileVersionInfo.dll +0 -0
  142. aspose/netcore/netcore3.1/System.Diagnostics.Process.dll +0 -0
  143. aspose/netcore/netcore3.1/System.Diagnostics.StackTrace.dll +0 -0
  144. aspose/netcore/netcore3.1/System.Diagnostics.TextWriterTraceListener.dll +0 -0
  145. aspose/netcore/netcore3.1/System.Diagnostics.Tools.dll +0 -0
  146. aspose/netcore/netcore3.1/System.Diagnostics.TraceSource.dll +0 -0
  147. aspose/netcore/netcore3.1/System.Diagnostics.Tracing.dll +0 -0
  148. aspose/netcore/netcore3.1/System.Drawing.Primitives.dll +0 -0
  149. aspose/netcore/netcore3.1/System.Drawing.dll +0 -0
  150. aspose/netcore/netcore3.1/System.Dynamic.Runtime.dll +0 -0
  151. aspose/netcore/netcore3.1/System.Globalization.Calendars.dll +0 -0
  152. aspose/netcore/netcore3.1/System.Globalization.Extensions.dll +0 -0
  153. aspose/netcore/netcore3.1/System.Globalization.dll +0 -0
  154. aspose/netcore/netcore3.1/System.IO.Compression.Brotli.dll +0 -0
  155. aspose/netcore/netcore3.1/System.IO.Compression.FileSystem.dll +0 -0
  156. aspose/netcore/netcore3.1/System.IO.Compression.ZipFile.dll +0 -0
  157. aspose/netcore/netcore3.1/System.IO.Compression.dll +0 -0
  158. aspose/netcore/netcore3.1/System.IO.FileSystem.AccessControl.dll +0 -0
  159. aspose/netcore/netcore3.1/System.IO.FileSystem.DriveInfo.dll +0 -0
  160. aspose/netcore/netcore3.1/System.IO.FileSystem.Primitives.dll +0 -0
  161. aspose/netcore/netcore3.1/System.IO.FileSystem.Watcher.dll +0 -0
  162. aspose/netcore/netcore3.1/System.IO.FileSystem.dll +0 -0
  163. aspose/netcore/netcore3.1/System.IO.IsolatedStorage.dll +0 -0
  164. aspose/netcore/netcore3.1/System.IO.MemoryMappedFiles.dll +0 -0
  165. aspose/netcore/netcore3.1/System.IO.Pipes.AccessControl.dll +0 -0
  166. aspose/netcore/netcore3.1/System.IO.Pipes.dll +0 -0
  167. aspose/netcore/netcore3.1/System.IO.UnmanagedMemoryStream.dll +0 -0
  168. aspose/netcore/netcore3.1/System.IO.dll +0 -0
  169. aspose/netcore/netcore3.1/System.Linq.Expressions.dll +0 -0
  170. aspose/netcore/netcore3.1/System.Linq.Parallel.dll +0 -0
  171. aspose/netcore/netcore3.1/System.Linq.Queryable.dll +0 -0
  172. aspose/netcore/netcore3.1/System.Linq.dll +0 -0
  173. aspose/netcore/netcore3.1/System.Memory.dll +0 -0
  174. aspose/netcore/netcore3.1/System.Net.Http.dll +0 -0
  175. aspose/netcore/netcore3.1/System.Net.HttpListener.dll +0 -0
  176. aspose/netcore/netcore3.1/System.Net.Mail.dll +0 -0
  177. aspose/netcore/netcore3.1/System.Net.NameResolution.dll +0 -0
  178. aspose/netcore/netcore3.1/System.Net.NetworkInformation.dll +0 -0
  179. aspose/netcore/netcore3.1/System.Net.Ping.dll +0 -0
  180. aspose/netcore/netcore3.1/System.Net.Primitives.dll +0 -0
  181. aspose/netcore/netcore3.1/System.Net.Requests.dll +0 -0
  182. aspose/netcore/netcore3.1/System.Net.Security.dll +0 -0
  183. aspose/netcore/netcore3.1/System.Net.ServicePoint.dll +0 -0
  184. aspose/netcore/netcore3.1/System.Net.Sockets.dll +0 -0
  185. aspose/netcore/netcore3.1/System.Net.WebClient.dll +0 -0
  186. aspose/netcore/netcore3.1/System.Net.WebHeaderCollection.dll +0 -0
  187. aspose/netcore/netcore3.1/System.Net.WebProxy.dll +0 -0
  188. aspose/netcore/netcore3.1/System.Net.WebSockets.Client.dll +0 -0
  189. aspose/netcore/netcore3.1/System.Net.WebSockets.dll +0 -0
  190. aspose/netcore/netcore3.1/System.Net.dll +0 -0
  191. aspose/netcore/netcore3.1/System.Numerics.Vectors.dll +0 -0
  192. aspose/netcore/netcore3.1/System.Numerics.dll +0 -0
  193. aspose/netcore/netcore3.1/System.ObjectModel.dll +0 -0
  194. aspose/netcore/netcore3.1/System.Private.CoreLib.dll +0 -0
  195. aspose/netcore/netcore3.1/System.Private.DataContractSerialization.dll +0 -0
  196. aspose/netcore/netcore3.1/System.Private.Uri.dll +0 -0
  197. aspose/netcore/netcore3.1/System.Private.Xml.Linq.dll +0 -0
  198. aspose/netcore/netcore3.1/System.Private.Xml.dll +0 -0
  199. aspose/netcore/netcore3.1/System.Reflection.DispatchProxy.dll +0 -0
  200. aspose/netcore/netcore3.1/System.Reflection.Emit.ILGeneration.dll +0 -0
  201. aspose/netcore/netcore3.1/System.Reflection.Emit.Lightweight.dll +0 -0
  202. aspose/netcore/netcore3.1/System.Reflection.Emit.dll +0 -0
  203. aspose/netcore/netcore3.1/System.Reflection.Extensions.dll +0 -0
  204. aspose/netcore/netcore3.1/System.Reflection.Metadata.dll +0 -0
  205. aspose/netcore/netcore3.1/System.Reflection.Primitives.dll +0 -0
  206. aspose/netcore/netcore3.1/System.Reflection.TypeExtensions.dll +0 -0
  207. aspose/netcore/netcore3.1/System.Reflection.dll +0 -0
  208. aspose/netcore/netcore3.1/System.Resources.Reader.dll +0 -0
  209. aspose/netcore/netcore3.1/System.Resources.ResourceManager.dll +0 -0
  210. aspose/netcore/netcore3.1/System.Resources.Writer.dll +0 -0
  211. aspose/netcore/netcore3.1/System.Runtime.CompilerServices.Unsafe.dll +0 -0
  212. aspose/netcore/netcore3.1/System.Runtime.CompilerServices.VisualC.dll +0 -0
  213. aspose/netcore/netcore3.1/System.Runtime.Extensions.dll +0 -0
  214. aspose/netcore/netcore3.1/System.Runtime.Handles.dll +0 -0
  215. aspose/netcore/netcore3.1/System.Runtime.InteropServices.RuntimeInformation.dll +0 -0
  216. aspose/netcore/netcore3.1/System.Runtime.InteropServices.WindowsRuntime.dll +0 -0
  217. aspose/netcore/netcore3.1/System.Runtime.InteropServices.dll +0 -0
  218. aspose/netcore/netcore3.1/System.Runtime.Intrinsics.dll +0 -0
  219. aspose/netcore/netcore3.1/System.Runtime.Loader.dll +0 -0
  220. aspose/netcore/netcore3.1/System.Runtime.Numerics.dll +0 -0
  221. aspose/netcore/netcore3.1/System.Runtime.Serialization.Formatters.dll +0 -0
  222. aspose/netcore/netcore3.1/System.Runtime.Serialization.Json.dll +0 -0
  223. aspose/netcore/netcore3.1/System.Runtime.Serialization.Primitives.dll +0 -0
  224. aspose/netcore/netcore3.1/System.Runtime.Serialization.Xml.dll +0 -0
  225. aspose/netcore/netcore3.1/System.Runtime.Serialization.dll +0 -0
  226. aspose/netcore/netcore3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll +0 -0
  227. aspose/netcore/netcore3.1/System.Runtime.WindowsRuntime.dll +0 -0
  228. aspose/netcore/netcore3.1/System.Runtime.dll +0 -0
  229. aspose/netcore/netcore3.1/System.Security.AccessControl.dll +0 -0
  230. aspose/netcore/netcore3.1/System.Security.Claims.dll +0 -0
  231. aspose/netcore/netcore3.1/System.Security.Cryptography.Algorithms.dll +0 -0
  232. aspose/netcore/netcore3.1/System.Security.Cryptography.Cng.dll +0 -0
  233. aspose/netcore/netcore3.1/System.Security.Cryptography.Csp.dll +0 -0
  234. aspose/netcore/netcore3.1/System.Security.Cryptography.Encoding.dll +0 -0
  235. aspose/netcore/netcore3.1/System.Security.Cryptography.OpenSsl.dll +0 -0
  236. aspose/netcore/netcore3.1/System.Security.Cryptography.Primitives.dll +0 -0
  237. aspose/netcore/netcore3.1/System.Security.Cryptography.X509Certificates.dll +0 -0
  238. aspose/netcore/netcore3.1/System.Security.Principal.Windows.dll +0 -0
  239. aspose/netcore/netcore3.1/System.Security.Principal.dll +0 -0
  240. aspose/netcore/netcore3.1/System.Security.SecureString.dll +0 -0
  241. aspose/netcore/netcore3.1/System.Security.dll +0 -0
  242. aspose/netcore/netcore3.1/System.ServiceModel.Web.dll +0 -0
  243. aspose/netcore/netcore3.1/System.ServiceProcess.dll +0 -0
  244. aspose/netcore/netcore3.1/System.Text.Encoding.CodePages.dll +0 -0
  245. aspose/netcore/netcore3.1/System.Text.Encoding.Extensions.dll +0 -0
  246. aspose/netcore/netcore3.1/System.Text.Encoding.dll +0 -0
  247. aspose/netcore/netcore3.1/System.Text.Encodings.Web.dll +0 -0
  248. aspose/netcore/netcore3.1/System.Text.Json.dll +0 -0
  249. aspose/netcore/netcore3.1/System.Text.RegularExpressions.dll +0 -0
  250. aspose/netcore/netcore3.1/System.Threading.Channels.dll +0 -0
  251. aspose/netcore/netcore3.1/System.Threading.Overlapped.dll +0 -0
  252. aspose/netcore/netcore3.1/System.Threading.Tasks.Dataflow.dll +0 -0
  253. aspose/netcore/netcore3.1/System.Threading.Tasks.Extensions.dll +0 -0
  254. aspose/netcore/netcore3.1/System.Threading.Tasks.Parallel.dll +0 -0
  255. aspose/netcore/netcore3.1/System.Threading.Tasks.dll +0 -0
  256. aspose/netcore/netcore3.1/System.Threading.Thread.dll +0 -0
  257. aspose/netcore/netcore3.1/System.Threading.ThreadPool.dll +0 -0
  258. aspose/netcore/netcore3.1/System.Threading.Timer.dll +0 -0
  259. aspose/netcore/netcore3.1/System.Threading.dll +0 -0
  260. aspose/netcore/netcore3.1/System.Transactions.Local.dll +0 -0
  261. aspose/netcore/netcore3.1/System.Transactions.dll +0 -0
  262. aspose/netcore/netcore3.1/System.ValueTuple.dll +0 -0
  263. aspose/netcore/netcore3.1/System.Web.HttpUtility.dll +0 -0
  264. aspose/netcore/netcore3.1/System.Web.dll +0 -0
  265. aspose/netcore/netcore3.1/System.Windows.dll +0 -0
  266. aspose/netcore/netcore3.1/System.Xml.Linq.dll +0 -0
  267. aspose/netcore/netcore3.1/System.Xml.ReaderWriter.dll +0 -0
  268. aspose/netcore/netcore3.1/System.Xml.Serialization.dll +0 -0
  269. aspose/netcore/netcore3.1/System.Xml.XDocument.dll +0 -0
  270. aspose/netcore/netcore3.1/System.Xml.XPath.XDocument.dll +0 -0
  271. aspose/netcore/netcore3.1/System.Xml.XPath.dll +0 -0
  272. aspose/netcore/netcore3.1/System.Xml.XmlDocument.dll +0 -0
  273. aspose/netcore/netcore3.1/System.Xml.XmlSerializer.dll +0 -0
  274. aspose/netcore/netcore3.1/System.Xml.dll +0 -0
  275. aspose/netcore/netcore3.1/System.dll +0 -0
  276. aspose/netcore/netcore3.1/WindowsBase.dll +0 -0
  277. aspose/netcore/netcore3.1/api-ms-win-core-console-l1-1-0.dll +0 -0
  278. aspose/netcore/netcore3.1/api-ms-win-core-datetime-l1-1-0.dll +0 -0
  279. aspose/netcore/netcore3.1/api-ms-win-core-debug-l1-1-0.dll +0 -0
  280. aspose/netcore/netcore3.1/api-ms-win-core-errorhandling-l1-1-0.dll +0 -0
  281. aspose/netcore/netcore3.1/api-ms-win-core-file-l1-1-0.dll +0 -0
  282. aspose/netcore/netcore3.1/api-ms-win-core-file-l1-2-0.dll +0 -0
  283. aspose/netcore/netcore3.1/api-ms-win-core-file-l2-1-0.dll +0 -0
  284. aspose/netcore/netcore3.1/api-ms-win-core-handle-l1-1-0.dll +0 -0
  285. aspose/netcore/netcore3.1/api-ms-win-core-heap-l1-1-0.dll +0 -0
  286. aspose/netcore/netcore3.1/api-ms-win-core-interlocked-l1-1-0.dll +0 -0
  287. aspose/netcore/netcore3.1/api-ms-win-core-libraryloader-l1-1-0.dll +0 -0
  288. aspose/netcore/netcore3.1/api-ms-win-core-localization-l1-2-0.dll +0 -0
  289. aspose/netcore/netcore3.1/api-ms-win-core-memory-l1-1-0.dll +0 -0
  290. aspose/netcore/netcore3.1/api-ms-win-core-namedpipe-l1-1-0.dll +0 -0
  291. aspose/netcore/netcore3.1/api-ms-win-core-processenvironment-l1-1-0.dll +0 -0
  292. aspose/netcore/netcore3.1/api-ms-win-core-processthreads-l1-1-0.dll +0 -0
  293. aspose/netcore/netcore3.1/api-ms-win-core-processthreads-l1-1-1.dll +0 -0
  294. aspose/netcore/netcore3.1/api-ms-win-core-profile-l1-1-0.dll +0 -0
  295. aspose/netcore/netcore3.1/api-ms-win-core-rtlsupport-l1-1-0.dll +0 -0
  296. aspose/netcore/netcore3.1/api-ms-win-core-string-l1-1-0.dll +0 -0
  297. aspose/netcore/netcore3.1/api-ms-win-core-synch-l1-1-0.dll +0 -0
  298. aspose/netcore/netcore3.1/api-ms-win-core-synch-l1-2-0.dll +0 -0
  299. aspose/netcore/netcore3.1/api-ms-win-core-sysinfo-l1-1-0.dll +0 -0
  300. aspose/netcore/netcore3.1/api-ms-win-core-timezone-l1-1-0.dll +0 -0
  301. aspose/netcore/netcore3.1/api-ms-win-core-util-l1-1-0.dll +0 -0
  302. aspose/netcore/netcore3.1/api-ms-win-crt-conio-l1-1-0.dll +0 -0
  303. aspose/netcore/netcore3.1/api-ms-win-crt-convert-l1-1-0.dll +0 -0
  304. aspose/netcore/netcore3.1/api-ms-win-crt-environment-l1-1-0.dll +0 -0
  305. aspose/netcore/netcore3.1/api-ms-win-crt-filesystem-l1-1-0.dll +0 -0
  306. aspose/netcore/netcore3.1/api-ms-win-crt-heap-l1-1-0.dll +0 -0
  307. aspose/netcore/netcore3.1/api-ms-win-crt-locale-l1-1-0.dll +0 -0
  308. aspose/netcore/netcore3.1/api-ms-win-crt-math-l1-1-0.dll +0 -0
  309. aspose/netcore/netcore3.1/api-ms-win-crt-multibyte-l1-1-0.dll +0 -0
  310. aspose/netcore/netcore3.1/api-ms-win-crt-private-l1-1-0.dll +0 -0
  311. aspose/netcore/netcore3.1/api-ms-win-crt-process-l1-1-0.dll +0 -0
  312. aspose/netcore/netcore3.1/api-ms-win-crt-runtime-l1-1-0.dll +0 -0
  313. aspose/netcore/netcore3.1/api-ms-win-crt-stdio-l1-1-0.dll +0 -0
  314. aspose/netcore/netcore3.1/api-ms-win-crt-string-l1-1-0.dll +0 -0
  315. aspose/netcore/netcore3.1/api-ms-win-crt-time-l1-1-0.dll +0 -0
  316. aspose/netcore/netcore3.1/api-ms-win-crt-utility-l1-1-0.dll +0 -0
  317. aspose/netcore/netcore3.1/aspose.embed.coreclrwrap.dll +0 -0
  318. aspose/netcore/netcore3.1/clrcompression.dll +0 -0
  319. aspose/netcore/netcore3.1/clretwrc.dll +0 -0
  320. aspose/netcore/netcore3.1/clrjit.dll +0 -0
  321. aspose/netcore/netcore3.1/coreclr.dll +0 -0
  322. aspose/netcore/netcore3.1/dbgshim.dll +0 -0
  323. aspose/netcore/netcore3.1/hostfxr.dll +0 -0
  324. aspose/netcore/netcore3.1/hostpolicy.dll +0 -0
  325. aspose/netcore/netcore3.1/mscordaccore.dll +0 -0
  326. aspose/netcore/netcore3.1/mscordaccore_amd64_amd64_4.700.22.55902.dll +0 -0
  327. aspose/netcore/netcore3.1/mscordbi.dll +0 -0
  328. aspose/netcore/netcore3.1/mscorlib.dll +0 -0
  329. aspose/netcore/netcore3.1/mscorrc.debug.dll +0 -0
  330. aspose/netcore/netcore3.1/mscorrc.dll +0 -0
  331. aspose/netcore/netcore3.1/netstandard.dll +0 -0
  332. aspose/netcore/netcore3.1/ucrtbase.dll +0 -0
  333. aspose/pycore/__init__.pyi +57 -0
  334. aspose/pycore/__pyinstaller/__init__.pyi +1 -0
  335. aspose/pycore/__pyinstaller/hook-aspose.pycore.py +11 -0
  336. aspose/pycore/py.typed +0 -0
  337. aspose/pycore.cp310-win_amd64.pyd +0 -0
  338. aspose/pycore.cp311-win_amd64.pyd +0 -0
  339. aspose/pycore.cp312-win_amd64.pyd +0 -0
  340. aspose/pycore.cp313-win_amd64.pyd +0 -0
  341. aspose/pycore.cp35-win_amd64.pyd +0 -0
  342. aspose/pycore.cp36-win_amd64.pyd +0 -0
  343. aspose/pycore.cp37-win_amd64.pyd +0 -0
  344. aspose/pycore.cp38-win_amd64.pyd +0 -0
  345. aspose/pycore.cp39-win_amd64.pyd +0 -0
  346. aspose/pydrawing/__init__.pyi +4090 -0
  347. aspose/pydrawing/__pyinstaller/__init__.pyi +1 -0
  348. aspose/pydrawing/__pyinstaller/hook-aspose.pydrawing.py +9 -0
  349. aspose/pydrawing/design.pyi +24 -0
  350. aspose/pydrawing/drawing2d.pyi +1324 -0
  351. aspose/pydrawing/imaging.pyi +1988 -0
  352. aspose/pydrawing/printing.pyi +995 -0
  353. aspose/pydrawing/py.typed +0 -0
  354. aspose/pydrawing/text.pyi +75 -0
  355. aspose/pydrawing.cp310-win_amd64.pyd +0 -0
  356. aspose/pydrawing.cp311-win_amd64.pyd +0 -0
  357. aspose/pydrawing.cp312-win_amd64.pyd +0 -0
  358. aspose/pydrawing.cp313-win_amd64.pyd +0 -0
  359. aspose/pydrawing.cp35-win_amd64.pyd +0 -0
  360. aspose/pydrawing.cp36-win_amd64.pyd +0 -0
  361. aspose/pydrawing.cp37-win_amd64.pyd +0 -0
  362. aspose/pydrawing.cp38-win_amd64.pyd +0 -0
  363. aspose/pydrawing.cp39-win_amd64.pyd +0 -0
  364. aspose/pygc/__init__.pyi +8 -0
  365. aspose/pygc/__pyinstaller/__init__.pyi +1 -0
  366. aspose/pygc/__pyinstaller/hook-aspose.pygc.py +9 -0
  367. aspose/pygc.cp310-win_amd64.pyd +0 -0
  368. aspose/pygc.cp311-win_amd64.pyd +0 -0
  369. aspose/pygc.cp312-win_amd64.pyd +0 -0
  370. aspose/pygc.cp313-win_amd64.pyd +0 -0
  371. aspose/pygc.cp35-win_amd64.pyd +0 -0
  372. aspose/pygc.cp36-win_amd64.pyd +0 -0
  373. aspose/pygc.cp37-win_amd64.pyd +0 -0
  374. aspose/pygc.cp38-win_amd64.pyd +0 -0
  375. aspose/pygc.cp39-win_amd64.pyd +0 -0
  376. aspose/pyio/__init__.pyi +8 -0
  377. aspose/pyio/__pyinstaller/__init__.pyi +1 -0
  378. aspose/pyio/__pyinstaller/hook-aspose.pyio.py +9 -0
  379. aspose/pyio.cp310-win_amd64.pyd +0 -0
  380. aspose/pyio.cp311-win_amd64.pyd +0 -0
  381. aspose/pyio.cp312-win_amd64.pyd +0 -0
  382. aspose/pyio.cp313-win_amd64.pyd +0 -0
  383. aspose/pyio.cp35-win_amd64.pyd +0 -0
  384. aspose/pyio.cp36-win_amd64.pyd +0 -0
  385. aspose/pyio.cp37-win_amd64.pyd +0 -0
  386. aspose/pyio.cp38-win_amd64.pyd +0 -0
  387. aspose/pyio.cp39-win_amd64.pyd +0 -0
  388. aspose/pyreflection/__init__.pyi +12 -0
  389. aspose/pyreflection/__pyinstaller/__init__.pyi +1 -0
  390. aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py +9 -0
  391. aspose/pyreflection/py.typed +0 -0
  392. aspose/pyreflection.cp310-win_amd64.pyd +0 -0
  393. aspose/pyreflection.cp311-win_amd64.pyd +0 -0
  394. aspose/pyreflection.cp312-win_amd64.pyd +0 -0
  395. aspose/pyreflection.cp313-win_amd64.pyd +0 -0
  396. aspose/pyreflection.cp35-win_amd64.pyd +0 -0
  397. aspose/pyreflection.cp36-win_amd64.pyd +0 -0
  398. aspose/pyreflection.cp37-win_amd64.pyd +0 -0
  399. aspose/pyreflection.cp38-win_amd64.pyd +0 -0
  400. aspose/pyreflection.cp39-win_amd64.pyd +0 -0
  401. aspose_gis_net-24.12.0.dist-info/METADATA +285 -0
  402. aspose_gis_net-24.12.0.dist-info/RECORD +408 -0
  403. aspose_gis_net-24.12.0.dist-info/WHEEL +5 -0
  404. aspose_gis_net-24.12.0.dist-info/entry_points.txt +3 -0
  405. aspose_gis_net-24.12.0.dist-info/top_level.txt +1 -0
File without changes
@@ -0,0 +1,75 @@
1
+ import aspose.pydrawing
2
+ import aspose.pydrawing
3
+ import datetime
4
+ import decimal
5
+ import io
6
+ import uuid
7
+ from typing import Iterable
8
+ from enum import Enum
9
+
10
+ class PrivateFontCollection:
11
+
12
+ def __init__(self) -> None:
13
+ ...
14
+
15
+ def add_font_file(self, filename: str) -> None:
16
+ ...
17
+
18
+ @property
19
+ def families(self) -> list[aspose.pydrawing.FontFamily]:
20
+ ...
21
+
22
+ ...
23
+
24
+ class FontCollection:
25
+
26
+ @property
27
+ def families(self) -> list[aspose.pydrawing.FontFamily]:
28
+ ...
29
+
30
+ ...
31
+
32
+ class InstalledFontCollection:
33
+
34
+ def __init__(self) -> None:
35
+ ...
36
+
37
+ @property
38
+ def families(self) -> list[aspose.pydrawing.FontFamily]:
39
+ ...
40
+
41
+ ...
42
+
43
+ class GenericFontFamilies(Enum):
44
+
45
+ SERIF: int
46
+
47
+ SANS_SERIF: int
48
+
49
+ MONOSPACE: int
50
+
51
+
52
+ class HotkeyPrefix(Enum):
53
+
54
+ NONE: int
55
+
56
+ SHOW: int
57
+
58
+ HIDE: int
59
+
60
+
61
+ class TextRenderingHint(Enum):
62
+
63
+ SYSTEM_DEFAULT: int
64
+
65
+ SINGLE_BIT_PER_PIXEL_GRID_FIT: int
66
+
67
+ SINGLE_BIT_PER_PIXEL: int
68
+
69
+ ANTI_ALIAS_GRID_FIT: int
70
+
71
+ ANTI_ALIAS: int
72
+
73
+ CLEAR_TYPE_GRID_FIT: int
74
+
75
+
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,8 @@
1
+ """This module is not intended to be called explicitly"""
2
+
3
+ from typing import Any
4
+
5
+ def get_pyinstaller_hook_dirs() -> Any:
6
+ """Function required by PyInstaller. Returns paths to module
7
+ PyInstaller hooks. Not intended to be called explicitly."""
8
+ ...
@@ -0,0 +1 @@
1
+ """Pyinstaller hook folder"""
@@ -0,0 +1,9 @@
1
+ from PyInstaller.utils.hooks import get_package_paths
2
+ import os.path
3
+
4
+ (_, root) = get_package_paths('aspose')
5
+
6
+ datas = [(os.path.join(root, 'assemblies', 'pygc'), os.path.join('aspose', 'assemblies', 'pygc'))]
7
+
8
+ hiddenimports = [ 'aspose' ]
9
+
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,8 @@
1
+ """This module is not intended to be called explicitly"""
2
+
3
+ from typing import Any
4
+
5
+ def get_pyinstaller_hook_dirs() -> Any:
6
+ """Function required by PyInstaller. Returns paths to module
7
+ PyInstaller hooks. Not intended to be called explicitly."""
8
+ ...
@@ -0,0 +1 @@
1
+ """Pyinstaller hook folder"""
@@ -0,0 +1,9 @@
1
+ from PyInstaller.utils.hooks import get_package_paths
2
+ import os.path
3
+
4
+ (_, root) = get_package_paths('aspose')
5
+
6
+ datas = [(os.path.join(root, 'assemblies', 'pyio'), os.path.join('aspose', 'assemblies', 'pyio'))]
7
+
8
+ hiddenimports = [ 'aspose', 'aspose.pyreflection', 'aspose.pygc' ]
9
+
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,12 @@
1
+
2
+ """This module is not intended to be called explicitly"""
3
+
4
+ from typing import Any
5
+
6
+ def get_pyinstaller_hook_dirs() -> Any:
7
+ """Function required by PyInstaller. Returns paths to module
8
+ PyInstaller hooks. Not intended to be called explicitly."""
9
+ raise NotImplementedError()
10
+
11
+ class Type:
12
+ ...
@@ -0,0 +1 @@
1
+ """Pyinstaller hook folder"""
@@ -0,0 +1,9 @@
1
+ from PyInstaller.utils.hooks import get_package_paths
2
+ import os.path
3
+
4
+ (_, root) = get_package_paths('aspose')
5
+
6
+ datas = [(os.path.join(root, 'assemblies', 'pyreflection'), os.path.join('aspose', 'assemblies', 'pyreflection'))]
7
+
8
+ hiddenimports = [ 'aspose', 'aspose.pygc' ]
9
+
File without changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,285 @@
1
+ Metadata-Version: 2.1
2
+ Name: aspose-gis-net
3
+ Version: 24.12.0
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
+ Home-page: https://products.aspose.com/gis/python-net
6
+ Author: Aspose
7
+ License: Free To Use But Restricted,Other/Proprietary License
8
+ Project-URL: API Reference, https://reference.aspose.com/gis/python-net/
9
+ Project-URL: Blog, https://blog.aspose.com/categories/aspose.gis-product-family/
10
+ Project-URL: Demos, https://products.aspose.app/gis/family
11
+ Project-URL: Docs, https://docs.aspose.com/gis/python-net/
12
+ Project-URL: Examples, https://github.com/aspose-gis/Aspose.GIS-for-Python-NET
13
+ Project-URL: Free Support, https://forum.aspose.com/c/gis
14
+ Project-URL: Release Notes, https://docs.aspose.com/gis/python-net/release-notes/
15
+ Project-URL: Temporary License, https://purchase.aspose.com/temporary-license
16
+ Keywords: Cartography,map,Geo,Geographic,Geography,Geolocation,Geospatial,GIS,Latitude,Location,Longitude,Map,Mapping,Maps,.net,ascii,aspose,gis,geo,bmp,convert,converter,python,py,wheel,format,geometries,geometry,geoprocessing,generator,geotools,jpg,library,mapinfo,png,raster,render,rendering,srid,svg,tiff,GDB,KML,EPSG,GEOTIFF,GML,GPX,GDB,SHP,WKT,POSTGIS,ARCGIS,FILEGDB,GDBTABLE,SHAPEFILE,GEOJSON,TOPOJSON,MIF,OSM
17
+ Platform: win_amd64
18
+ Classifier: Development Status :: 5 - Production/Stable
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: Intended Audience :: Education
21
+ Classifier: Intended Audience :: Other Audience
22
+ Classifier: Operating System :: Microsoft :: Windows
23
+ Classifier: Operating System :: POSIX :: Linux
24
+ Classifier: Operating System :: Unix
25
+ Classifier: Operating System :: MacOS :: MacOS X
26
+ Classifier: Environment :: MacOS X
27
+ Classifier: Topic :: Office/Business
28
+ Classifier: Topic :: Software Development
29
+ Classifier: Topic :: Software Development :: Libraries
30
+ Classifier: Topic :: Multimedia :: Graphics
31
+ Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
32
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Programming Language :: Python :: 3 :: Only
35
+ Classifier: Programming Language :: Python :: 3.5
36
+ Classifier: Programming Language :: Python :: 3.6
37
+ Classifier: Programming Language :: Python :: 3.7
38
+ Classifier: Programming Language :: Python :: 3.8
39
+ Classifier: Programming Language :: Python :: 3.9
40
+ Classifier: Programming Language :: Python :: 3.10
41
+ Classifier: Programming Language :: Python :: 3.11
42
+ Classifier: Programming Language :: Python :: 3.12
43
+ Classifier: Programming Language :: Python :: 3.13
44
+ Requires-Python: >=3.5,<3.14
45
+ Description-Content-Type: text/markdown
46
+
47
+ ## GIS Formats Analyzing and Manipulation API
48
+
49
+ [Product Page](https://products.aspose.com/gis/python-net/) | [Documentation](https://docs.aspose.com/gis/python-net/) | [Demos](https://products.aspose.app/gis/family) | [Blog](https://blog.aspose.com/categories/aspose.gis-product-family/) | [API Reference](https://reference.aspose.com/gis/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/gis) | [Temporary License](https://purchase.aspose.com/temporary-license) | [EULA](https://company.aspose.com/legal/eula)
50
+
51
+ ---
52
+ Try our [free online Apps](https://products.aspose.app/gis/family) demonstrating some of the most popular Aspose.GIS functionality.
53
+
54
+ **Aspose.GIS for Python via .NET** is a robust API designed for developers to handle geospatial data formats without relying on external GIS software. It facilitates the reading, writing, and conversion of multiple GIS formats, along with rendering maps and performing geometry creation and analysis. This makes it an all-encompassing solution for GIS-related tasks within Python applications. It's crossplatform: Windows, MacOS, MacOS-ARM, Linux are supported.
55
+
56
+ **Aspose.GIS for Python via .NET** is an ultimate, flexible, stable and powerful API to work with most kinds of GIS Formats. **Aspose.GIS** is a cross-platform library, it is Windows x32/x64, Linux x64, and MacOS x64/Arm64 compatible.
57
+
58
+ > Aspose.GIS for Python requires you to use python programming language. For the additional languages please visit [Aspose.GIS Family Official Page](https://products.aspose.com/gis/), we recommend you to check [Aspose.GIS for .NET](https://www.nuget.org/packages/Aspose.GIS/).
59
+
60
+ ## **Product Features**
61
+
62
+ The following are Aspose.GIS’s core features:
63
+ - Support of Vector and Raster GIS Layers
64
+ - Reading, Editing and Creating Layers Features
65
+ - Database integration
66
+ - Built-in configurable rendering of Vector and Raster Images onto Maps
67
+ - Geometry Types Analytics Features
68
+ - Flexible filtering of Layers, Features and Attributes
69
+ - Spatial Reference Systems Convert and Casting Features
70
+ - Streams and Remote Storage Support
71
+
72
+ ## **Supported File Formats**
73
+
74
+ ### Vector Formats
75
+
76
+ The following table lists the vector formats that Aspose.GIS for Python can read or write.
77
+
78
+ | Description | Format | Read | Write |
79
+ |--------------------------------------------------|------------------------------------------|------|-------|
80
+ | ESRI Shapefile | .shp, .shx, .dbf, .qix, .cpg | ✔️ | ✔️ |
81
+ | GeoJSON | .json, .geojson | ✔️ | ✔️ |
82
+ | GeoJSON Seq | .json, .geojson | ✔️ | ✔️ |
83
+ | ESRI File Geodatabase (FileGDB) | .gdb | ✔️ | ✔️ |
84
+ | Geography Markup Language | .gml | ✔️ | |
85
+ | Keyhole Markup Language | .kml | ✔️ | ✔️ |
86
+ | GPS Exchange Format | .gpx | ✔️ | ✔️ |
87
+ | TopoJSON | .json, .topojson | ✔️ | ✔️ |
88
+ | MapInfo Interchange Format | .mif | ✔️ | |
89
+ | MapInfo TAB format | .tab, .dat, .dbf, .map, .id | ✔️ | ✔️ |
90
+ | OpenStreetMap (OSM) XML | .osm | ✔️ | ✔️ |
91
+ | Comma-Separated Values | .csv | ✔️ | ✔️ |
92
+
93
+ ### Supported Databases
94
+
95
+ The following table lists the supported databases. Possible, additional DB are supported, because Aspose.GIS supports unified way to work with DBs. But please note, first version of Aspose.GIS for Python via .NET has some limitation with generic methods, filtering and DB.
96
+
97
+ ```markdown
98
+ | Description | Read | Write |
99
+ |---------------------|------|-------|
100
+ | Post GIS | ✔️ | ✔️ |
101
+ | SQL Server (MS SQL) | ✔️ | ✔️ |
102
+ | PostgreSQL | ✔️ | ✔️ |
103
+ ```
104
+
105
+ ### Raster Formats
106
+
107
+ The following table lists the raster formats that Aspose.GIS for .NET can only read.
108
+
109
+ | Description | Format | Read |
110
+ |---------------------|----------------------------|------|
111
+ | Geo TIFF, TIFF | .tiff, .tif | ✔️ |
112
+ | Esri ASCII | .ascii | ✔️ |
113
+ | World File | (.png, .jpg, .tiff) + .pgw | ✔️ |
114
+
115
+ ### Web Tiles
116
+
117
+ The following web tile formats can be loaded from the Internet.
118
+
119
+ | Format | Description |
120
+ |------------|-----------------|
121
+ | XYZ Tiles | Slippy Maps |
122
+
123
+ ### Map Rendering Formats
124
+
125
+ Maps can be rendered into the following formats.
126
+
127
+ | Format | Description |
128
+ |--------|------------------------------|
129
+ | .SVG | Scalable Vector Graphics |
130
+ | .PNG | Portable Network Graphics |
131
+ | .JPG | JPEG |
132
+ | .BMP | Bitmap Image Files |
133
+
134
+
135
+ ### Platform Independence
136
+
137
+ Aspose.GIS for Python can be used to develop applications for a wide range of operating systems, such as Windows (x32/x64), Linux (x64), and MacOS (x64/arm64) where Python 3.5 or later is installed.
138
+
139
+ **The base .NET platform is .NET Standard 2.0**
140
+
141
+ ### Get Started
142
+
143
+ Ready to give Aspose.GIS for Python a try?
144
+
145
+ Simply run ```pip install aspose-gis-net``` from the console to fetch the package. If you already have Aspose.GIS for Python and want to upgrade the version, please run ```pip install --upgrade aspose-gis-net``` to get the latest version.
146
+
147
+ You can run the following snippets in your environment to see how Aspose.GIS works, or check out the [GitHub Repository](https://github.com/aspose-gis/Aspose.PSD-for-Python-Net) or [Aspose.PSD for Python Documentation](https://docs.aspose.com/gis/python-net/) for other common use cases.
148
+
149
+ ### Convert one GIS format to another
150
+ ``` python
151
+
152
+ source_format_path = "sample.geojson"
153
+ destination_format_path = "output.topojson")
154
+
155
+ # Perform the conversion
156
+ VectorLayer.convert(source_format_path, Drivers.geo_json, destination_format_path, Drivers.topo_json)
157
+
158
+ # Check the list of supported drivers: esri_json, gdal, geo_json, geo_json_seq, in_memory, in_file, kml, shapefile, osm_xml, gpx, gml, file_gdb, topo_json, map_info_interchange, map_info_tab, post_gis, sql_server, esri_ascii, geo_tiff, world_raster, jpeg_w, png_w, bmp_w, tiff_w, xyz_tiles, csv
159
+ # Please note there can be unsupported conversion pairs
160
+
161
+ ```
162
+
163
+ ### Rendering of map from the several Layers
164
+
165
+ ```
166
+ bandColor = BandColor()
167
+
168
+ bandColor.band_index = 0
169
+ bandColor.min = 0
170
+ bandColor.max = 255
171
+
172
+ color = MultiBandColor()
173
+ color.red_band = bandColor
174
+
175
+ with Map(Measurement.pixels(500), Measurement.pixels(500)) as map_instance:
176
+ layer = Drivers.geo_tiff.open_layer("raster_float32.tif"))
177
+ map_instance.add(layer, color, False)
178
+ map_instance.render(output, Renderers.svg)
179
+ ```
180
+
181
+ ### Create a Layer of specified format from scratch
182
+ ``` python
183
+ result = "sample_out.topojson"
184
+
185
+ with Drivers.topo_json.create_layer(result) as layer:
186
+ # Add attributes that we are going to set
187
+ layer.attributes.add(FeatureAttribute("name", AttributeDataType.STRING))
188
+ layer.attributes.add(FeatureAttribute("measurement", AttributeDataType.DOUBLE))
189
+ layer.attributes.add(FeatureAttribute("id", AttributeDataType.INTEGER))
190
+
191
+ feature0 = layer.construct_feature()
192
+ feature0.set_value("name", "name_0")
193
+ feature0.set_value("measurement", 1.03)
194
+ feature0.set_value("id", 0)
195
+ feature0.geometry = Point(1.3, 2.3)
196
+ layer.add(feature0)
197
+
198
+ feature1 = layer.construct_feature()
199
+ feature1.set_value("name", "name_1")
200
+ feature1.set_value("measurement", 10.03)
201
+ feature1.set_value("id", 1)
202
+ feature1.geometry = Point(241.32, 23.2)
203
+ layer.add(feature1)
204
+ ```
205
+
206
+ ### Get Value Of A Feature Attribute
207
+ ``` python
208
+ input = "InputShapeFile.shp"
209
+
210
+ with VectorLayer.open(input, Drivers.shapefile) as layer:
211
+ for i in range(layer.count):
212
+ feature = layer[i]
213
+
214
+ # case 1
215
+ name_value = feature.get_value("name") # attribute name is case-sensitive
216
+ age_value = feature.get_value("age")
217
+ dob_value = datetime.fromisoformat(feature.get_value("dob")).strftime("%Y-%m-%d")
218
+
219
+ print(f"Attribute value for feature #{i} is: {name_value}, {age_value}, {dob_value}")
220
+
221
+ # case 2
222
+ obj_name = feature.get_value("name") # attribute name is case-sensitive
223
+ obj_age = feature.get_value("age")
224
+ obj_dob = feature.get_value("dob")
225
+
226
+ print(f"Attribute object for feature #{i} is: {obj_name}, {obj_age}, {obj_dob}")
227
+ ```
228
+
229
+ ### Iterate Over Geometries In Geometry
230
+ ``` python
231
+ point_geometry = Point(40.7128, -74.006)
232
+ line_geometry = LineString()
233
+ line_geometry.add_point(78.65, -32.65)
234
+ line_geometry.add_point(-98.65, 12.65)
235
+ geometry_collection = GeometryCollection()
236
+ geometry_collection.add(point_geometry)
237
+ geometry_collection.add(line_geometry)
238
+
239
+ for geometry in geometry_collection:
240
+ if geometry.geometry_type == GeometryType.POINT:
241
+ point = geometry
242
+ assert str(point) == "POINT (40.7128 -74.006)"
243
+ elif geometry.geometry_type == GeometryType.LINE_STRING:
244
+ line = geometry
245
+ assert str(line) == "LINESTRING (78.65 -32.65, -98.65 12.65)"
246
+ ```
247
+
248
+ ### Example of specific GIS operations
249
+ ``` python
250
+ # Getting the Centroid
251
+
252
+ polygon = Polygon()
253
+ ring = LinearRing()
254
+ ring.add_point(1, 0)
255
+ ring.add_point(2, 2)
256
+ ring.add_point(0, 4)
257
+ ring.add_point(5, 5)
258
+ ring.add_point(6, 1)
259
+ ring.add_point(1, 0)
260
+
261
+ polygon.exterior_ring = ring
262
+
263
+ # Get the centroid of the polygon
264
+ centroid = polygon.get_centroid()
265
+
266
+ # Get the point on surface. Point on surface is guaranteed to be inside a polygon.
267
+ point_on_surface = polygon.get_point_on_surface()
268
+
269
+ # Get the Area of Polygon.
270
+ area = multi_polygon.polygon()
271
+ ```
272
+
273
+ ### Set License Example
274
+ ``` python
275
+ from aspose.gis import License
276
+
277
+ license = License()
278
+ licensePath = "PathToLicenseFile"
279
+ license.set_license(licensePath)
280
+ ```
281
+
282
+ ---
283
+ [Product Page](https://products.aspose.com/gis/python-net/) | [Documentation](https://docs.aspose.com/gis/python-net/) | [Demos](https://products.aspose.app/gis/family) | [Blog](https://blog.aspose.com/categories/aspose.gis-product-family/) | [API Reference](https://reference.aspose.com/gis/python-net/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/gis) | [Temporary License](https://purchase.aspose.com/temporary-license) | [EULA](https://company.aspose.com/legal/eula)
284
+
285
+