├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── block_from_gps.R ├── check_names.R ├── convert_names.R ├── data.R ├── harmonize_names.R ├── loran_to_gps.R ├── plot_data.R ├── reverse_names.R └── sysdata.rda ├── README.md ├── data ├── blocks.rda ├── calcom.rda ├── cdfw_cpfv.rda ├── cdfw_cpfv_effort.rda ├── cdfw_cpfv_port.rda ├── cdfw_kelp.rda ├── cdfw_kelp_tots.rda ├── cdfw_n_comm_fishers.rda ├── cdfw_n_comm_vessels.rda ├── cdfw_n_comm_vessels_length.rda ├── cdfw_n_comm_vessels_port.rda ├── cdfw_ports.rda ├── cdfw_waters.rda ├── mpas_ca.rda ├── noaa.rda ├── pacfin_all1.rda ├── pacfin_all2.rda ├── pacfin_all5.rda ├── pacfin_all6.rda ├── pacfin_crab2.rda ├── pacfin_ports.rda ├── pacfin_species.rda ├── ports.rda ├── recfin_cte2.rda ├── recfin_cte3.rda ├── recfin_cte5.rda ├── recfin_cte7.rda ├── recfin_species.rda ├── swfsc.rda └── taxa.rda ├── man ├── block_from_gps.Rd ├── blocks.Rd ├── calcom.Rd ├── cdfw_cpfv.Rd ├── cdfw_cpfv_effort.Rd ├── cdfw_cpfv_port.Rd ├── cdfw_kelp.Rd ├── cdfw_kelp_tots.Rd ├── cdfw_n_comm_fishers.Rd ├── cdfw_n_comm_vessels.Rd ├── cdfw_n_comm_vessels_length.Rd ├── cdfw_n_comm_vessels_port.Rd ├── cdfw_ports.Rd ├── cdfw_waters.Rd ├── check_names.Rd ├── convert_names.Rd ├── harmonize_names.Rd ├── loran_to_gps.Rd ├── mpas_ca.Rd ├── noaa.Rd ├── pacfin_all1.Rd ├── pacfin_all2.Rd ├── pacfin_all5.Rd ├── pacfin_all6.Rd ├── pacfin_crab2.Rd ├── pacfin_ports.Rd ├── pacfin_species.Rd ├── plot_data.Rd ├── ports.Rd ├── recfin_cte2.Rd ├── recfin_cte3.Rd ├── recfin_cte5.Rd ├── recfin_cte7.Rd ├── recfin_species.Rd ├── reverse_names.Rd ├── swfsc.Rd └── taxa.Rd ├── vignettes ├── .gitignore └── wcfish-vignette.Rmd └── wcfish.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/block_from_gps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/block_from_gps.R -------------------------------------------------------------------------------- /R/check_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/check_names.R -------------------------------------------------------------------------------- /R/convert_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/convert_names.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/data.R -------------------------------------------------------------------------------- /R/harmonize_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/harmonize_names.R -------------------------------------------------------------------------------- /R/loran_to_gps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/loran_to_gps.R -------------------------------------------------------------------------------- /R/plot_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/plot_data.R -------------------------------------------------------------------------------- /R/reverse_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/reverse_names.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/README.md -------------------------------------------------------------------------------- /data/blocks.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/blocks.rda -------------------------------------------------------------------------------- /data/calcom.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/calcom.rda -------------------------------------------------------------------------------- /data/cdfw_cpfv.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_cpfv.rda -------------------------------------------------------------------------------- /data/cdfw_cpfv_effort.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_cpfv_effort.rda -------------------------------------------------------------------------------- /data/cdfw_cpfv_port.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_cpfv_port.rda -------------------------------------------------------------------------------- /data/cdfw_kelp.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_kelp.rda -------------------------------------------------------------------------------- /data/cdfw_kelp_tots.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_kelp_tots.rda -------------------------------------------------------------------------------- /data/cdfw_n_comm_fishers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_n_comm_fishers.rda -------------------------------------------------------------------------------- /data/cdfw_n_comm_vessels.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_n_comm_vessels.rda -------------------------------------------------------------------------------- /data/cdfw_n_comm_vessels_length.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_n_comm_vessels_length.rda -------------------------------------------------------------------------------- /data/cdfw_n_comm_vessels_port.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_n_comm_vessels_port.rda -------------------------------------------------------------------------------- /data/cdfw_ports.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_ports.rda -------------------------------------------------------------------------------- /data/cdfw_waters.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/cdfw_waters.rda -------------------------------------------------------------------------------- /data/mpas_ca.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/mpas_ca.rda -------------------------------------------------------------------------------- /data/noaa.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/noaa.rda -------------------------------------------------------------------------------- /data/pacfin_all1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_all1.rda -------------------------------------------------------------------------------- /data/pacfin_all2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_all2.rda -------------------------------------------------------------------------------- /data/pacfin_all5.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_all5.rda -------------------------------------------------------------------------------- /data/pacfin_all6.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_all6.rda -------------------------------------------------------------------------------- /data/pacfin_crab2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_crab2.rda -------------------------------------------------------------------------------- /data/pacfin_ports.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_ports.rda -------------------------------------------------------------------------------- /data/pacfin_species.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/pacfin_species.rda -------------------------------------------------------------------------------- /data/ports.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/ports.rda -------------------------------------------------------------------------------- /data/recfin_cte2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/recfin_cte2.rda -------------------------------------------------------------------------------- /data/recfin_cte3.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/recfin_cte3.rda -------------------------------------------------------------------------------- /data/recfin_cte5.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/recfin_cte5.rda -------------------------------------------------------------------------------- /data/recfin_cte7.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/recfin_cte7.rda -------------------------------------------------------------------------------- /data/recfin_species.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/recfin_species.rda -------------------------------------------------------------------------------- /data/swfsc.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/swfsc.rda -------------------------------------------------------------------------------- /data/taxa.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/data/taxa.rda -------------------------------------------------------------------------------- /man/block_from_gps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/block_from_gps.Rd -------------------------------------------------------------------------------- /man/blocks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/blocks.Rd -------------------------------------------------------------------------------- /man/calcom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/calcom.Rd -------------------------------------------------------------------------------- /man/cdfw_cpfv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_cpfv.Rd -------------------------------------------------------------------------------- /man/cdfw_cpfv_effort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_cpfv_effort.Rd -------------------------------------------------------------------------------- /man/cdfw_cpfv_port.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_cpfv_port.Rd -------------------------------------------------------------------------------- /man/cdfw_kelp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_kelp.Rd -------------------------------------------------------------------------------- /man/cdfw_kelp_tots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_kelp_tots.Rd -------------------------------------------------------------------------------- /man/cdfw_n_comm_fishers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_n_comm_fishers.Rd -------------------------------------------------------------------------------- /man/cdfw_n_comm_vessels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_n_comm_vessels.Rd -------------------------------------------------------------------------------- /man/cdfw_n_comm_vessels_length.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_n_comm_vessels_length.Rd -------------------------------------------------------------------------------- /man/cdfw_n_comm_vessels_port.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_n_comm_vessels_port.Rd -------------------------------------------------------------------------------- /man/cdfw_ports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_ports.Rd -------------------------------------------------------------------------------- /man/cdfw_waters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/cdfw_waters.Rd -------------------------------------------------------------------------------- /man/check_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/check_names.Rd -------------------------------------------------------------------------------- /man/convert_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/convert_names.Rd -------------------------------------------------------------------------------- /man/harmonize_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/harmonize_names.Rd -------------------------------------------------------------------------------- /man/loran_to_gps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/loran_to_gps.Rd -------------------------------------------------------------------------------- /man/mpas_ca.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/mpas_ca.Rd -------------------------------------------------------------------------------- /man/noaa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/noaa.Rd -------------------------------------------------------------------------------- /man/pacfin_all1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_all1.Rd -------------------------------------------------------------------------------- /man/pacfin_all2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_all2.Rd -------------------------------------------------------------------------------- /man/pacfin_all5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_all5.Rd -------------------------------------------------------------------------------- /man/pacfin_all6.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_all6.Rd -------------------------------------------------------------------------------- /man/pacfin_crab2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_crab2.Rd -------------------------------------------------------------------------------- /man/pacfin_ports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_ports.Rd -------------------------------------------------------------------------------- /man/pacfin_species.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/pacfin_species.Rd -------------------------------------------------------------------------------- /man/plot_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/plot_data.Rd -------------------------------------------------------------------------------- /man/ports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/ports.Rd -------------------------------------------------------------------------------- /man/recfin_cte2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/recfin_cte2.Rd -------------------------------------------------------------------------------- /man/recfin_cte3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/recfin_cte3.Rd -------------------------------------------------------------------------------- /man/recfin_cte5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/recfin_cte5.Rd -------------------------------------------------------------------------------- /man/recfin_cte7.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/recfin_cte7.Rd -------------------------------------------------------------------------------- /man/recfin_species.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/recfin_species.Rd -------------------------------------------------------------------------------- /man/reverse_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/reverse_names.Rd -------------------------------------------------------------------------------- /man/swfsc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/swfsc.Rd -------------------------------------------------------------------------------- /man/taxa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/man/taxa.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/wcfish-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/vignettes/wcfish-vignette.Rmd -------------------------------------------------------------------------------- /wcfish.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfree14/wcfish/HEAD/wcfish.Rproj --------------------------------------------------------------------------------