For certain locations, query DART to return all PIT tags observed there from a given species in a given spawn year.

queryTagsDART(
  species = c("Chinook", "Coho", "Steelhead", "Sockeye"),
  loc = c("GRA", "PRA"),
  spawnYear = NULL
)

Arguments

species

Chinook, Coho, Steelhead and Sockeye

loc

code for initial location. Currently includes options for Lower Granite (GRA) and Priest Rapids (PRA) dams.

spawnYear

available years includes spawn year 2010 to present

Author

Kevin See

Examples

queryTagsDART("Chinook", "GRA", 2019)
#> Rows: 2942 Columns: 1
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: "\001"
#> chr (1): tag_id
#> 
#>  Use `spec()` to retrieve the full column specification for this data.
#>  Specify the column types or set `show_col_types = FALSE` to quiet this message.
#> # A tibble: 2,942 × 1
#>    tag_id        
#>    <chr>         
#>  1 384.0A0301AFC3
#>  2 384.1B79719E60
#>  3 384.1B79775BEB
#>  4 384.3B23A4A244
#>  5 384.3B23A562DE
#>  6 384.3B23A8B1E3
#>  7 384.3B23A9F8DB
#>  8 384.3B23AB7646
#>  9 384.3B23ACD5F6
#> 10 3D6.0018335D15
#> # ℹ 2,932 more rows