公开数据集
数据结构 ? 4.01M
Data Structure ?
* 以上分析是由系统提取分析形成的结果,具体实际数据为准。
README.md
[The Meteoritical Society](http://www.meteoriticalsociety.org/) collects data on meteorites that have fallen to Earth from outer space. This dataset includes the location, mass, composition, and fall year for over 45,000 meteorites that have struck our planet.
**Notes on missing or incorrect data points**:
- a few entries here contain date information that was incorrectly parsed into the NASA database. As a spot check: any date that is before 860 CE or after 2016 are incorrect; these should actually be BCE years. There may be other errors and we are looking for a way to identify them.
- a few entries have latitude and longitude of 0N/0E (off the western coast of Africa, where it would be quite difficult to recover meteorites). Many of these were actually discovered in Antarctica, but exact coordinates were not given. 0N/0E locations should probably be treated as NA.
[The starter kernel]() for this dataset has a quick way to filter out these observations using dplyr in R, provided here for convenience:
meteorites.geo <- meteorites.all %>%
filter(year>=860 & year<=2016) %>% # filter out weird years
filter(reclong<=180 & reclong>=-180 & (reclat!=0 | reclong!=0)) # filter out weird locations
## The Data
Note that a few column names start with "rec" (e.g., recclass, reclat, reclon). These are the *recommended* values of these variables, according to The Meteoritical Society. In some cases, there were historical reclassification of a meteorite, or small changes in the data on where it was recovered; this dataset gives the currently recommended values.
The dataset contains the following variables:
- **name**: the name of the meteorite (typically a location, often modified with a number, year, composition, etc)
- **id**: a unique identifier for the meteorite
- **nametype**: one of:
-- *valid*: a typical meteorite
-- *relict*: a meteorite that has been highly degraded by weather on Earth
- **recclass**: the class of the meteorite; one of a large number of classes based on physical, chemical, and other characteristics (see the Wikipedia article on [meteorite classification](https://en.wikipedia.org/wiki/Meteorite_classification) for a primer)
- **mass**: the mass of the meteorite, in grams
- **fall**: whether the meteorite was seen falling, or was discovered after its impact; one of:
-- *Fell*: the meteorite's fall was observed
-- *Found*: the meteorite's fall was not observed
- **year**: the year the meteorite fell, or the year it was found (depending on the value of **fell**)
- **reclat**: the latitude of the meteorite's landing
- **reclong**: the longitude of the meteorite's landing
- **GeoLocation**: a parentheses-enclose, comma-separated tuple that combines **reclat** and **reclong**
## What can we do with this data?
Here are a couple of thoughts on questions to ask and ways to look at this data:
- how does the geographical distribution of observed falls differ from that of found meteorites?
-- this would be great overlaid on a cartogram or alongside a high-resolution population density map
- are there any geographical differences or differences over time in the class of meteorites that have fallen to Earth?
## Acknowledgements
This dataset was downloaded from [NASA's Data Portal](https://data.nasa.gov/Space-Science/Meteorite-Landings/gh4g-9sfh), and is based on The Meteoritical Society's [Meteoritical Bulletin Database](http://www.lpi.usra.edu/meteor/index.php) (this latter database provides additional information such as meteorite images, links to primary sources, etc.).
×
帕依提提提温馨提示
该数据集正在整理中,为您准备了其他渠道,请您使用
注:部分数据正在处理中,未能直接提供下载,还请大家理解和支持。
暂无相关内容。
暂无相关内容。
- 分享你的想法
去分享你的想法~~
全部内容
欢迎交流分享
开始分享您的观点和意见,和大家一起交流分享.
数据使用声明:
- 1、该数据来自于互联网数据采集或服务商的提供,本平台为用户提供数据集的展示与浏览。
- 2、本平台仅作为数据集的基本信息展示、包括但不限于图像、文本、视频、音频等文件类型。
- 3、数据集基本信息来自数据原地址或数据提供方提供的信息,如数据集描述中有描述差异,请以数据原地址或服务商原地址为准。
- 1、本站中的所有数据集的版权都归属于原数据发布者或数据提供方所有。
- 1、如您需要转载本站数据,请保留原数据地址及相关版权声明。
- 1、如本站中的部分数据涉及侵权展示,请及时联系本站,我们会安排进行数据下线。