diff --git a/frontend/src/components/CorrelationGraphs/YearlyTemperatureNdviCorrelation.vue b/frontend/src/components/CorrelationGraphs/YearlyTemperatureNdviCorrelation.vue
new file mode 100644
index 0000000..89b0790
--- /dev/null
+++ b/frontend/src/components/CorrelationGraphs/YearlyTemperatureNdviCorrelation.vue
@@ -0,0 +1,125 @@
+
+
+ Yearly NDVI vs. Temperature
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/components/MainSection.vue b/frontend/src/components/MainSection.vue
index 8bec781..9118bc1 100644
--- a/frontend/src/components/MainSection.vue
+++ b/frontend/src/components/MainSection.vue
@@ -1,5 +1,6 @@
+
@@ -32,11 +33,13 @@ import TemperatureNdviScatter from "./CorrelationGraphs/TemperatureNdviScatter.v
import TempDifferenceGraph from "./WeatherGraphs/TempDifferenceGraph.vue"
import SoilTempDifferenceGraph from "./WeatherGraphs/SoilTempDifferenceGraph.vue"
import NdviDifferenceGraph from "./NdviGraphs/NdviDifferenceGraph.vue"
+import YearlyNdviTemperaturePlot from "./CorrelationGraphs/YearlyTemperatureNdviCorrelation.vue"
export default {
name: 'MainSection',
components: {
Images,
+ YearlyNdviTemperaturePlot,
NdviComparisonGraph,
NdviSelectMonthGraph,
NdviOverlayGraph,
diff --git a/frontend/src/components/WeatherGraphs/TempDifferenceGraph.vue b/frontend/src/components/WeatherGraphs/TempDifferenceGraph.vue
index ce1be0e..2d83eab 100644
--- a/frontend/src/components/WeatherGraphs/TempDifferenceGraph.vue
+++ b/frontend/src/components/WeatherGraphs/TempDifferenceGraph.vue
@@ -29,8 +29,8 @@
setup() {
const weatherData = ref(null);
const startDate = ref("1990-01-01");
- const endDate = ref("2023-12-31");
- const selectedMonth = ref(0); // Default to January (0-indexed)
+ const endDate = ref("2024-11-30");
+ const selectedMonth = ref(7); // Default to August (the most severe month) (0-indexed)
const months = ref([
"January",
"February",