🌱 Soil Conditions Analysis

Deep insights into your soil health and growing conditions

Analysis Period

Last 24 Hours Last 3 Days Last Week Last 2 Weeks Last Month
@if($soilData && $soilData->count() > 0)
🌡️ Soil Temperature
{{ round($soilHealth['surface_temp_avg'] ?? 0) }}°F
Average at 6cm depth
@if($soilHealth['surface_temp_avg'] >= 50 && $soilHealth['surface_temp_avg'] <= 80) Optimal for blackberry growth @elseif($soilHealth['surface_temp_avg'] < 50) Below optimal range @else Above optimal range @endif
💧 Root Zone Moisture
{{ round(($soilHealth['root_zone_moisture'] ?? 0) * 100) }}%
3-9cm depth average
@if($soilHealth['root_zone_moisture'] >= 0.2 && $soilHealth['root_zone_moisture'] <= 0.4) Excellent moisture levels @elseif($soilHealth['root_zone_moisture'] >= 0.15) Adequate moisture @else Needs irrigation @endif
@if(isset($soilHealth['moisture_consistency']))
📊 Moisture Stability
{{ round($soilHealth['moisture_consistency'], 3) }}
Consistency index
@if($soilHealth['moisture_consistency'] < 0.05) Very consistent @elseif($soilHealth['moisture_consistency'] < 0.1) Moderately consistent @else Variable conditions @endif
@endif @if(isset($soilHealth['temperature_stability']))
🌡️ Temperature Stability
{{ round($soilHealth['temperature_stability'], 1) }}°F
Daily temperature range
@if($soilHealth['temperature_stability'] < 5) Very stable @elseif($soilHealth['temperature_stability'] < 10) Moderately stable @else High variation @endif
@endif

🏗️ Soil Profile Analysis

Temperature and moisture at different soil depths:

Surface (0cm)

{{ round($soilData->avg('soil_temperature_0cm_f') ?? 0) }}°F
Most variable layer
Affected by air temp

Shallow (6cm)

{{ round($soilData->avg('soil_temperature_6cm_f') ?? 0) }}°F
Surface root zone
Key for seedlings

Root Zone (3-9cm)

💧 {{ round(($soilData->avg('soil_moisture_3_9cm') ?? 0) * 100) }}%
🌡️ ~{{ round($soilData->avg('soil_temperature_6cm_f') ?? 0) }}°F
Primary root zone
Critical for plant health

Deep Zone (9-27cm)

{{ round(($soilData->avg('soil_moisture_9_27cm') ?? 0) * 100) }}%
Deep moisture reserve
Stable conditions

📋 Recent Soil Conditions

@foreach($soilData->reverse()->take(12) as $record) @endforeach
Time Surface Temp 6cm Temp Surface Moisture Root Zone Moisture Air Temp Precipitation
{{ $record->recorded_at->format('M j g:i A') }} {{ round($record->soil_temperature_0cm_f ?? 0) }}°F {{ round($record->soil_temperature_6cm_f ?? 0) }}°F {{ round(($record->soil_moisture_0_1cm ?? 0) * 100) }}% {{ round(($record->soil_moisture_3_9cm ?? 0) * 100) }}% {{ round($record->temperature_2m_f ?? 0) }}°F {{ round($record->rain_inches ?? 0, 1) }}"
Moisture Legend: Low (<20%) Optimal (20-40%) High (>40%)

📈 Soil Temperature & Moisture Trends

📊
Interactive soil chart would display here
{{ $soilData->count() }} data points over {{ $days }} days

🌿 Soil Management Recommendations

@php $avgMoisture = ($soilHealth['root_zone_moisture'] ?? 0) * 100; $avgTemp = $soilHealth['surface_temp_avg'] ?? 0; @endphp @if($avgMoisture < 20)
💧 Irrigation Needed
Root zone moisture is at {{ round($avgMoisture) }}%, below optimal range. Consider increasing irrigation frequency or duration.
@elseif($avgMoisture > 40)
⚠️ Reduce Watering
Soil moisture is at {{ round($avgMoisture) }}%, which may lead to root problems. Reduce irrigation or improve drainage.
@else
✅ Optimal Moisture
Soil moisture levels are in the ideal range for blackberry growth. Continue current irrigation schedule.
@endif @if($avgTemp < 50)
🌡️ Cold Soil Conditions
Soil temperature is {{ round($avgTemp) }}°F. Consider mulching to insulate soil and protect roots from cold.
@elseif($avgTemp > 85)
🌡️ Hot Soil Conditions
Soil temperature is {{ round($avgTemp) }}°F. Apply mulch to cool soil and reduce evaporation.
@endif
📊 General Soil Health
Monitor soil conditions regularly during growing season. Optimal soil temperature for blackberries is 60-75°F with moisture at 25-35%.
@else

🌱 No Soil Data Available

No soil condition data found for the selected period.

Visit the Weather Admin page to start collecting comprehensive soil data.

@endif
← Weather Dashboard 📊 Historical Data 🌿 Growing Analysis ⚙️ Data Management 🏠 Operations