Meteorite Landings
This comprehensive data set from The Meteoritical Society contains information on all of the known meteorite landings. https://data.nasa.gov/dataset/meteorite-landings
Getting Started
This dataset is ready for exploration using PostgreSQL 17. Switch to the "SQL Editor" tab to start writing queries.
Sample Queries
Try these example queries to get started:
Top 10 years with most meteorite landings with count
select year, count(*) as num_landings from meteorite_landings group by year order by num_landings desc limit 10;
SQL Output