The goal of collardb is to make GPS telemtry data management simple.
collardb will create a SQLite database to manage telemetry data, provide utilities to enter data into the database, and query data from the database. collardb will interface with the collar package to assist with getting data directly from GPS sensor vendors into a relational database.
SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world.
The SQLite file format is stable, cross-platform, and backwards compatible and the developers pledge to keep it that way through at least the year 2050. SQLite database files are commonly used as containers to transfer rich content between systems and as a long-term archival format for data. There are over 1 trillion (1e12) SQLite databases in active use.
SQLite source code is in the public-domain and is free to everyone to use for any purpose.
From SQLite.org
Because it is a simple single file database engine that can be used without a server. There are numerous extensions to make working with the data easier. There is even a spatial extension, SpatiaLite that add a bunch of spatial data features.
SQLite can be used as a data source in many common GIS software as well.
You can install the package using the devtools
package
devtools::install_github('kissmygritts/collardb')
This is a basic example which shows you how to solve a common problem:
library(collardb)
# bootstrap collardb sqlite database
bootstrap_collardb()
# create a database connection to inspect database
conn <- collardb_conn()
## check tables
DBI::dbListTables(conn)
#> [1] "animals" "deployments" "devices" "sqlite_sequence" "telemetry"
This package is very much a work-in-progress
These will be the areas I focus on in the immediate future.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.