Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/briansorahan/spatialite
- Owner: briansorahan
- License: mit
- Created: 2017-04-25T14:36:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-20T20:19:58.000Z (over 4 years ago)
- Last Synced: 2024-04-16T00:58:12.693Z (7 months ago)
- Topics: geospatial, spatial, spatialite, sql, sqlite3
- Language: Go
- Homepage:
- Size: 73.2 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.