4wings report API - return vessel record id
Jorge Cornejo
Does anyone know why, when I pull the squid jigger data for the IATTC area, I get different values than those shown on the map?
For example, for 2011 in the IATTC area, the map shows 210 vessels, while gfwR (
gfw_ais_fishing_hours
) results 197 unique vessels.```code_rfmo <- gfw_region_id(region_name = "IATTC", region_source = "RFMO")
fh2025 <- gfw_ais_fishing_hours(
spatial_resolution = "HIGH",
temporal_resolution = "DAILY",
group_by = "VESSEL_ID",
start_date = "2021-01-01",
end_date = "2021-12-31",
region = gfw_region_id(region_name = "IATTC", region_source = "RFMO")$id[1],
region_source = "RFMO")
fh_squid_2025 <- fh2025 %>%
filter(
Gear Type
%in% c("SQUID_JIGGER"))length(unique(fh_squid_2025$
Vessel ID
))```Created by Gisela Morinigo