Model optimal wildlife corridors for grizzly bears in Alberta using least cost path analysis to support conservation planning and wildlife management strategies.
# Example of cost distance calculation in Python with GDAL
import gdal
import numpy as np
from skimage.graph import route_through_array
def calculate_least_cost_path(cost_surface, start_point, end_point):
"""Calculate the least cost path through a cost surface."""
# Read cost surface raster
ds = gdal.Open(cost_surface)
band = ds.GetRasterBand(1)
array = band.ReadAsArray()
# Get geotransform information
geotransform = ds.GetGeoTransform()
# Convert geographic coordinates to array indices
start_idx = (
int((start_point[0] - geotransform[0]) / geotransform[1]),
int((start_point[1] - geotransform[3]) / geotransform[5])
)
end_idx = (
int((end_point[0] - geotransform[0]) / geotransform[1]),
int((end_point[1] - geotransform[3]) / geotransform[5])
)
# Calculate least cost path
indices, weight = route_through_array(
array, start_idx, end_idx,
fully_connected=True
)
return indices, weight
The analysis revealed several important insights for grizzly bear conservation in Alberta:
This project contributes to wildlife conservation by providing evidence-based planning tools for habitat connectivity. The identified corridors can inform land use decisions, highway crossing structure placement, and protected area designation. The methodology also demonstrates the value of integrating multiple environmental factors in movement modeling, offering a more nuanced understanding of wildlife mobility in complex landscapes.
Analyzing GPS collar data for multiple wildlife species to understand movement patterns, habitat selection, and behavioral responses to environmental changes.
Assessing landscape connectivity between protected areas to identify potential wildlife corridors and prioritize conservation efforts for maximum ecological benefit.