Skip to content

SpatialLITE is lightweight .NET Core library for spatial data processing.

License

Notifications You must be signed in to change notification settings

lukaskabrt/SpatialLITE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpatialLITE

SpatialLITE is a lightweight .NET Core library for spatial data processing.

Build Status

Features

  • Reads / writes data in variety of formats
    • WKT (Well-known text)
    • WKB (Well-known binary)
    • GPX
    • OpenStreetMap XML
    • OpenStreetMap PBF
  • Analytics functions
    • Distance / area calculations
    • Basic topology analysis

Getting started

Install the NuGet package:

Install-Package SpatialLite.Core

Use library:

var geometry = WktReader.Parse<LineString>("linestring (-10.1 15.5, 20.2 -25.5, 30.3 35.5)");

Console.WriteLine("Start point: {0}", geometry.Start);
Console.WriteLine("End point: {0}", geometry.End);

// Writes:
// Start point: [-10.1; 15.5; NaN, NaN]
// End point: [30.3; 35.5; NaN, NaN]

Packages

SpatialLITE is distributed as a set of NuGet packages. You can install only packages, you need.

Documentation

API reference and more complex examples are available at http://spatial.litesolutions.net

SpatialLITE.Core NuGet Package stats SpatialLITE

Provides contains basic data structures for geospatial data and common infrastructure. It is required by all provided add-ons.

SpatialLITE.Gps NuGet Package stats SpatialLITE.Gps

Add-on for the SpatialLite library that adds support for GPX data format.

SpatialLITE.Osm NuGet Package stats SpatialLITE.Osm

Add-on for the SpatialLite library that adds support for OpenStreetMap data formats.

Community

License MIT License

This project is licensed under the MIT License - see the LICENSE file for details

About

SpatialLITE is lightweight .NET Core library for spatial data processing.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages