Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/briansorahan/spatialite

database/sql driver for libspatialite
https://github.com/briansorahan/spatialite

geospatial spatial spatialite sql sqlite3

Last synced: 18 days ago
JSON representation

database/sql driver for libspatialite

Awesome Lists containing this project

README

        

# spatialite

Go driver for libspatialite

## Install

First you must install both sqlite3 and libspatialite C libraries.

Then

```shell
go get -u github.com/briansorahan/spatialite
```

## Usage

```go
db, err := sql.Open("spatialite", "my.db")
```

Check out the [tests](driver_test.go) to see more example code.