Spaces:
Sleeping
Sleeping
File size: 28,690 Bytes
4ea315a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 | import streamlit as st
import requests
from datetime import datetime, timedelta
import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
from plotly.subplots import make_subplots
import numpy as np
import os
import folium
from streamlit_folium import st_folium
import json
import time
from geopy.geocoders import Nominatim
from geopy.distance import geodesic
import warnings
warnings.filterwarnings('ignore')
# Secure API key handling
def get_groq_api_key():
"""Securely get GROQ API key from environment variables or Streamlit secrets"""
# Try to get from Streamlit secrets first
try:
return st.secrets["GROQ_API_KEY"]
except:
# Fallback to environment variable
api_key = os.getenv("GROQ_API_KEY")
if not api_key:
st.error("π GROQ API key not found. Please configure it in Streamlit secrets or environment variables.")
st.info("""
**To configure the API key:**
1. **For Hugging Face Spaces**: Add `GROQ_API_KEY` in your Space settings under 'Repository secrets'
2. **For local development**: Set environment variable `GROQ_API_KEY=your_key_here`
3. **For Streamlit Cloud**: Add to secrets.toml file
""")
return None
return api_key
# Color schemes for different magnitude levels
MAGNITUDE_COLORS = {
'Low': '#00ff00', # Green
'Moderate': '#ffff00', # Yellow
'High': '#ff8000', # Orange
'Severe': '#ff0000', # Red
'Extreme': '#800000' # Dark Red
}
# Risk assessment thresholds
RISK_THRESHOLDS = {
'low': {'count': 5, 'max_magnitude': 3.0},
'moderate': {'count': 10, 'max_magnitude': 4.5},
'high': {'count': 20, 'max_magnitude': 5.5},
'severe': {'count': 30, 'max_magnitude': 6.5},
'extreme': {'count': 50, 'max_magnitude': 7.0}
}
# Emergency protocols
EMERGENCY_PROTOCOLS = {
'low': "Monitor situation. No immediate action required.",
'moderate': "Stay alert. Review emergency plans.",
'high': "Prepare emergency kit. Stay informed.",
'severe': "Follow evacuation orders if issued. Seek shelter.",
'extreme': "IMMEDIATE EVACUATION. Follow emergency services."
}
def get_groq_summary(prompt, context=""):
"""Enhanced Groq LLM function with secure API key handling"""
api_key = get_groq_api_key()
if not api_key:
return "AI Analysis unavailable - API key not configured"
try:
# Import Groq only when needed to avoid errors if not installed
from groq import Groq
client = Groq(api_key=api_key)
full_prompt = f"{context}\n\n{prompt}" if context else prompt
response = client.chat.completions.create(
model="llama-3.3-70b-versatile",
messages=[
{"role": "system", "content": "You are an expert seismologist, emergency response specialist, and public safety advisor. Provide detailed, accurate, and actionable information."},
{"role": "user", "content": full_prompt}
],
max_tokens=2048,
temperature=0.7,
top_p=0.9,
presence_penalty=0.1,
frequency_penalty=0.1
)
return response.choices[0].message.content
except ImportError:
return "AI Analysis unavailable - Groq library not installed"
except Exception as e:
return f"AI Analysis Error: {str(e)}"
def fetch_earthquakes(min_magnitude=2.5, hours=24, region_bbox=None, detailed=True):
"""Fetch earthquake data with enhanced error handling and data processing"""
try:
endtime = datetime.utcnow()
starttime = endtime - timedelta(hours=hours)
url = "https://earthquake.usgs.gov/fdsnws/event/1/query"
params = {
"format": "geojson",
"starttime": starttime.strftime('%Y-%m-%dT%H:%M:%S'),
"endtime": endtime.strftime('%Y-%m-%dT%H:%M:%S'),
"minmagnitude": min_magnitude,
"orderby": "time",
"limit": 500 if detailed else 200
}
if region_bbox:
params.update({
"minlatitude": region_bbox[1],
"maxlatitude": region_bbox[3],
"minlongitude": region_bbox[0],
"maxlongitude": region_bbox[2],
})
response = requests.get(url, params=params, timeout=30)
response.raise_for_status()
data = response.json()
features = data.get('features', [])
earthquakes = []
for f in features:
prop = f['properties']
geom = f['geometry']
earthquake = {
'time': datetime.utcfromtimestamp(prop['time']/1000),
'place': prop['place'],
'magnitude': prop['mag'],
'longitude': geom['coordinates'][0],
'latitude': geom['coordinates'][1],
'depth': geom['coordinates'][2],
'url': prop['url'],
'type': prop.get('type', 'earthquake'),
'status': prop.get('status', 'automatic'),
'tsunami': prop.get('tsunami', 0),
'felt': prop.get('felt', 0),
'cdi': prop.get('cdi', 0),
'mmi': prop.get('mmi', 0),
'alert': prop.get('alert', ''),
'sig': prop.get('sig', 0)
}
earthquake['risk_level'] = calculate_risk_level(earthquake['magnitude'])
earthquake['time_ago'] = calculate_time_ago(earthquake['time'])
earthquakes.append(earthquake)
df = pd.DataFrame(earthquakes)
if not df.empty:
df['magnitude_category'] = df['magnitude'].apply(categorize_magnitude)
df['depth_category'] = df['depth'].apply(categorize_depth)
df['hour_of_day'] = df['time'].dt.hour
df['day_of_week'] = df['time'].dt.day_name()
return df
except requests.exceptions.RequestException as e:
st.error(f"Network error: {e}")
return pd.DataFrame()
except Exception as e:
st.error(f"Data processing error: {e}")
return pd.DataFrame()
def calculate_risk_level(magnitude):
"""Calculate risk level based on magnitude"""
if magnitude >= 7.0:
return 'Extreme'
elif magnitude >= 6.0:
return 'Severe'
elif magnitude >= 5.0:
return 'High'
elif magnitude >= 4.0:
return 'Moderate'
else:
return 'Low'
def categorize_magnitude(magnitude):
"""Categorize magnitude for analysis"""
if magnitude >= 7.0:
return 'Major (β₯7.0)'
elif magnitude >= 6.0:
return 'Strong (6.0-6.9)'
elif magnitude >= 5.0:
return 'Moderate (5.0-5.9)'
elif magnitude >= 4.0:
return 'Light (4.0-4.9)'
else:
return 'Minor (<4.0)'
def categorize_depth(depth):
"""Categorize depth for analysis"""
if depth < 70:
return 'Shallow (<70km)'
elif depth < 300:
return 'Intermediate (70-300km)'
else:
return 'Deep (>300km)'
def calculate_time_ago(time):
"""Calculate time ago in human readable format"""
now = datetime.utcnow()
diff = now - time
if diff.days > 0:
return f"{diff.days} day(s) ago"
elif diff.seconds >= 3600:
hours = diff.seconds // 3600
return f"{hours} hour(s) ago"
elif diff.seconds >= 60:
minutes = diff.seconds // 60
return f"{minutes} minute(s) ago"
else:
return "Just now"
def analyze_seismic_patterns(df):
"""Analyze seismic patterns and trends"""
if df.empty:
return {}
analysis = {}
try:
# Only calculate distributions if we have data
if len(df) > 0:
analysis['hourly_distribution'] = df['hour_of_day'].value_counts().sort_index()
analysis['daily_distribution'] = df['day_of_week'].value_counts()
# Magnitude statistics - only if we have magnitude data
if 'magnitude' in df.columns and len(df) > 0:
analysis['magnitude_stats'] = {
'mean': df['magnitude'].mean(),
'median': df['magnitude'].median(),
'std': df['magnitude'].std(),
'max': df['magnitude'].max(),
'min': df['magnitude'].min()
}
# Depth statistics - only if we have depth data
if 'depth' in df.columns and len(df) > 0:
analysis['depth_stats'] = {
'mean': df['depth'].mean(),
'median': df['depth'].median(),
'std': df['depth'].std()
}
# Risk distribution - only if we have risk level data
if 'risk_level' in df.columns and len(df) > 0:
analysis['risk_distribution'] = df['risk_level'].value_counts()
# Geographic center - only if we have multiple data points
if len(df) > 1 and 'latitude' in df.columns and 'longitude' in df.columns:
analysis['geographic_center'] = {
'lat': df['latitude'].mean(),
'lon': df['longitude'].mean()
}
except Exception as e:
st.warning(f"Error in pattern analysis: {str(e)}")
return {}
return analysis
def calculate_overall_risk(df):
"""Calculate overall risk assessment"""
if df.empty:
return 'low', "No recent seismic activity"
count = len(df)
max_magnitude = df['magnitude'].max()
risk_score = 0
if count >= RISK_THRESHOLDS['extreme']['count']:
risk_score += 40
elif count >= RISK_THRESHOLDS['severe']['count']:
risk_score += 30
elif count >= RISK_THRESHOLDS['high']['count']:
risk_score += 20
elif count >= RISK_THRESHOLDS['moderate']['count']:
risk_score += 10
if max_magnitude >= RISK_THRESHOLDS['extreme']['max_magnitude']:
risk_score += 40
elif max_magnitude >= RISK_THRESHOLDS['severe']['max_magnitude']:
risk_score += 30
elif max_magnitude >= RISK_THRESHOLDS['high']['max_magnitude']:
risk_score += 20
elif max_magnitude >= RISK_THRESHOLDS['moderate']['max_magnitude']:
risk_score += 10
if risk_score >= 60:
risk_level = 'extreme'
elif risk_score >= 40:
risk_level = 'severe'
elif risk_score >= 25:
risk_level = 'high'
elif risk_score >= 10:
risk_level = 'moderate'
else:
risk_level = 'low'
return risk_level, f"Risk Score: {risk_score}/80"
def create_advanced_map(df, region_bbox=None):
"""Create an advanced interactive map"""
if df.empty:
return None
center_lat = df['latitude'].mean()
center_lon = df['longitude'].mean()
m = folium.Map(
location=[center_lat, center_lon],
zoom_start=6,
tiles='OpenStreetMap'
)
for idx, row in df.iterrows():
if row['magnitude'] >= 6.0:
color = 'red'
radius = 15
elif row['magnitude'] >= 5.0:
color = 'orange'
radius = 12
elif row['magnitude'] >= 4.0:
color = 'yellow'
radius = 10
else:
color = 'green'
radius = 8
popup_content = f"""
<b>Magnitude {row['magnitude']}</b><br>
Location: {row['place']}<br>
Time: {row['time'].strftime('%Y-%m-%d %H:%M:%S')}<br>
Depth: {row['depth']:.1f} km<br>
<a href="{row['url']}" target="_blank">USGS Details</a>
"""
folium.CircleMarker(
location=[row['latitude'], row['longitude']],
radius=radius,
popup=popup_content,
color=color,
fill=True,
fillOpacity=0.7
).add_to(m)
if region_bbox:
folium.Rectangle(
bounds=[[region_bbox[1], region_bbox[0]], [region_bbox[3], region_bbox[2]]],
color='blue',
weight=2,
fillOpacity=0.1
).add_to(m)
return m
def create_comprehensive_charts(df, analysis):
"""Create comprehensive visualization charts"""
if df.empty:
return []
charts = []
# Magnitude over time with trend - with error handling
fig1 = go.Figure()
fig1.add_trace(go.Scatter(
x=df['time'], y=df['magnitude'],
mode='markers',
marker=dict(
size=df['magnitude'] * 2,
color=df['magnitude'],
colorscale='Reds',
showscale=True
),
name='Earthquakes'
))
# Only add trend line if we have enough data points (at least 2)
if len(df) >= 2:
try:
z = np.polyfit(range(len(df)), df['magnitude'], 1)
p = np.poly1d(z)
fig1.add_trace(go.Scatter(
x=df['time'], y=p(range(len(df))),
mode='lines',
name='Trend',
line=dict(color='blue', dash='dash')
))
except (np.linalg.LinAlgError, ValueError) as e:
# If polynomial fitting fails, just show the scatter plot without trend
st.warning(f"Trend analysis unavailable: {str(e)}")
fig1.update_layout(
title='Earthquake Magnitude Over Time with Trend',
xaxis_title='Time',
yaxis_title='Magnitude',
height=400
)
charts.append(fig1)
# Magnitude distribution histogram - only if we have data
if len(df) > 0:
fig2 = px.histogram(
df, x='magnitude', nbins=min(20, len(df)), # Limit bins to data size
title='Magnitude Distribution',
labels={'magnitude': 'Magnitude', 'count': 'Frequency'}
)
fig2.update_layout(height=400)
charts.append(fig2)
# Depth vs Magnitude scatter - only if we have data
if len(df) > 0:
fig3 = px.scatter(
df, x='depth', y='magnitude', color='magnitude',
title='Depth vs Magnitude Relationship',
labels={'depth': 'Depth (km)', 'magnitude': 'Magnitude'}
)
fig3.update_layout(height=400)
charts.append(fig3)
# Hourly distribution - only if we have the data
if 'hourly_distribution' in analysis and len(analysis['hourly_distribution']) > 0:
fig4 = px.bar(
x=analysis['hourly_distribution'].index,
y=analysis['hourly_distribution'].values,
title='Earthquake Activity by Hour of Day',
labels={'x': 'Hour', 'y': 'Count'}
)
fig4.update_layout(height=400)
charts.append(fig4)
# Risk level distribution - only if we have the data
if 'risk_distribution' in analysis and len(analysis['risk_distribution']) > 0:
fig5 = px.pie(
values=analysis['risk_distribution'].values,
names=analysis['risk_distribution'].index,
title='Risk Level Distribution'
)
fig5.update_layout(height=400)
charts.append(fig5)
return charts
def main():
st.set_page_config(
page_title="π QuakeGuard AI",
page_icon="π",
layout="wide",
initial_sidebar_state="expanded"
)
st.markdown("""
<style>
.main-header {
font-size: 3rem;
font-weight: bold;
text-align: center;
color: #1f77b4;
margin-bottom: 2rem;
}
.risk-high { color: #ff4444; font-weight: bold; }
.risk-moderate { color: #ffaa00; font-weight: bold; }
.risk-low { color: #44aa44; font-weight: bold; }
.metric-card {
background-color: #f0f2f6;
padding: 1rem;
border-radius: 0.5rem;
border-left: 4px solid #1f77b4;
color: #222 !important;
}
</style>
""", unsafe_allow_html=True)
st.markdown('<h1 class="main-header">π Advanced Earthquake Warning System</h1>', unsafe_allow_html=True)
st.markdown("### Real-time seismic monitoring with AI-powered risk assessment and emergency protocols")
# Check if API key is configured
if not get_groq_api_key():
st.stop()
st.sidebar.header("βοΈ Configuration")
region = st.sidebar.text_input(
"π Region (optional)",
placeholder="e.g., California, Pakistan, Japan"
)
col1, col2 = st.sidebar.columns(2)
with col1:
min_magnitude = st.slider("π Min Magnitude", 1.0, 7.0, 2.5, 0.1)
with col2:
hours = st.slider("β° Hours", 1, 168, 24)
with st.sidebar.expander("π§ Advanced Options"):
show_detailed_analysis = st.checkbox("Detailed Analysis", value=True)
show_ai_summary = st.checkbox("AI Summary", value=True)
show_emergency_protocols = st.checkbox("Emergency Protocols", value=True)
region_bboxes = {
"California": [-125, 32, -114, 42],
"Pakistan": [60, 23, 77, 37],
"Japan": [129, 31, 146, 45],
"Chile": [-75, -56, -66, -17],
"Turkey": [25, 36, 45, 43],
"Indonesia": [95, -11, 141, 6],
"India": [68, 6, 97, 37],
"Mexico": [-118, 14, -86, 33],
"USA": [-125, 24, -66, 49],
"World": [-180, -90, 180, 90]
}
region_bbox = region_bboxes.get(region.strip().title()) if region else None
if st.button("π Refresh Data", type="primary"):
st.rerun()
with st.spinner("π Fetching earthquake data..."):
df = fetch_earthquakes(min_magnitude, hours, region_bbox, show_detailed_analysis)
if df.empty:
st.warning("β οΈ No recent earthquakes found matching your criteria.")
st.info("π‘ Try reducing the minimum magnitude or increasing the time range.")
# Show a simple message when no data is available
st.markdown("""
<div class="metric-card">
<h3>π¨ Current Risk Level: <span class="risk-low">LOW</span></h3>
<p><strong>Risk Score:</strong> 0/80</p>
<p><strong>Emergency Protocol:</strong> Monitor situation. No immediate action required.</p>
</div>
""", unsafe_allow_html=True)
# Show tabs with appropriate messages
tab1, tab2, tab3, tab4, tab5 = st.tabs(["πΊοΈ Map", "π Analytics", "π Data", "π€ AI Analysis", "π¨ Emergency"])
with tab1:
st.subheader("π Interactive Earthquake Map")
st.info("No earthquake data available for map visualization")
with tab2:
st.subheader("π Advanced Analytics")
st.info("No earthquake data available for analysis")
with tab3:
st.subheader("π Earthquake Data")
st.info("No earthquake data available")
with tab4:
st.subheader("π€ AI-Powered Analysis")
if show_ai_summary:
st.info("No earthquake data available for AI analysis")
else:
st.info("Enable AI Summary in Advanced Options to see AI analysis.")
with tab5:
st.subheader("π¨ Emergency Information")
if show_emergency_protocols:
st.markdown("""
### π¨ Emergency Response Protocols
**Immediate Actions During Earthquake:**
- Drop, Cover, and Hold On
- Stay indoors if you're inside
- Move to open area if you're outside
- Stay away from windows, mirrors, and heavy objects
**After Earthquake:**
- Check for injuries and provide first aid
- Check for gas leaks and electrical damage
- Listen to emergency broadcasts
- Be prepared for aftershocks
**Emergency Contacts:**
- Emergency Services: 911 (US) / 112 (EU) / 999 (UK)
- USGS Earthquake Information: https://earthquake.usgs.gov
- Local Emergency Management: Check your local government website
""")
st.markdown("""
### π Current Emergency Status
- **Risk Level**: LOW
- **Recommended Action**: Monitor situation. No immediate action required.
- **Monitoring Required**: No
""")
else:
st.info("Enable Emergency Protocols in Advanced Options to see emergency information.")
else:
st.success(f"β
Found {len(df)} earthquakes in the last {hours} hours")
st.write(f"π Last updated: {datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')} UTC")
risk_level, risk_score = calculate_overall_risk(df)
st.markdown(f"""
<div class="metric-card">
<h3>π¨ Current Risk Level: <span class="risk-{risk_level}">{risk_level.upper()}</span></h3>
<p><strong>Risk Score:</strong> {risk_score}</p>
<p><strong>Emergency Protocol:</strong> {EMERGENCY_PROTOCOLS[risk_level]}</p>
</div>
""", unsafe_allow_html=True)
col1, col2, col3, col4 = st.columns(4)
with col1:
st.metric("Total Earthquakes", len(df))
with col2:
st.metric("Max Magnitude", f"{df['magnitude'].max():.1f}")
with col3:
st.metric("Avg Magnitude", f"{df['magnitude'].mean():.2f}")
with col4:
st.metric("Avg Depth", f"{df['depth'].mean():.1f} km")
tab1, tab2, tab3, tab4, tab5 = st.tabs(["πΊοΈ Map", "π Analytics", "π Data", "π€ AI Analysis", "π¨ Emergency"])
with tab1:
st.subheader("π Interactive Earthquake Map")
if not df.empty:
try:
map_obj = create_advanced_map(df, region_bbox)
if map_obj:
st_folium(map_obj, width=800, height=500)
else:
st.info("Unable to create map visualization")
except Exception as e:
st.error(f"Error creating map: {str(e)}")
st.info("Try adjusting your search criteria")
else:
st.info("No earthquake data available for map visualization")
with tab2:
st.subheader("π Advanced Analytics")
if not df.empty:
try:
analysis = analyze_seismic_patterns(df)
charts = create_comprehensive_charts(df, analysis)
for i, chart in enumerate(charts):
st.plotly_chart(chart, use_container_width=True)
if analysis:
col1, col2 = st.columns(2)
with col1:
st.subheader("π Magnitude Statistics")
if 'magnitude_stats' in analysis:
stats_df = pd.DataFrame([analysis['magnitude_stats']]).T
stats_df.columns = ['Value']
st.dataframe(stats_df)
else:
st.info("Insufficient data for magnitude statistics")
with col2:
st.subheader("π Risk Distribution")
if 'risk_distribution' in analysis and len(analysis['risk_distribution']) > 0:
risk_df = pd.DataFrame(analysis['risk_distribution'])
risk_df.columns = ['Count']
st.dataframe(risk_df)
else:
st.info("No risk distribution data available")
except Exception as e:
st.error(f"Error in analytics: {str(e)}")
st.info("Try adjusting your search criteria or check your internet connection")
else:
st.info("No earthquake data available for analysis")
with tab3:
st.subheader("π Earthquake Data")
if not df.empty:
col1, col2 = st.columns(2)
with col1:
magnitude_filter = st.multiselect(
"Filter by Magnitude Category",
options=df['magnitude_category'].unique(),
default=df['magnitude_category'].unique()
)
with col2:
risk_filter = st.multiselect(
"Filter by Risk Level",
options=df['risk_level'].unique(),
default=df['risk_level'].unique()
)
filtered_df = df[
(df['magnitude_category'].isin(magnitude_filter)) &
(df['risk_level'].isin(risk_filter))
]
st.dataframe(
filtered_df[['time', 'place', 'magnitude', 'depth', 'risk_level', 'time_ago', 'url']],
use_container_width=True
)
csv = filtered_df.to_csv(index=False)
st.download_button(
label="π₯ Download CSV",
data=csv,
file_name=f"earthquakes_{datetime.now().strftime('%Y%m%d_%H%M%S')}.csv",
mime="text/csv"
)
with tab4:
st.subheader("π€ AI-Powered Analysis")
if show_ai_summary and not df.empty:
with st.spinner("π€ Generating AI analysis..."):
analysis = analyze_seismic_patterns(df)
risk_level, risk_score = calculate_overall_risk(df)
prompt = f"""
As an expert seismologist and emergency response specialist, provide a comprehensive analysis of the following earthquake data:
SUMMARY STATISTICS:
- Total earthquakes: {len(df)}
- Time period: {hours} hours
- Magnitude range: {df['magnitude'].min():.1f} - {df['magnitude'].max():.1f}
- Average magnitude: {df['magnitude'].mean():.2f}
- Risk level: {risk_level.upper()}
- Risk score: {risk_score}
EARTHQUAKE DATA:
{df[['time', 'place', 'magnitude', 'depth']].head(20).to_string(index=False)}
Please provide:
1. **Risk Assessment**: Detailed evaluation of current seismic risk
2. **Pattern Analysis**: Identification of any concerning patterns or trends
3. **Regional Impact**: Specific implications for affected areas
4. **Safety Recommendations**: Detailed safety advice for the public
5. **Emergency Preparedness**: Specific actions people should take
6. **Monitoring Recommendations**: What to watch for in coming hours/days
Be thorough, specific, and actionable in your response.
"""
summary = get_groq_summary(prompt)
st.markdown(summary)
else:
st.info("Enable AI Summary in Advanced Options to see AI analysis.")
with tab5:
st.subheader("π¨ Emergency Information")
if show_emergency_protocols:
st.markdown("""
### π¨ Emergency Response Protocols
**Immediate Actions During Earthquake:**
- Drop, Cover, and Hold On
- Stay indoors if you're inside
- Move to open area if you're outside
- Stay away from windows, mirrors, and heavy objects
**After Earthquake:**
- Check for injuries and provide first aid
- Check for gas leaks and electrical damage
- Listen to emergency broadcasts
- Be prepared for aftershocks
**Emergency Contacts:**
- Emergency Services: 911 (US) / 112 (EU) / 999 (UK)
- USGS Earthquake Information: https://earthquake.usgs.gov
- Local Emergency Management: Check your local government website
""")
st.markdown(f"""
### π Current Emergency Status
- **Risk Level**: {risk_level.upper()}
- **Recommended Action**: {EMERGENCY_PROTOCOLS[risk_level]}
- **Monitoring Required**: {'Yes' if risk_level in ['high', 'severe', 'extreme'] else 'No'}
""")
else:
st.info("Enable Emergency Protocols in Advanced Options to see emergency information.")
if __name__ == "__main__":
main() |