gitextract_veew39wq/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── auk-bbox.R │ ├── auk-bcr.R │ ├── auk-breeding.R │ ├── auk-clean.R │ ├── auk-complete.R │ ├── auk-country.R │ ├── auk-county.R │ ├── auk-date.R │ ├── auk-distance.R │ ├── auk-duration.R │ ├── auk-ebd-version.R │ ├── auk-ebd.R │ ├── auk-exotic.R │ ├── auk-filter.R │ ├── auk-get-awk-path.R │ ├── auk-get-ebd-path.R │ ├── auk-last-edited.R │ ├── auk-observer.R │ ├── auk-package.R │ ├── auk-project.R │ ├── auk-protocol.R │ ├── auk-rollup.R │ ├── auk-sampling.R │ ├── auk-select.R │ ├── auk-set-awk-path.R │ ├── auk-set-ebd-path.R │ ├── auk-species.R │ ├── auk-split.R │ ├── auk-state.R │ ├── auk-time.R │ ├── auk-unique.R │ ├── auk-version.R │ ├── auk-year.R │ ├── auk-zerofill.R │ ├── data.R │ ├── ebird-species.R │ ├── filter-repeat-visits.R │ ├── format-unmarked-occu.R │ ├── get-ebird-taxonomy.R │ ├── process_barcharts.R │ ├── read.R │ ├── utils.R │ └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── auk.Rproj ├── cran-comments.md ├── data/ │ ├── bcr_codes.rda │ ├── ebird_states.rda │ ├── ebird_taxonomy.rda │ └── valid_protocols.rda ├── data-raw/ │ ├── BCRCodes.txt │ ├── barchart.R │ ├── bcr-codes.r │ ├── ebd-samples.r │ ├── ebird-state.r │ ├── ebird-taxonomy.csv │ ├── ebird-taxonomy.r │ └── valid-protocols.r ├── docs/ │ ├── 404.html │ ├── 404.md │ ├── CONDUCT.html │ ├── CONDUCT.md │ ├── CONTRIBUTING.html │ ├── CONTRIBUTING.md │ ├── LICENSE.html │ ├── LICENSE.md │ ├── articles/ │ │ ├── auk.html │ │ ├── auk.md │ │ ├── development.html │ │ ├── development.md │ │ ├── index.html │ │ └── index.md │ ├── authors.html │ ├── authors.md │ ├── deps/ │ │ ├── data-deps.txt │ │ ├── font-awesome-6.5.2/ │ │ │ └── css/ │ │ │ ├── all.css │ │ │ └── v4-shims.css │ │ └── jquery-3.6.0/ │ │ └── jquery-3.6.0.js │ ├── index.html │ ├── index.md │ ├── katex-auto.js │ ├── lightswitch.js │ ├── llms.txt │ ├── news/ │ │ ├── index.html │ │ └── index.md │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── auk-package.html │ │ ├── auk-package.md │ │ ├── auk.html │ │ ├── auk_bbox.html │ │ ├── auk_bbox.md │ │ ├── auk_bcr.html │ │ ├── auk_bcr.md │ │ ├── auk_breeding.html │ │ ├── auk_breeding.md │ │ ├── auk_clean.html │ │ ├── auk_clean.md │ │ ├── auk_complete.html │ │ ├── auk_complete.md │ │ ├── auk_country.html │ │ ├── auk_country.md │ │ ├── auk_county.html │ │ ├── auk_county.md │ │ ├── auk_date.html │ │ ├── auk_date.md │ │ ├── auk_distance.html │ │ ├── auk_distance.md │ │ ├── auk_duration.html │ │ ├── auk_duration.md │ │ ├── auk_ebd.html │ │ ├── auk_ebd.md │ │ ├── auk_ebd_version.html │ │ ├── auk_ebd_version.md │ │ ├── auk_exotic.html │ │ ├── auk_exotic.md │ │ ├── auk_extent.html │ │ ├── auk_extent.md │ │ ├── auk_filter.auk_ebd.html │ │ ├── auk_filter.auk_sampling.html │ │ ├── auk_filter.html │ │ ├── auk_filter.md │ │ ├── auk_get_awk_path.html │ │ ├── auk_get_awk_path.md │ │ ├── auk_get_ebd_path.html │ │ ├── auk_get_ebd_path.md │ │ ├── auk_last_edited.html │ │ ├── auk_last_edited.md │ │ ├── auk_observer.html │ │ ├── auk_observer.md │ │ ├── auk_project.html │ │ ├── auk_project.md │ │ ├── auk_protocol.html │ │ ├── auk_protocol.md │ │ ├── auk_rollup.html │ │ ├── auk_rollup.md │ │ ├── auk_sampling.html │ │ ├── auk_sampling.md │ │ ├── auk_select.html │ │ ├── auk_select.md │ │ ├── auk_set_awk_path.html │ │ ├── auk_set_awk_path.md │ │ ├── auk_set_ebd_path.html │ │ ├── auk_set_ebd_path.md │ │ ├── auk_species.html │ │ ├── auk_species.md │ │ ├── auk_split.html │ │ ├── auk_split.md │ │ ├── auk_state.html │ │ ├── auk_state.md │ │ ├── auk_time.html │ │ ├── auk_time.md │ │ ├── auk_unique.html │ │ ├── auk_unique.md │ │ ├── auk_version.html │ │ ├── auk_version.md │ │ ├── auk_year.html │ │ ├── auk_year.md │ │ ├── auk_zerofill.auk_ebd.html │ │ ├── auk_zerofill.character.html │ │ ├── auk_zerofill.data.frame.html │ │ ├── auk_zerofill.html │ │ ├── auk_zerofill.md │ │ ├── bcr_codes.html │ │ ├── bcr_codes.md │ │ ├── collapse_zerofill.html │ │ ├── ebird_species.html │ │ ├── ebird_species.md │ │ ├── ebird_states.html │ │ ├── ebird_states.md │ │ ├── ebird_taxonomy.html │ │ ├── ebird_taxonomy.md │ │ ├── filter_repeat_visits.html │ │ ├── filter_repeat_visits.md │ │ ├── format_unmarked_occu.html │ │ ├── format_unmarked_occu.md │ │ ├── get_ebird_taxonomy.html │ │ ├── get_ebird_taxonomy.md │ │ ├── index.html │ │ ├── index.md │ │ ├── process_barcharts.html │ │ ├── process_barcharts.md │ │ ├── read_ebd.auk_ebd.html │ │ ├── read_ebd.character.html │ │ ├── read_ebd.html │ │ ├── read_ebd.md │ │ ├── read_sampling.auk_ebd.html │ │ ├── read_sampling.auk_sampling.html │ │ ├── read_sampling.character.html │ │ ├── read_sampling.html │ │ ├── valid_protocols.html │ │ └── valid_protocols.md │ ├── search.json │ ├── site.webmanifest │ └── sitemap.xml ├── inst/ │ └── extdata/ │ ├── barchart-sample.txt │ ├── ebd-rollup-ex.txt │ ├── ebd-sample.txt │ ├── zerofill-ex_ebd.txt │ └── zerofill-ex_sampling.txt ├── makefile.R ├── man/ │ ├── auk-package.Rd │ ├── auk_bbox.Rd │ ├── auk_bcr.Rd │ ├── auk_breeding.Rd │ ├── auk_clean.Rd │ ├── auk_complete.Rd │ ├── auk_country.Rd │ ├── auk_county.Rd │ ├── auk_date.Rd │ ├── auk_distance.Rd │ ├── auk_duration.Rd │ ├── auk_ebd.Rd │ ├── auk_ebd_version.Rd │ ├── auk_exotic.Rd │ ├── auk_extent.Rd │ ├── auk_filter.Rd │ ├── auk_get_awk_path.Rd │ ├── auk_get_ebd_path.Rd │ ├── auk_last_edited.Rd │ ├── auk_observer.Rd │ ├── auk_project.Rd │ ├── auk_protocol.Rd │ ├── auk_rollup.Rd │ ├── auk_sampling.Rd │ ├── auk_select.Rd │ ├── auk_set_awk_path.Rd │ ├── auk_set_ebd_path.Rd │ ├── auk_species.Rd │ ├── auk_split.Rd │ ├── auk_state.Rd │ ├── auk_time.Rd │ ├── auk_unique.Rd │ ├── auk_version.Rd │ ├── auk_year.Rd │ ├── auk_zerofill.Rd │ ├── bcr_codes.Rd │ ├── ebird_species.Rd │ ├── ebird_states.Rd │ ├── ebird_taxonomy.Rd │ ├── filter_repeat_visits.Rd │ ├── format_unmarked_occu.Rd │ ├── get_ebird_taxonomy.Rd │ ├── process_barcharts.Rd │ ├── read_ebd.Rd │ └── valid_protocols.Rd ├── tests/ │ ├── testthat/ │ │ ├── setup.R │ │ ├── test_auk-ebd-version.r │ │ ├── test_auk-ebd.r │ │ ├── test_auk-filter.r │ │ ├── test_auk-keep-drop.r │ │ ├── test_auk-rollup.r │ │ ├── test_auk-select.r │ │ ├── test_auk-split.r │ │ ├── test_auk-unique.r │ │ ├── test_auk-zerofill.r │ │ ├── test_ebird-species.r │ │ ├── test_filters.r │ │ ├── test_filters_sampling.r │ │ ├── test_get-ebird-taxonomy.r │ │ ├── test_read.r │ │ ├── test_set-env.R │ │ └── test_unmarked.r │ └── testthat.R └── vignettes/ ├── auk.Rmd └── development.Rmd