This project aimed to monitor and quantify land cover changes in the Cable Bay coastal ecosystem using Sentinel-2 satellite imagery over a six-year period (2018-2024). The analysis focused on identifying ecological transitions and understanding their implications for coastal management and conservation efforts.
# Example of the Random Forest implementation in Python
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score, confusion_matrix
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
# Initialize the Random Forest model
rf_model = RandomForestClassifier(
n_estimators=100,
random_state=42,
max_depth=15,
min_samples_split=10,
bootstrap=True,
oob_score=True
)
# Train the model
rf_model.fit(X_train, y_train)
# Make predictions
y_pred = rf_model.predict(X_test)
# Evaluate accuracy
accuracy = accuracy_score(y_test, y_pred)
conf_matrix = confusion_matrix(y_test, y_pred)
print(f"Model Accuracy: {accuracy * 100:.2f}%")
print(f"Out-of-bag score: {rf_model.oob_score_:.2f}")
# Feature importance visualization
feature_importance = rf_model.feature_importances_
sorted_idx = np.argsort(feature_importance)
plt.figure(figsize=(10, 6))
plt.barh(range(len(sorted_idx)), feature_importance[sorted_idx], align='center')
plt.yticks(range(len(sorted_idx)), [features[i] for i in sorted_idx])
plt.title('Random Forest Feature Importance')
plt.tight_layout()
plt.savefig('feature_importance.png', dpi=300)
The analysis revealed significant ecological transitions in the Cable Bay area over the six-year period. The most notable changes included:
This project demonstrates the power of multi-temporal satellite imagery and machine learning techniques for monitoring environmental change. The high classification accuracy validates the methodology and provides a framework for similar analyses in other coastal regions. The findings have been shared with local conservation authorities to inform habitat protection strategies and sustainable development planning.
Modeling salmon habitat connectivity for conservation planning using advanced network analysis, hydrological modeling, and habitat suitability assessment.
Forest inventory and biomass estimation using LiDAR point cloud data, producing detailed 3D vegetation structure models and carbon sequestration estimates.