Gdal.Npgsql
8.0.2.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Gdal.Npgsql --version 8.0.2.1
NuGet\Install-Package Gdal.Npgsql -Version 8.0.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Gdal.Npgsql" Version="8.0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gdal.Npgsql --version 8.0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Gdal.Npgsql, 8.0.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Gdal.Npgsql as a Cake Addin #addin nuget:?package=Gdal.Npgsql&version=8.0.2.1 // Install Gdal.Npgsql as a Cake Tool #tool nuget:?package=Gdal.Npgsql&version=8.0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
The package is an Npgsql plugin that allows you to interact with spatial data provided by the PostgreSQL PostGIS extension. On the .NET side, the plugin adds support for geometry types from the GDAL(OGR) library, allowing you to read and write them directly to PostgreSQL.
GDAL is connected via the nuget package MaxRev.Gdal.Core
To use the NetTopologySuite plugin, add a dependency on this package and create an NpgsqlDataSource. There are two ways to interact with PostGIS:
- dataSourceBuilder.UseGdal(); The types Gdal.OGR: Geometry will be used. There will be no projection information. When writing to the database, the value will be srid=0.
var dataSourceBuilder = new NpgsqlDataSourceBuilder(ConnectionString);
dataSourceBuilder.UseGdal();
var dataSource = dataSourceBuilder.Build();
using (var conn = await dataSource.OpenConnectionAsync())
{
var point = Geometry.CreateFromWkt("POINT (30 10)");
var cm = conn.CreateCommand();
cm.CommandText = "CREATE TEMP TABLE data (geom GEOMETRY)";
await cm.ExecuteNonQueryAsync();
using (var cmd = new NpgsqlCommand("INSERT INTO data (geom) VALUES (@p)", conn))
{
cmd.Parameters.AddWithValue("@p", point);
cmd.ExecuteNonQuery();
}
using (var cmd = new NpgsqlCommand("SELECT geom FROM data", conn))
using (var reader = cmd.ExecuteReader())
{
reader.Read();
var g = (reader[0] as Geometry)!;
Assert.IsTrue(point.Equal(g));
}
}
- dataSourceBuilder.UseGdalExt(); You need to use the ExtGeometry class, which contains 2 properties: Geometry and SRID.
var dataSourceBuilder = new NpgsqlDataSourceBuilder(ConnectionString);
dataSourceBuilder.UseGdalExt();
var dataSource = dataSourceBuilder.Build();
using (var conn = await dataSource.OpenConnectionAsync())
{
Geometry point = Geometry.CreateFromWkt("POINT (30 10)");
var cm = conn.CreateCommand();
cm.CommandText = "CREATE TEMP TABLE data (geom GEOMETRY)";
await cm.ExecuteNonQueryAsync();
var pointExt = ExtGeometry.Create(point);
using (var cmd = new NpgsqlCommand("INSERT INTO data (geom) VALUES (@p)", conn))
{
cmd.Parameters.AddWithValue("@p", pointExt);
cmd.ExecuteNonQuery();
}
using (var cmd = new NpgsqlCommand("SELECT geom FROM data", conn))
using (var reader = cmd.ExecuteReader())
{
reader.Read();
var eg = (reader[0] as ExtGeometry)!;
Assert.IsTrue(point.Equal(eg.Geometry));
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- MaxRev.Gdal.Core (>= 3.8.3.286)
- Npgsql (>= 8.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.