-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Representative tows (TOGA) #77
Comments
@Laurels1 How are your sql statement structured to get representative tows only? |
Yeah, I've been using the same code as in Survdat: TOGA <= 1324. Good to know. Thanks! |
What is the variable name for A? And is it <5? |
I got this from Northeast Fisheries Science Center Bottom Trawl Survey Protocols for the NOAA Ship Henry B. Bigelow Appendix F:
|
Yup, looks like you don't need A for evaluating good tows. I have this in an older code: |
looks like there are cases in svdbs.union_fscs_svsta where TOGA = null but for the same cruise6 in svdbs.tow_evaliation the TOGA codes are not present Issue is becasue survdat pulls station data from svdbs.union_fscs_svsta. Because of this we will eliminate potentially respresentative tows. eg.
returns a null where
has no entry |
TOGA values: A concatentation of the T, O, G and A codes assigned to an operation. Each standard survey tow is evaluated based on four categories, Type, Operational, Gear and Acquisition (T.O.G.A.). Type (T), Operational (O) and Gear (G) categories are used to validate each tow;
We have been using TOGA <= 1324 as a representative tow for years. This might be wrong!
2024 Fall survey data had a TOGA value = 1144 that was a bad tow.
Advice from survey:
"This is a failed tow for sure, hence the Gear-code of 4. I think using TOGA <= 1324 in your query is potentially returning failed tows. Instead, I would suggest that you use the individual TOGA codes for CRUISE6 > 200900. In other words, something like:
type_code < 2
operation_code < 4
gear_code < 3"
The text was updated successfully, but these errors were encountered: