| Title: | What the Package Does (One Line, Title Case) |
|---|---|
| Description: | What the package does (one paragraph). |
| Authors: | First Last [aut, cre] (ORCID: YOUR-ORCID-ID) |
| Maintainer: | First Last <[email protected]> |
| License: | MIT + file LICENSE |
| Version: | 0.0.0.9000 |
| Built: | 2026-06-21 10:45:06 UTC |
| Source: | https://codeberg.org/browlingson/dippR |
make map of bird movement
birdplot(bdxy, bird, stations, jitter = TRUE)birdplot(bdxy, bird, stations, jitter = TRUE)
bdxy |
Data frame of all bird data |
bird |
BTO code |
stations |
RX station data frame |
jitter |
Wiggle line end points |
maps the path of a bird
tmap object for plotting
Barry Rowlingson
Build the database
build_db(dipperdata, dbfile)build_db(dipperdata, dbfile)
dipperdata |
path to data |
dbfile |
path to output file |
From the data, build a database.
nothing
Barry Rowlingson
Read a table from the dipper data
dipper_table(dbfile, tab)dipper_table(dbfile, tab)
dbfile |
path to dipper duckdb file |
tab |
name of table |
Read a table from the dipper data
data table from duckdb file
Barry Rowlingson
List dipper data tables
dipper_tables(dbfile)dipper_tables(dbfile)
dbfile |
path to dipper duckdb file |
Return table names from the dipper data
Names of tables in the data file
Barry Rowlingson
Attach tables from dipper database
load_dipper_tables(dbfile, tables = dipper_tables(dbfile))load_dipper_tables(dbfile, tables = dipper_tables(dbfile))
dbfile |
path to dipper duckdb file |
tables |
names of tables |
This attaches tables from the database to the search path
nothing
Barry Rowlingson
get time eries
timedata(bird)timedata(bird)
bird |
One birds worth of data |
get the time series for one bird
Aggregated daily data
Barry Rowlingson
make time plot
timeplot(d, showBTO = FALSE, direction = FALSE)timeplot(d, showBTO = FALSE, direction = FALSE)
d |
data table of bird data |
showBTO |
BTO ode |
direction |
Separate by Site and Direction |
makes a time plot for a bird
a ggplot object for display
Barry Rowlingson
Do a time plot and a map plot
twoplots(bdxy, bird, stations, jitter = TRUE, direction = FALSE)twoplots(bdxy, bird, stations, jitter = TRUE, direction = FALSE)
bdxy |
bird data frame |
bird |
BTO code |
stations |
RX station data frame |
jitter |
Wiggle lines for clarity |
direction |
Use Site:Direction for time groups |
make a time plot and a map plot
an object for plotting
Barry Rowlingson