Fluxera.Spatial.LiteDB 6.0.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Fluxera.Spatial.LiteDB --version 6.0.3
NuGet\Install-Package Fluxera.Spatial.LiteDB -Version 6.0.3
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="Fluxera.Spatial.LiteDB" Version="6.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluxera.Spatial.LiteDB --version 6.0.3
#r "nuget: Fluxera.Spatial.LiteDB, 6.0.3"
#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 Fluxera.Spatial.LiteDB as a Cake Addin
#addin nuget:?package=Fluxera.Spatial.LiteDB&version=6.0.3

// Install Fluxera.Spatial.LiteDB as a Cake Tool
#tool nuget:?package=Fluxera.Spatial.LiteDB&version=6.0.3

Fluxera.Spatial

A libary that provides spatial types based on GeoJSON defined in RFC 7946.

Usage

Just use the provied structs to define your classes that need gep-spatial informations in it.

public sealed class Restaurant
{
	public string Name { get; set; }

	public Point Location { get; set; }
}

Supported GeoJSON objects

This libary privide an inclomple implementation of RFC 7946 at the moment. The basic geometries are supported.

  • Point
  • MultiPoint
  • LineString
  • MultiLineString
  • Polygon
  • MultiPolygon
  • GeometryCollection

Please refer to the documentation of RFC 7946 for details.

Serialization Support

At the moment serialization support is available for:

The serializers make shure that the objects are serialized in the GeoJSON format and in case of databases also stored im the correct format to support indexing and geo queries.

Newtonsoft.Json (JSON.NET)

To support the GeoJSON objects in JSON.NET use the UseSpatial extension method on the JsonSerializerSettings.

JsonSerializerSettings settings = new JsonSerializerSettings();

// Use the serialization support for GeoJSON objects.
settings.UseSpatial();

JsonConvert.DefaultSettings = () => settings;

LiteDB

To support the GeoJSON objects in LiteDB use the UseSpatial extension method on the global BsonMapper.

BsonMapper.Global.UseSpatial();

MongoDB

To support the GeoJSON objects in MongoDB use the UseSpatial extension method on a ConventionPack.

ConventionPack pack = new ConventionPack();
pack.UseSpatial();
ConventionRegistry.Register("ConventionPack", pack, t => true);

System.Text.Json

To support the GeoJSON objects in System.Text.Json use the UseSpatial extension method on the JsonSerializerOptions.

private JsonSerializerOptions options;

this.options = new JsonSerializerOptions
{
	WriteIndented = false
};
this.options.UseSpatial();

JsonSerializer.Serialize(Point.Empty, this.options);

References

RFC 7946

Future

We plan to add support for EFCore and OData and to add the missing pieces of the RFC Specification.

Product 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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Fluxera.Spatial.LiteDB:

Package Downloads
Fluxera.Repository.LiteDB The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A LiteDB repository implementation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.4 79 3/19/2024
8.0.3 171 2/22/2024
8.0.2 356 1/4/2024
8.0.1 191 11/23/2023
8.0.0 124 11/15/2023
7.1.6 226 7/23/2023
7.1.5 140 7/20/2023
7.1.4 165 6/21/2023
7.1.3 372 4/13/2023
7.1.2 260 3/16/2023
7.1.1 302 2/24/2023
7.1.0 391 1/18/2023
7.0.6 437 12/22/2022
7.0.5 320 12/13/2022
7.0.4 401 12/9/2022
7.0.3 385 11/15/2022
7.0.2 365 11/12/2022
7.0.0 333 11/9/2022
6.1.4 1,611 9/15/2022
6.1.3 620 7/30/2022
6.1.2 633 6/30/2022
6.1.1 627 6/15/2022
6.1.0 771 6/7/2022
6.0.9 1,855 5/28/2022
6.0.8 401 5/28/2022
6.0.7 1,525 5/5/2022
6.0.5 666 4/20/2022
6.0.4 973 3/26/2022
6.0.3 402 3/24/2022
6.0.2 435 2/25/2022