You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should not be publishing fishing events for vessels that we do not believe are fishing vessels. Consider filtering with something like:
WITH
fishing as (
SELECT
DISTINCT CAST(mmsi as STRING) as ssvid
FROM`gfw_research.vessel_info_allyears_20181002`WHERE
on_fishing_list_best
AND is_active
AND (spoofing_days <5OR spoofing_days IS NULL)
AND (spoofing_factor <1.05OR spoofing_factor IS NULL)
)
SELECT*FROM messages JOIN fishing USING (ssvid)
The text was updated successfully, but these errors were encountered:
We should not be publishing fishing events for vessels that we do not believe are fishing vessels. Consider filtering with something like:
The text was updated successfully, but these errors were encountered: