Environmental Impacts

CalCOFI was founded partly on the idea that sardine populations off the coast of California were greatly affected by environmental impacts. The region of interest, which can be seen in the following animation, is an area of great marine productivity for a variety of reasons. The California Current runs south along the coast, carrying cold waters from the Arctic region down to the equator. Additionally, off shore winds drive upwelling, the process by which warm upper ocean layers are pushed towards ocean basins and cold water from the depths rises up to replace it. This water is richer in nutrients than the warmer surface waters and is a major driver of biological productivity in the region. The following figure shows the locations of sardine larvae from 1951 to 2019, as well as the amount of larva caught during the cruises.

fig = px.scatter_mapbox(larva, lat='latitude', lon='longitude', hover_name='Sardinops.sagax', zoom = 6, animation_frame='year', center = dict(lat=33, lon= -121), opacity = 1, size = 'sardine_size', color = 'Sardinops.sagax', color_continuous_scale= px.colors.sequential.BuPu, range_color=(0, 6100))


fig.update_layout(
    mapbox_style="white-bg",
    mapbox_layers=[
        {
            "below": 'traces',
            "sourcetype": "raster",
            "sourceattribution": "United States Geological Survey",
            "source": [
                "https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}"
            ]
        }
      ])
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0})


fig.show()

Sardine’s Relationship with the Ocean’s Temperature

The change in ocean temperature was originally thought to be the main factor for the decline of the Pacific sardine population. Thus, we are going to explore whether the changes in our ocean’s temperature had any effect on the sardine population. First, we are going to visualize ocean temperature over the years:

fig = px.scatter_mapbox(bottle, lat='latitude', lon='longitude', hover_name = 'Avg_T_degC', color = 'Avg_T_degC', 
                        center=dict(lat=33, lon=-121), animation_frame='year', zoom=6)

fig.update_layout(
    mapbox_style="white-bg",
    mapbox_layers=[
        {
            "below": 'traces',
            "sourcetype": "raster",
            "sourceattribution": "United States Geological Survey",
            "source": [
                "https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}"
            ]
        }
      ])
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0})
fig.show()

Changes in climate have been affecting ocean temperatures and currents. We are going to predict that the rise in temerature near California over the years would actually BENEFIT the sardine population. A study conducted by researchers from The National Marine Fisheries Service (also known as NOAA Fisheries) found that pacific sardine tend to prefer ocean temperatures at around 11C-19C (51.8-66.2F). Using this information, I want to note a striking detail from our visualization which showcases that it was after the 1990s where ocean temperatures exceed 11 degrees celcius and reached the confort zone for the pacific sardine population. This is very similar to the time where the sardine population began to recover. Thus, let’s visualize to see if the sardine population was affected by temperature in any way:

This model may be more realistic in that it cannot produce a negative sardine larvae value. However, visually we see that our model is imperfect and has a lot of errors. While it may not be possible to accurately predict sardine larvae amount based on ocean temperature, we can conclude that the two variables are significant enought to be related with one another in a positive correlation.

Another factor to be considered in future models is the impact of climate cycles, such as the the El Nino Southern Oscillation (ENSO) in the Pacific Ocean.