Model salmon habitat connectivity using GIS and Digital Elevation Models (DEMs) to identify barriers and support conservation planning strategies.
# Example of ArcPy code for stream network derivation
import arcpy
from arcpy.sa import *
# Set workspace and enable Spatial Analyst extension
arcpy.env.workspace = "C:/GIS_Projects/Salmon_Analysis"
arcpy.CheckOutExtension("Spatial")
# Fill sinks in the DEM
dem = "watershed_dem.tif"
filled_dem = Fill(dem)
filled_dem.save("filled_dem.tif")
# Calculate flow direction
flow_dir = FlowDirection(filled_dem)
flow_dir.save("flow_direction.tif")
# Calculate flow accumulation
flow_acc = FlowAccumulation(flow_dir)
flow_acc.save("flow_accumulation.tif")
# Extract streams (cells with accumulation > threshold)
threshold = 1000 # Adjust based on watershed characteristics
streams = Con(flow_acc > threshold, 1)
streams.save("stream_network.tif")
# Convert raster streams to vector features
arcpy.sa.StreamToFeature(streams, flow_dir, "stream_network.shp", "SIMPLIFY")
This analysis revealed several important insights for salmon habitat conservation:
The project provides valuable information for salmon conservation efforts, integrating hydrological modeling with habitat assessment. The methodology can be applied to other watersheds to prioritize restoration efforts and improve habitat connectivity. The findings directly support local conservation initiatives and have been incorporated into regional salmon recovery plans.
Monitoring land cover changes in Cable Bay, BC through remote sensing and machine learning techniques to identify ecological transitions and their conservation implications.
Least cost path analysis for wildlife corridors to support conservation efforts and reduce human-wildlife conflicts in sensitive alpine ecosystems.