βΉοΈ Open Data Philosophy
All data displayed on The Watcher comes from publicly available sources. We believe in transparency and accessibility.π‘ Live Data Feeds
πΊοΈ Geological Data
π Using These APIs
All data sources are free and open. Here's an example of fetching earthquake data:
// Fetch recent earthquakes
fetch('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_day.geojson')
.then(r => r.json())
.then(data => {
console.log('Total quakes:', data.features.length);
data.features.forEach(f => {
console.log(f.properties.mag, f.properties.place);
});
});
