aspose-gis-net 24.12.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.
- .__pyi_patched +0 -0
- aspose/__init__.py +82 -0
- aspose/__pyinstaller/__init__.pyi +1 -0
- aspose/__pyinstaller/hook-aspose.py +10 -0
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/gis/Newtonsoft.Json.dll +0 -0
- aspose/assemblies/gis/System.Drawing.Common.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
- aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/pydrawing/System.Drawing.Common.dll +0 -0
- aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
- aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
- aspose/assemblies/pyio/WrpInterop.Aspose.PyIO.dll +0 -0
- aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
- aspose/gis/__init__.pyi +2535 -0
- aspose/gis/__nuitka/__init__.pyi +1 -0
- aspose/gis/__nuitka/aspose-gis.nuitka-package.config.yml +20 -0
- aspose/gis/__pyinstaller/__init__.pyi +1 -0
- aspose/gis/__pyinstaller/hook-aspose.gis.py +9 -0
- aspose/gis/common/__init__.pyi +1028 -0
- aspose/gis/common/formats/__init__.pyi +98 -0
- aspose/gis/common/formats/dbase/__init__.pyi +250 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +1022 -0
- aspose/gis/common/formats/mapinfo/__init__.pyi +346 -0
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +662 -0
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +217 -0
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +163 -0
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +139 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +430 -0
- aspose/gis/common/formats/wkb/__init__.pyi +120 -0
- aspose/gis/common/formats/wkt/__init__.pyi +420 -0
- aspose/gis/common/formats/xml/__init__.pyi +173 -0
- aspose/gis/common/io/__init__.pyi +290 -0
- aspose/gis/epsg/__init__.pyi +357 -0
- aspose/gis/formats/__init__.pyi +91 -0
- aspose/gis/formats/bmpw/__init__.pyi +134 -0
- aspose/gis/formats/csv/__init__.pyi +608 -0
- aspose/gis/formats/database/__init__.pyi +173 -0
- aspose/gis/formats/database/dataediting/__init__.pyi +105 -0
- aspose/gis/formats/database/fromdefinition/__init__.pyi +141 -0
- aspose/gis/formats/esriascii/__init__.pyi +292 -0
- aspose/gis/formats/esrijson/__init__.pyi +512 -0
- aspose/gis/formats/filegdb/__init__.pyi +722 -0
- aspose/gis/formats/gdal/__init__.pyi +478 -0
- aspose/gis/formats/geojson/__init__.pyi +620 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +572 -0
- aspose/gis/formats/geotiff/__init__.pyi +292 -0
- aspose/gis/formats/gml/__init__.pyi +545 -0
- aspose/gis/formats/gpx/__init__.pyi +543 -0
- aspose/gis/formats/infile/__init__.pyi +582 -0
- aspose/gis/formats/inmemory/__init__.pyi +337 -0
- aspose/gis/formats/jpegw/__init__.pyi +134 -0
- aspose/gis/formats/kml/__init__.pyi +556 -0
- aspose/gis/formats/kml/styles/__init__.pyi +636 -0
- aspose/gis/formats/mapinfointerchange/__init__.pyi +501 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +530 -0
- aspose/gis/formats/osmxml/__init__.pyi +543 -0
- aspose/gis/formats/pngw/__init__.pyi +134 -0
- aspose/gis/formats/postgis/__init__.pyi +262 -0
- aspose/gis/formats/shapefile/__init__.pyi +511 -0
- aspose/gis/formats/sqlserver/__init__.pyi +248 -0
- aspose/gis/formats/tiffw/__init__.pyi +134 -0
- aspose/gis/formats/topojson/__init__.pyi +596 -0
- aspose/gis/formats/worldfile/__init__.pyi +134 -0
- aspose/gis/formats/xyztile/__init__.pyi +132 -0
- aspose/gis/geometries/__init__.pyi +15970 -0
- aspose/gis/geotools/__init__.pyi +519 -0
- aspose/gis/geotools/extensions/__init__.pyi +107 -0
- aspose/gis/geotools/layersmap/__init__.pyi +311 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +141 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +187 -0
- aspose/gis/imagemetadata/__init__.pyi +297 -0
- aspose/gis/indexing/__init__.pyi +103 -0
- aspose/gis/indexing/bplustree/__init__.pyi +118 -0
- aspose/gis/indexing/qixtree/__init__.pyi +121 -0
- aspose/gis/indexing/rtree/__init__.pyi +153 -0
- aspose/gis/labeling/__init__.pyi +235 -0
- aspose/gis/labeling/line/__init__.pyi +279 -0
- aspose/gis/painting/__init__.pyi +790 -0
- aspose/gis/projections/__init__.pyi +272 -0
- aspose/gis/py.typed +0 -0
- aspose/gis/raster/__init__.pyi +586 -0
- aspose/gis/raster/web/__init__.pyi +127 -0
- aspose/gis/relationship/__init__.pyi +91 -0
- aspose/gis/relationship/joins/__init__.pyi +161 -0
- aspose/gis/rendering/__init__.pyi +572 -0
- aspose/gis/rendering/colorizers/__init__.pyi +202 -0
- aspose/gis/rendering/formats/__init__.pyi +91 -0
- aspose/gis/rendering/formats/bmp/__init__.pyi +111 -0
- aspose/gis/rendering/formats/jpeg/__init__.pyi +111 -0
- aspose/gis/rendering/formats/png/__init__.pyi +111 -0
- aspose/gis/rendering/formats/svg/__init__.pyi +111 -0
- aspose/gis/rendering/labelings/__init__.pyi +416 -0
- aspose/gis/rendering/sld/__init__.pyi +109 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +882 -0
- aspose/gis/spatialreferencing/__init__.pyi +3005 -0
- aspose/gis/topology/__init__.pyi +342 -0
- aspose/gis/topology/algorithms/__init__.pyi +98 -0
- aspose/gis/topology/buffer/__init__.pyi +214 -0
- aspose/gis/topology/graph/__init__.pyi +338 -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/netcore/netcore6.0/Microsoft.CSharp.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.VisualBasic.Core.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.VisualBasic.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.Win32.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.Win32.Registry.dll +0 -0
- aspose/netcore/netcore6.0/System.AppContext.dll +0 -0
- aspose/netcore/netcore6.0/System.Buffers.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Concurrent.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Immutable.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.NonGeneric.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Specialized.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.Annotations.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.DataAnnotations.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.EventBasedAsync.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.TypeConverter.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.dll +0 -0
- aspose/netcore/netcore6.0/System.Configuration.dll +0 -0
- aspose/netcore/netcore6.0/System.Console.dll +0 -0
- aspose/netcore/netcore6.0/System.Core.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.Common.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.DataSetExtensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Contracts.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Debug.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.DiagnosticSource.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.FileVersionInfo.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Process.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.StackTrace.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.TextWriterTraceListener.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Tools.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.TraceSource.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Tracing.dll +0 -0
- aspose/netcore/netcore6.0/System.Drawing.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Drawing.dll +0 -0
- aspose/netcore/netcore6.0/System.Dynamic.Runtime.dll +0 -0
- aspose/netcore/netcore6.0/System.Formats.Asn1.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.Calendars.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.Brotli.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.FileSystem.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.ZipFile.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.DriveInfo.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.Watcher.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.IsolatedStorage.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.MemoryMappedFiles.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Pipes.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Pipes.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.UnmanagedMemoryStream.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Expressions.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Parallel.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Queryable.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Memory.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Http.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Http.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.HttpListener.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Mail.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.NameResolution.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.NetworkInformation.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Ping.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Quic.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Requests.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Security.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.ServicePoint.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Sockets.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebClient.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebHeaderCollection.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebProxy.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebSockets.Client.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebSockets.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.dll +0 -0
- aspose/netcore/netcore6.0/System.Numerics.Vectors.dll +0 -0
- aspose/netcore/netcore6.0/System.Numerics.dll +0 -0
- aspose/netcore/netcore6.0/System.ObjectModel.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.CoreLib.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.DataContractSerialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Uri.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Xml.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.DispatchProxy.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.ILGeneration.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.Lightweight.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Metadata.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.TypeExtensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.Reader.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.ResourceManager.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.Writer.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.CompilerServices.Unsafe.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.CompilerServices.VisualC.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Handles.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.InteropServices.RuntimeInformation.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.InteropServices.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Intrinsics.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Loader.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Numerics.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Formatters.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Claims.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Algorithms.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Cng.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Csp.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Encoding.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.OpenSsl.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.X509Certificates.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Principal.Windows.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Principal.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.SecureString.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.dll +0 -0
- aspose/netcore/netcore6.0/System.ServiceModel.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.ServiceProcess.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.CodePages.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encodings.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.RegularExpressions.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Channels.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Overlapped.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Dataflow.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Parallel.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Thread.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.ThreadPool.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Timer.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.dll +0 -0
- aspose/netcore/netcore6.0/System.Transactions.Local.dll +0 -0
- aspose/netcore/netcore6.0/System.Transactions.dll +0 -0
- aspose/netcore/netcore6.0/System.ValueTuple.dll +0 -0
- aspose/netcore/netcore6.0/System.Web.HttpUtility.dll +0 -0
- aspose/netcore/netcore6.0/System.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.Windows.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.ReaderWriter.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.Serialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XPath.XDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XPath.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XmlDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XmlSerializer.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.dll +0 -0
- aspose/netcore/netcore6.0/WindowsBase.dll +0 -0
- aspose/netcore/netcore6.0/createdump +0 -0
- aspose/netcore/netcore6.0/libSystem.Globalization.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.IO.Compression.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Net.Security.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Security.Cryptography.Native.Apple.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Security.Cryptography.Native.OpenSsl.dylib +0 -0
- aspose/netcore/netcore6.0/libaspose.embed.coreclrwrap.dylib +0 -0
- aspose/netcore/netcore6.0/libclrjit.dylib +0 -0
- aspose/netcore/netcore6.0/libcoreclr.dylib +0 -0
- aspose/netcore/netcore6.0/libdbgshim.dylib +0 -0
- aspose/netcore/netcore6.0/libhostfxr.dylib +0 -0
- aspose/netcore/netcore6.0/libhostpolicy.dylib +0 -0
- aspose/netcore/netcore6.0/libmscordaccore.dylib +0 -0
- aspose/netcore/netcore6.0/libmscordbi.dylib +0 -0
- aspose/netcore/netcore6.0/mscorlib.dll +0 -0
- aspose/netcore/netcore6.0/netstandard.dll +0 -0
- aspose/pycore/__init__.pyi +57 -0
- aspose/pycore/__pyinstaller/__init__.pyi +1 -0
- aspose/pycore/__pyinstaller/hook-aspose.pycore.py +11 -0
- aspose/pycore/py.typed +0 -0
- aspose/pycore.cpython-310-darwin.so +0 -0
- aspose/pycore.cpython-311-darwin.so +0 -0
- aspose/pycore.cpython-312-darwin.so +0 -0
- aspose/pycore.cpython-313-darwin.so +0 -0
- aspose/pycore.cpython-38-darwin.so +0 -0
- aspose/pycore.cpython-39-darwin.so +0 -0
- aspose/pydrawing/__init__.pyi +4090 -0
- aspose/pydrawing/__pyinstaller/__init__.pyi +1 -0
- aspose/pydrawing/__pyinstaller/hook-aspose.pydrawing.py +9 -0
- aspose/pydrawing/design.pyi +24 -0
- aspose/pydrawing/drawing2d.pyi +1324 -0
- aspose/pydrawing/imaging.pyi +1988 -0
- aspose/pydrawing/printing.pyi +995 -0
- aspose/pydrawing/py.typed +0 -0
- aspose/pydrawing/text.pyi +75 -0
- aspose/pydrawing.cpython-310-darwin.so +0 -0
- aspose/pydrawing.cpython-311-darwin.so +0 -0
- aspose/pydrawing.cpython-312-darwin.so +0 -0
- aspose/pydrawing.cpython-313-darwin.so +0 -0
- aspose/pydrawing.cpython-38-darwin.so +0 -0
- aspose/pydrawing.cpython-39-darwin.so +0 -0
- aspose/pygc/__init__.pyi +8 -0
- aspose/pygc/__pyinstaller/__init__.pyi +1 -0
- aspose/pygc/__pyinstaller/hook-aspose.pygc.py +9 -0
- aspose/pygc.cpython-310-darwin.so +0 -0
- aspose/pygc.cpython-311-darwin.so +0 -0
- aspose/pygc.cpython-312-darwin.so +0 -0
- aspose/pygc.cpython-313-darwin.so +0 -0
- aspose/pygc.cpython-38-darwin.so +0 -0
- aspose/pygc.cpython-39-darwin.so +0 -0
- aspose/pyio/__init__.pyi +8 -0
- aspose/pyio/__pyinstaller/__init__.pyi +1 -0
- aspose/pyio/__pyinstaller/hook-aspose.pyio.py +9 -0
- aspose/pyio.cpython-310-darwin.so +0 -0
- aspose/pyio.cpython-311-darwin.so +0 -0
- aspose/pyio.cpython-312-darwin.so +0 -0
- aspose/pyio.cpython-313-darwin.so +0 -0
- aspose/pyio.cpython-38-darwin.so +0 -0
- aspose/pyio.cpython-39-darwin.so +0 -0
- aspose/pyreflection/__init__.pyi +12 -0
- aspose/pyreflection/__pyinstaller/__init__.pyi +1 -0
- aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py +9 -0
- aspose/pyreflection/py.typed +0 -0
- aspose/pyreflection.cpython-310-darwin.so +0 -0
- aspose/pyreflection.cpython-311-darwin.so +0 -0
- aspose/pyreflection.cpython-312-darwin.so +0 -0
- aspose/pyreflection.cpython-313-darwin.so +0 -0
- aspose/pyreflection.cpython-38-darwin.so +0 -0
- aspose/pyreflection.cpython-39-darwin.so +0 -0
- aspose_gis_net-24.12.0.dist-info/METADATA +285 -0
- aspose_gis_net-24.12.0.dist-info/RECORD +349 -0
- aspose_gis_net-24.12.0.dist-info/WHEEL +5 -0
- aspose_gis_net-24.12.0.dist-info/entry_points.txt +3 -0
- 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
|
aspose/pygc/__init__.pyi
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Pyinstaller hook folder"""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
aspose/pyio/__init__.pyi
ADDED
|
@@ -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
|
|
@@ -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
|
|
@@ -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: macos_arm64
|
|
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
|
+
|