├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .pbattributes ├── CRAN-RELEASE ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── 00-endpoint.R ├── brains.R ├── common_names.R ├── distribution.R ├── fb_tbl.R ├── fishbase.R ├── load_taxa.R ├── morpho_physio.R ├── population_dynamics.R ├── refs.R ├── reproduction.R ├── species.R ├── synonyms.R ├── trophic_ecology.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── data-raw ├── huggingface.R ├── import_db.R ├── upload-and-register.R └── write-prov.R ├── inst ├── CITATION ├── WORDLIST ├── examples │ ├── fishbase-import-dump.R │ └── length-weight.Rmd ├── extdata │ ├── abnorm.csv │ ├── abnormref.csv │ ├── abundance.csv │ ├── abundancedelta.csv │ ├── acknowledge.csv │ ├── address.csv │ ├── alieninvasive.csv │ ├── aquamaint.csv │ ├── aquarium.csv │ ├── aquariumref.csv │ ├── biblio.csv │ ├── biblio2.csv │ ├── brains.csv │ ├── broodstock.csv │ ├── checklist.csv │ ├── cigua.csv │ ├── ciguafb.csv │ ├── citesfb.csv │ ├── cl50.csv │ ├── classes.csv │ ├── coffversions.csv │ ├── collectionsref.csv │ ├── comnames.csv │ ├── countfao.csv │ ├── countfaoref.csv │ ├── countref.csv │ ├── country.csv │ ├── countrysub.csv │ ├── countrysubref.csv │ ├── cultspec.csv │ ├── cultsys.csv │ ├── cultures.csv │ ├── diet.csv │ ├── diet_items.csv │ ├── diseases.csv │ ├── dispic.csv │ ├── disref.csv │ ├── ecology.csv │ ├── ecosysfam.csv │ ├── ecosyslhref.csv │ ├── ecosystem.csv │ ├── ecosystemcntref.csv │ ├── ecosystemcountry.csv │ ├── ecosystemfaoref.csv │ ├── ecosystemref.csv │ ├── eggdev.csv │ ├── eggnurserysystem.csv │ ├── eggs.csv │ ├── elecdat.csv │ ├── elecstudies.csv │ ├── elecsub.csv │ ├── enzymes.csv │ ├── estimate.csv │ ├── estimatedepth.csv │ ├── families.csv │ ├── faoaquacult.csv │ ├── faoareas.csv │ ├── faoarfam.csv │ ├── faoarord.csv │ ├── faoarref.csv │ ├── faocatch.csv │ ├── fbusers.csv │ ├── fecundity.csv │ ├── fl_datasource.csv │ ├── fl_fish.csv │ ├── fl_fishingdetails.csv │ ├── fl_location.csv │ ├── fl_losses.csv │ ├── fl_lossesfinance.csv │ ├── fl_lossesother.csv │ ├── fl_processdetails.csv │ ├── fl_storagedetails.csv │ ├── fl_transportdetails.csv │ ├── food.csv │ ├── foodecosystemtype.csv │ ├── fooditems.csv │ ├── foodtroph.csv │ ├── frynurserysystem.csv │ ├── fubh.csv │ ├── gazetteer.csv │ ├── genedat.csv │ ├── genera.csv │ ├── genetics.csv │ ├── gillarea.csv │ ├── glossary.csv │ ├── graphcateg.csv │ ├── icescatch.csv │ ├── institution.csv │ ├── instlanguage.csv │ ├── instmembership.csv │ ├── instspecies.csv │ ├── intrcase.csv │ ├── isscaap.csv │ ├── keyquestions.csv │ ├── keys.csv │ ├── label_index.csv │ ├── language.csv │ ├── languagecountry.csv │ ├── languagegroup.csv │ ├── languagescript.csv │ ├── larvae.csv │ ├── larvaepresence.csv │ ├── larvalnurserysystem.csv │ ├── larvalswimspeed.csv │ ├── larvdyn.csv │ ├── latgraphs.csv │ ├── massconversion.csv │ ├── materialsexamined.csv │ ├── matrix.csv │ ├── maturity.csv │ ├── miniessay.csv │ ├── morphdat.csv │ ├── morphmet.csv │ ├── morphmettlratios.csv │ ├── morphology.csv │ ├── morphorders.csv │ ├── museum.csv │ ├── myersbiblio.csv │ ├── myersdata.csv │ ├── myersrecruitmentdatabase.csv │ ├── oceanprovfaoref.csv │ ├── oceanprovinces.csv │ ├── oceanprovincesref.csv │ ├── orderage.csv │ ├── orders.csv │ ├── otoliths.csv │ ├── oxygen.csv │ ├── picturesmain.csv │ ├── pop_rm.csv │ ├── popchar.csv │ ├── popgrowth.csv │ ├── poplf.csv │ ├── poplfdata.csv │ ├── popll.csv │ ├── poplw.csv │ ├── popqb.csv │ ├── popular.csv │ ├── predatorecosystemtype.csv │ ├── predatorhierarchy.csv │ ├── predatortroph.csv │ ├── predats.csv │ ├── proxims.csv │ ├── ration.csv │ ├── refrens.csv │ ├── reproduc.csv │ ├── revisions.csv │ ├── rfishbase_available_releases.txt │ ├── rmcaphotos.csv │ ├── rp_province.csv │ ├── rp_region.csv │ ├── seafoodad.csv │ ├── seafoodadref.csv │ ├── searchpagestats.csv │ ├── sounds.csv │ ├── spawning.csv │ ├── species.csv │ ├── speciesauthorsnames.csv │ ├── speed.csv │ ├── sponsors.csv │ ├── stocks.csv │ ├── strains.csv │ ├── swimming.csv │ ├── synonyms.csv │ ├── tables.csv │ ├── tabnotes.csv │ ├── vision.csv │ ├── waterquality.csv │ ├── webfish.csv │ ├── webuse.csv │ ├── whatsnew.csv │ ├── zweb_continent.csv │ ├── zweb_country_importance.csv │ ├── zweb_factsheetmaint.csv │ ├── zweb_factsheetmaint_aquaculture.csv │ ├── zweb_foridentification.csv │ ├── zweb_picturetype.csv │ ├── zweb_picturetype_lifestage.csv │ ├── zweb_rdecomnamescountry.csv │ ├── zweb_rdecomnameslanguage.csv │ ├── zweb_rdecountrycoordinators.csv │ ├── zweb_tour.csv │ └── zweb_userstypelist.csv ├── img │ ├── edit-sql.png │ └── logo.png ├── metadata │ └── species.csv └── prov │ ├── fb.prov │ └── slb.prov ├── man ├── available_releases.Rd ├── brains.Rd ├── c_code.Rd ├── common_names.Rd ├── common_to_sci.Rd ├── country.Rd ├── countrysub.Rd ├── countrysubref.Rd ├── diet.Rd ├── diet_items.Rd ├── ecology.Rd ├── ecosystem.Rd ├── estimate.Rd ├── faoareas.Rd ├── fb_tables.Rd ├── fb_tbl.Rd ├── fecundity.Rd ├── figures │ ├── logo.png │ └── logo.svg ├── fishbase.Rd ├── fooditems.Rd ├── genetics.Rd ├── introductions.Rd ├── larvae.Rd ├── length_freq.Rd ├── length_length.Rd ├── length_weight.Rd ├── load_taxa.Rd ├── maturity.Rd ├── morphology.Rd ├── morphometrics.Rd ├── oxygen.Rd ├── popchar.Rd ├── popgrowth.Rd ├── popqb.Rd ├── predators.Rd ├── ration.Rd ├── reexports.Rd ├── references.Rd ├── reproduction.Rd ├── sealifebase.Rd ├── spawning.Rd ├── species.Rd ├── species_by_ecosystem.Rd ├── species_names.Rd ├── speed.Rd ├── stocks.Rd ├── swimming.Rd ├── synonyms.Rd └── validate_names.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── rfishbase.Rproj └── tests ├── spelling.R ├── testthat.R └── testthat ├── helper_rfishbase.R ├── test_commonnames.R ├── test_distribution.R ├── test_ecology.R ├── test_endpoint.R ├── test_load_taxa.R ├── test_maturity.R ├── test_morpho_physio.R ├── test_population_dynamics.R ├── test_species.R ├── test_synonyms.R └── test_trophic_ecology.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/.gitignore -------------------------------------------------------------------------------- /.pbattributes: -------------------------------------------------------------------------------- 1 | *.tsv.bz2 -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/00-endpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/00-endpoint.R -------------------------------------------------------------------------------- /R/brains.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/brains.R -------------------------------------------------------------------------------- /R/common_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/common_names.R -------------------------------------------------------------------------------- /R/distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/distribution.R -------------------------------------------------------------------------------- /R/fb_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/fb_tbl.R -------------------------------------------------------------------------------- /R/fishbase.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/fishbase.R -------------------------------------------------------------------------------- /R/load_taxa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/load_taxa.R -------------------------------------------------------------------------------- /R/morpho_physio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/morpho_physio.R -------------------------------------------------------------------------------- /R/population_dynamics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/population_dynamics.R -------------------------------------------------------------------------------- /R/refs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/refs.R -------------------------------------------------------------------------------- /R/reproduction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/reproduction.R -------------------------------------------------------------------------------- /R/species.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/species.R -------------------------------------------------------------------------------- /R/synonyms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/synonyms.R -------------------------------------------------------------------------------- /R/trophic_ecology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/trophic_ecology.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/huggingface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/data-raw/huggingface.R -------------------------------------------------------------------------------- /data-raw/import_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/data-raw/import_db.R -------------------------------------------------------------------------------- /data-raw/upload-and-register.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/data-raw/upload-and-register.R -------------------------------------------------------------------------------- /data-raw/write-prov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/data-raw/write-prov.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/examples/fishbase-import-dump.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/examples/fishbase-import-dump.R -------------------------------------------------------------------------------- /inst/examples/length-weight.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/examples/length-weight.Rmd -------------------------------------------------------------------------------- /inst/extdata/abnorm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/abnorm.csv -------------------------------------------------------------------------------- /inst/extdata/abnormref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/abnormref.csv -------------------------------------------------------------------------------- /inst/extdata/abundance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/abundance.csv -------------------------------------------------------------------------------- /inst/extdata/abundancedelta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/abundancedelta.csv -------------------------------------------------------------------------------- /inst/extdata/acknowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/acknowledge.csv -------------------------------------------------------------------------------- /inst/extdata/address.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/address.csv -------------------------------------------------------------------------------- /inst/extdata/alieninvasive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/alieninvasive.csv -------------------------------------------------------------------------------- /inst/extdata/aquamaint.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/aquamaint.csv -------------------------------------------------------------------------------- /inst/extdata/aquarium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/aquarium.csv -------------------------------------------------------------------------------- /inst/extdata/aquariumref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/aquariumref.csv -------------------------------------------------------------------------------- /inst/extdata/biblio.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/biblio.csv -------------------------------------------------------------------------------- /inst/extdata/biblio2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/biblio2.csv -------------------------------------------------------------------------------- /inst/extdata/brains.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/brains.csv -------------------------------------------------------------------------------- /inst/extdata/broodstock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/broodstock.csv -------------------------------------------------------------------------------- /inst/extdata/checklist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/checklist.csv -------------------------------------------------------------------------------- /inst/extdata/cigua.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/cigua.csv -------------------------------------------------------------------------------- /inst/extdata/ciguafb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ciguafb.csv -------------------------------------------------------------------------------- /inst/extdata/citesfb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/citesfb.csv -------------------------------------------------------------------------------- /inst/extdata/cl50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/cl50.csv -------------------------------------------------------------------------------- /inst/extdata/classes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/classes.csv -------------------------------------------------------------------------------- /inst/extdata/coffversions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/coffversions.csv -------------------------------------------------------------------------------- /inst/extdata/collectionsref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/collectionsref.csv -------------------------------------------------------------------------------- /inst/extdata/comnames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/comnames.csv -------------------------------------------------------------------------------- /inst/extdata/countfao.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/countfao.csv -------------------------------------------------------------------------------- /inst/extdata/countfaoref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/countfaoref.csv -------------------------------------------------------------------------------- /inst/extdata/countref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/countref.csv -------------------------------------------------------------------------------- /inst/extdata/country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/country.csv -------------------------------------------------------------------------------- /inst/extdata/countrysub.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/countrysub.csv -------------------------------------------------------------------------------- /inst/extdata/countrysubref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/countrysubref.csv -------------------------------------------------------------------------------- /inst/extdata/cultspec.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/cultspec.csv -------------------------------------------------------------------------------- /inst/extdata/cultsys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/cultsys.csv -------------------------------------------------------------------------------- /inst/extdata/cultures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/cultures.csv -------------------------------------------------------------------------------- /inst/extdata/diet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/diet.csv -------------------------------------------------------------------------------- /inst/extdata/diet_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/diet_items.csv -------------------------------------------------------------------------------- /inst/extdata/diseases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/diseases.csv -------------------------------------------------------------------------------- /inst/extdata/dispic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/dispic.csv -------------------------------------------------------------------------------- /inst/extdata/disref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/disref.csv -------------------------------------------------------------------------------- /inst/extdata/ecology.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecology.csv -------------------------------------------------------------------------------- /inst/extdata/ecosysfam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosysfam.csv -------------------------------------------------------------------------------- /inst/extdata/ecosyslhref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosyslhref.csv -------------------------------------------------------------------------------- /inst/extdata/ecosystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosystem.csv -------------------------------------------------------------------------------- /inst/extdata/ecosystemcntref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosystemcntref.csv -------------------------------------------------------------------------------- /inst/extdata/ecosystemcountry.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosystemcountry.csv -------------------------------------------------------------------------------- /inst/extdata/ecosystemfaoref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosystemfaoref.csv -------------------------------------------------------------------------------- /inst/extdata/ecosystemref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ecosystemref.csv -------------------------------------------------------------------------------- /inst/extdata/eggdev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/eggdev.csv -------------------------------------------------------------------------------- /inst/extdata/eggnurserysystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/eggnurserysystem.csv -------------------------------------------------------------------------------- /inst/extdata/eggs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/eggs.csv -------------------------------------------------------------------------------- /inst/extdata/elecdat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/elecdat.csv -------------------------------------------------------------------------------- /inst/extdata/elecstudies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/elecstudies.csv -------------------------------------------------------------------------------- /inst/extdata/elecsub.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/elecsub.csv -------------------------------------------------------------------------------- /inst/extdata/enzymes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/enzymes.csv -------------------------------------------------------------------------------- /inst/extdata/estimate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/estimate.csv -------------------------------------------------------------------------------- /inst/extdata/estimatedepth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/estimatedepth.csv -------------------------------------------------------------------------------- /inst/extdata/families.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/families.csv -------------------------------------------------------------------------------- /inst/extdata/faoaquacult.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faoaquacult.csv -------------------------------------------------------------------------------- /inst/extdata/faoareas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faoareas.csv -------------------------------------------------------------------------------- /inst/extdata/faoarfam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faoarfam.csv -------------------------------------------------------------------------------- /inst/extdata/faoarord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faoarord.csv -------------------------------------------------------------------------------- /inst/extdata/faoarref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faoarref.csv -------------------------------------------------------------------------------- /inst/extdata/faocatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/faocatch.csv -------------------------------------------------------------------------------- /inst/extdata/fbusers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fbusers.csv -------------------------------------------------------------------------------- /inst/extdata/fecundity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fecundity.csv -------------------------------------------------------------------------------- /inst/extdata/fl_datasource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_datasource.csv -------------------------------------------------------------------------------- /inst/extdata/fl_fish.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_fish.csv -------------------------------------------------------------------------------- /inst/extdata/fl_fishingdetails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_fishingdetails.csv -------------------------------------------------------------------------------- /inst/extdata/fl_location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_location.csv -------------------------------------------------------------------------------- /inst/extdata/fl_losses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_losses.csv -------------------------------------------------------------------------------- /inst/extdata/fl_lossesfinance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_lossesfinance.csv -------------------------------------------------------------------------------- /inst/extdata/fl_lossesother.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_lossesother.csv -------------------------------------------------------------------------------- /inst/extdata/fl_processdetails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_processdetails.csv -------------------------------------------------------------------------------- /inst/extdata/fl_storagedetails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_storagedetails.csv -------------------------------------------------------------------------------- /inst/extdata/fl_transportdetails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fl_transportdetails.csv -------------------------------------------------------------------------------- /inst/extdata/food.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/food.csv -------------------------------------------------------------------------------- /inst/extdata/foodecosystemtype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/foodecosystemtype.csv -------------------------------------------------------------------------------- /inst/extdata/fooditems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fooditems.csv -------------------------------------------------------------------------------- /inst/extdata/foodtroph.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/foodtroph.csv -------------------------------------------------------------------------------- /inst/extdata/frynurserysystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/frynurserysystem.csv -------------------------------------------------------------------------------- /inst/extdata/fubh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/fubh.csv -------------------------------------------------------------------------------- /inst/extdata/gazetteer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/gazetteer.csv -------------------------------------------------------------------------------- /inst/extdata/genedat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/genedat.csv -------------------------------------------------------------------------------- /inst/extdata/genera.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/genera.csv -------------------------------------------------------------------------------- /inst/extdata/genetics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/genetics.csv -------------------------------------------------------------------------------- /inst/extdata/gillarea.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/gillarea.csv -------------------------------------------------------------------------------- /inst/extdata/glossary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/glossary.csv -------------------------------------------------------------------------------- /inst/extdata/graphcateg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/graphcateg.csv -------------------------------------------------------------------------------- /inst/extdata/icescatch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/icescatch.csv -------------------------------------------------------------------------------- /inst/extdata/institution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/institution.csv -------------------------------------------------------------------------------- /inst/extdata/instlanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/instlanguage.csv -------------------------------------------------------------------------------- /inst/extdata/instmembership.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/instmembership.csv -------------------------------------------------------------------------------- /inst/extdata/instspecies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/instspecies.csv -------------------------------------------------------------------------------- /inst/extdata/intrcase.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/intrcase.csv -------------------------------------------------------------------------------- /inst/extdata/isscaap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/isscaap.csv -------------------------------------------------------------------------------- /inst/extdata/keyquestions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/keyquestions.csv -------------------------------------------------------------------------------- /inst/extdata/keys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/keys.csv -------------------------------------------------------------------------------- /inst/extdata/label_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/label_index.csv -------------------------------------------------------------------------------- /inst/extdata/language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/language.csv -------------------------------------------------------------------------------- /inst/extdata/languagecountry.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/languagecountry.csv -------------------------------------------------------------------------------- /inst/extdata/languagegroup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/languagegroup.csv -------------------------------------------------------------------------------- /inst/extdata/languagescript.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/languagescript.csv -------------------------------------------------------------------------------- /inst/extdata/larvae.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/larvae.csv -------------------------------------------------------------------------------- /inst/extdata/larvaepresence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/larvaepresence.csv -------------------------------------------------------------------------------- /inst/extdata/larvalnurserysystem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/larvalnurserysystem.csv -------------------------------------------------------------------------------- /inst/extdata/larvalswimspeed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/larvalswimspeed.csv -------------------------------------------------------------------------------- /inst/extdata/larvdyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/larvdyn.csv -------------------------------------------------------------------------------- /inst/extdata/latgraphs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/latgraphs.csv -------------------------------------------------------------------------------- /inst/extdata/massconversion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/massconversion.csv -------------------------------------------------------------------------------- /inst/extdata/materialsexamined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/materialsexamined.csv -------------------------------------------------------------------------------- /inst/extdata/matrix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/matrix.csv -------------------------------------------------------------------------------- /inst/extdata/maturity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/maturity.csv -------------------------------------------------------------------------------- /inst/extdata/miniessay.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/miniessay.csv -------------------------------------------------------------------------------- /inst/extdata/morphdat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/morphdat.csv -------------------------------------------------------------------------------- /inst/extdata/morphmet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/morphmet.csv -------------------------------------------------------------------------------- /inst/extdata/morphmettlratios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/morphmettlratios.csv -------------------------------------------------------------------------------- /inst/extdata/morphology.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/morphology.csv -------------------------------------------------------------------------------- /inst/extdata/morphorders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/morphorders.csv -------------------------------------------------------------------------------- /inst/extdata/museum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/museum.csv -------------------------------------------------------------------------------- /inst/extdata/myersbiblio.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/myersbiblio.csv -------------------------------------------------------------------------------- /inst/extdata/myersdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/myersdata.csv -------------------------------------------------------------------------------- /inst/extdata/myersrecruitmentdatabase.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/myersrecruitmentdatabase.csv -------------------------------------------------------------------------------- /inst/extdata/oceanprovfaoref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/oceanprovfaoref.csv -------------------------------------------------------------------------------- /inst/extdata/oceanprovinces.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/oceanprovinces.csv -------------------------------------------------------------------------------- /inst/extdata/oceanprovincesref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/oceanprovincesref.csv -------------------------------------------------------------------------------- /inst/extdata/orderage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/orderage.csv -------------------------------------------------------------------------------- /inst/extdata/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/orders.csv -------------------------------------------------------------------------------- /inst/extdata/otoliths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/otoliths.csv -------------------------------------------------------------------------------- /inst/extdata/oxygen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/oxygen.csv -------------------------------------------------------------------------------- /inst/extdata/picturesmain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/picturesmain.csv -------------------------------------------------------------------------------- /inst/extdata/pop_rm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/pop_rm.csv -------------------------------------------------------------------------------- /inst/extdata/popchar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/popchar.csv -------------------------------------------------------------------------------- /inst/extdata/popgrowth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/popgrowth.csv -------------------------------------------------------------------------------- /inst/extdata/poplf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/poplf.csv -------------------------------------------------------------------------------- /inst/extdata/poplfdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/poplfdata.csv -------------------------------------------------------------------------------- /inst/extdata/popll.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/popll.csv -------------------------------------------------------------------------------- /inst/extdata/poplw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/poplw.csv -------------------------------------------------------------------------------- /inst/extdata/popqb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/popqb.csv -------------------------------------------------------------------------------- /inst/extdata/popular.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/popular.csv -------------------------------------------------------------------------------- /inst/extdata/predatorecosystemtype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/predatorecosystemtype.csv -------------------------------------------------------------------------------- /inst/extdata/predatorhierarchy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/predatorhierarchy.csv -------------------------------------------------------------------------------- /inst/extdata/predatortroph.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/predatortroph.csv -------------------------------------------------------------------------------- /inst/extdata/predats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/predats.csv -------------------------------------------------------------------------------- /inst/extdata/proxims.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/proxims.csv -------------------------------------------------------------------------------- /inst/extdata/ration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/ration.csv -------------------------------------------------------------------------------- /inst/extdata/refrens.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/refrens.csv -------------------------------------------------------------------------------- /inst/extdata/reproduc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/reproduc.csv -------------------------------------------------------------------------------- /inst/extdata/revisions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/revisions.csv -------------------------------------------------------------------------------- /inst/extdata/rfishbase_available_releases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/rfishbase_available_releases.txt -------------------------------------------------------------------------------- /inst/extdata/rmcaphotos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/rmcaphotos.csv -------------------------------------------------------------------------------- /inst/extdata/rp_province.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/rp_province.csv -------------------------------------------------------------------------------- /inst/extdata/rp_region.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/rp_region.csv -------------------------------------------------------------------------------- /inst/extdata/seafoodad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/seafoodad.csv -------------------------------------------------------------------------------- /inst/extdata/seafoodadref.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/seafoodadref.csv -------------------------------------------------------------------------------- /inst/extdata/searchpagestats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/searchpagestats.csv -------------------------------------------------------------------------------- /inst/extdata/sounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/sounds.csv -------------------------------------------------------------------------------- /inst/extdata/spawning.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/spawning.csv -------------------------------------------------------------------------------- /inst/extdata/species.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/species.csv -------------------------------------------------------------------------------- /inst/extdata/speciesauthorsnames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/speciesauthorsnames.csv -------------------------------------------------------------------------------- /inst/extdata/speed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/speed.csv -------------------------------------------------------------------------------- /inst/extdata/sponsors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/sponsors.csv -------------------------------------------------------------------------------- /inst/extdata/stocks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/stocks.csv -------------------------------------------------------------------------------- /inst/extdata/strains.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/strains.csv -------------------------------------------------------------------------------- /inst/extdata/swimming.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/swimming.csv -------------------------------------------------------------------------------- /inst/extdata/synonyms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/synonyms.csv -------------------------------------------------------------------------------- /inst/extdata/tables.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/tables.csv -------------------------------------------------------------------------------- /inst/extdata/tabnotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/tabnotes.csv -------------------------------------------------------------------------------- /inst/extdata/vision.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/vision.csv -------------------------------------------------------------------------------- /inst/extdata/waterquality.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/waterquality.csv -------------------------------------------------------------------------------- /inst/extdata/webfish.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/webfish.csv -------------------------------------------------------------------------------- /inst/extdata/webuse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/webuse.csv -------------------------------------------------------------------------------- /inst/extdata/whatsnew.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/whatsnew.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_continent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_continent.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_country_importance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_country_importance.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_factsheetmaint.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_factsheetmaint.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_factsheetmaint_aquaculture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_factsheetmaint_aquaculture.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_foridentification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_foridentification.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_picturetype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_picturetype.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_picturetype_lifestage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_picturetype_lifestage.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_rdecomnamescountry.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_rdecomnamescountry.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_rdecomnameslanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_rdecomnameslanguage.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_rdecountrycoordinators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_rdecountrycoordinators.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_tour.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_tour.csv -------------------------------------------------------------------------------- /inst/extdata/zweb_userstypelist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/extdata/zweb_userstypelist.csv -------------------------------------------------------------------------------- /inst/img/edit-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/img/edit-sql.png -------------------------------------------------------------------------------- /inst/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/img/logo.png -------------------------------------------------------------------------------- /inst/metadata/species.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/metadata/species.csv -------------------------------------------------------------------------------- /inst/prov/fb.prov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/prov/fb.prov -------------------------------------------------------------------------------- /inst/prov/slb.prov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/inst/prov/slb.prov -------------------------------------------------------------------------------- /man/available_releases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/available_releases.Rd -------------------------------------------------------------------------------- /man/brains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/brains.Rd -------------------------------------------------------------------------------- /man/c_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/c_code.Rd -------------------------------------------------------------------------------- /man/common_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/common_names.Rd -------------------------------------------------------------------------------- /man/common_to_sci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/common_to_sci.Rd -------------------------------------------------------------------------------- /man/country.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/country.Rd -------------------------------------------------------------------------------- /man/countrysub.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/countrysub.Rd -------------------------------------------------------------------------------- /man/countrysubref.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/countrysubref.Rd -------------------------------------------------------------------------------- /man/diet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/diet.Rd -------------------------------------------------------------------------------- /man/diet_items.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/diet_items.Rd -------------------------------------------------------------------------------- /man/ecology.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/ecology.Rd -------------------------------------------------------------------------------- /man/ecosystem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/ecosystem.Rd -------------------------------------------------------------------------------- /man/estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/estimate.Rd -------------------------------------------------------------------------------- /man/faoareas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/faoareas.Rd -------------------------------------------------------------------------------- /man/fb_tables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/fb_tables.Rd -------------------------------------------------------------------------------- /man/fb_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/fb_tbl.Rd -------------------------------------------------------------------------------- /man/fecundity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/fecundity.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/fishbase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/fishbase.Rd -------------------------------------------------------------------------------- /man/fooditems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/fooditems.Rd -------------------------------------------------------------------------------- /man/genetics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/genetics.Rd -------------------------------------------------------------------------------- /man/introductions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/introductions.Rd -------------------------------------------------------------------------------- /man/larvae.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/larvae.Rd -------------------------------------------------------------------------------- /man/length_freq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/length_freq.Rd -------------------------------------------------------------------------------- /man/length_length.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/length_length.Rd -------------------------------------------------------------------------------- /man/length_weight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/length_weight.Rd -------------------------------------------------------------------------------- /man/load_taxa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/load_taxa.Rd -------------------------------------------------------------------------------- /man/maturity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/maturity.Rd -------------------------------------------------------------------------------- /man/morphology.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/morphology.Rd -------------------------------------------------------------------------------- /man/morphometrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/morphometrics.Rd -------------------------------------------------------------------------------- /man/oxygen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/oxygen.Rd -------------------------------------------------------------------------------- /man/popchar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/popchar.Rd -------------------------------------------------------------------------------- /man/popgrowth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/popgrowth.Rd -------------------------------------------------------------------------------- /man/popqb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/popqb.Rd -------------------------------------------------------------------------------- /man/predators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/predators.Rd -------------------------------------------------------------------------------- /man/ration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/ration.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/references.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/references.Rd -------------------------------------------------------------------------------- /man/reproduction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/reproduction.Rd -------------------------------------------------------------------------------- /man/sealifebase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/sealifebase.Rd -------------------------------------------------------------------------------- /man/spawning.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/spawning.Rd -------------------------------------------------------------------------------- /man/species.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/species.Rd -------------------------------------------------------------------------------- /man/species_by_ecosystem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/species_by_ecosystem.Rd -------------------------------------------------------------------------------- /man/species_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/species_names.Rd -------------------------------------------------------------------------------- /man/speed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/speed.Rd -------------------------------------------------------------------------------- /man/stocks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/stocks.Rd -------------------------------------------------------------------------------- /man/swimming.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/swimming.Rd -------------------------------------------------------------------------------- /man/synonyms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/synonyms.Rd -------------------------------------------------------------------------------- /man/validate_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/man/validate_names.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /rfishbase.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/rfishbase.Rproj -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper_rfishbase.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/helper_rfishbase.R -------------------------------------------------------------------------------- /tests/testthat/test_commonnames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_commonnames.R -------------------------------------------------------------------------------- /tests/testthat/test_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_distribution.R -------------------------------------------------------------------------------- /tests/testthat/test_ecology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_ecology.R -------------------------------------------------------------------------------- /tests/testthat/test_endpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_endpoint.R -------------------------------------------------------------------------------- /tests/testthat/test_load_taxa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_load_taxa.R -------------------------------------------------------------------------------- /tests/testthat/test_maturity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_maturity.R -------------------------------------------------------------------------------- /tests/testthat/test_morpho_physio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_morpho_physio.R -------------------------------------------------------------------------------- /tests/testthat/test_population_dynamics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_population_dynamics.R -------------------------------------------------------------------------------- /tests/testthat/test_species.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_species.R -------------------------------------------------------------------------------- /tests/testthat/test_synonyms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_synonyms.R -------------------------------------------------------------------------------- /tests/testthat/test_trophic_ecology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/rfishbase/HEAD/tests/testthat/test_trophic_ecology.R --------------------------------------------------------------------------------