We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
atlantistools::load_nc does not read in all of the species catch. Probably because species names are formatted differently..
atlantistools::load_nc
eg.
library(ncdf4) x.nc = nc_open(here::here('Atlantis_Runs','master_2_2_0','neus_outputCATCH.nc')) varname = names(x.nc$var) vn1 <- grep('SCA',varname,value = T) vn2 <- grep('Smooth',varname,value = T) nc_close(x.nc)
Results in
[1] "SCA_Catch_FC1" "SCA_Discard_FC1"
and
[1] "Smooth_Dogfish1_Catch" "Smooth_Dogfish2_Catch" "Smooth_Dogfish3_Catch" "Smooth_Dogfish4_Catch" [5] "Smooth_Dogfish5_Catch" "Smooth_Dogfish6_Catch" "Smooth_Dogfish7_Catch" "Smooth_Dogfish8_Catch" [9] "Smooth_Dogfish1_Discards" "Smooth_Dogfish2_Discards" "Smooth_Dogfish3_Discards" "Smooth_Dogfish4_Discards" [13] "Smooth_Dogfish5_Discards" "Smooth_Dogfish6_Discards" "Smooth_Dogfish7_Discards" "Smooth_Dogfish8_Discards"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
atlantistools::load_nc
does not read in all of the species catch. Probably because species names are formatted differently..eg.
Results in
and
The text was updated successfully, but these errors were encountered: