Earthquake: Difference between revisions
No edit summary |
No edit summary |
||
Line 84: | Line 84: | ||
For a comprehensive look at the dataset, [download the full data file here](https://docs.google.com/spreadsheets/d/108Qy2mM__pZ166r6XE4ippnhhAtf1l4m/edit?usp=drive_link&ouid=116829712442005378671&rtpof=true&sd=true). | For a comprehensive look at the dataset, [download the full data file here](https://docs.google.com/spreadsheets/d/108Qy2mM__pZ166r6XE4ippnhhAtf1l4m/edit?usp=drive_link&ouid=116829712442005378671&rtpof=true&sd=true). | ||
''A'' and ''B'' are free points. Whenever the board is updated, e.g. | |||
after a drag event, the x-coordinate of ''A'' is set to 1 and | |||
the y-coordinate of ''B'' is set to 1. Therefore, ''A'' moves | |||
on the vertical line through x=1, ''B'' moves on the horizontal line through y=1. | |||
<jsxgraph width="600" height="600"> | |||
var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:true,boundingbox:[-1,2,2,-1]}); | |||
var A = brd.create('point', [1,0]); | |||
var B = brd.create('point', [0,1]); | |||
brd.on('move', function(){ | |||
A.moveTo([1, A.Y()]); | |||
B.moveTo([B.X(), 1]); | |||
}); | |||
</jsxgraph> | |||
===The JavaScript code=== | |||
<source lang="javascript"> | |||
var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:true,boundingbox:[-1,2,2,-1]}); | |||
var A = brd.create('point', [1,0]); | |||
var B = brd.create('point', [0,1]); | |||
brd.on('move', function(){ | |||
A.moveTo([1, A.Y()]); | |||
B.moveTo([B.X(), 1]); | |||
}); | |||
</source> | |||
[[Category:Examples]] | |||
== Citation == | == Citation == | ||
[Link to the original source of data](<https://doc.emdat.be/docs/data-structure-and-content/emdat-public-table/>) | [Link to the original source of data](<https://doc.emdat.be/docs/data-structure-and-content/emdat-public-table/>) |
Revision as of 21:14, 18 January 2024
Earthquake Data Analysis
This dataset provides detailed information on global earthquake occurrences. The data spans a wide time range, capturing multiple decades of seismic activities. Key attributes include the location (latitude and longitude) of the earthquake, its magnitude, the date of entry, as well as the resulting damages, injuries, and deaths. Some salient findings from the data include the distribution of earthquake magnitudes, regions most affected by these seismic activities, and the correlation between earthquake magnitude and the damages caused. The data serves as an invaluable resource for researchers, policymakers, and organizations aiming to understand and mitigate the impacts of earthquakes. The data source and original citation can be found at the end of this documentation.
Visualization
Visualizations created from the dataset offer insights into the temporal trends, geographical distribution, and impact of the earthquakes.
- Trend of Earthquake Record Entries: This visualization shows the trend of earthquake record entries over the years based on the "Entry Date".
- Distribution of Earthquake Magnitudes: This histogram provides a snapshot of the distribution of earthquake magnitudes.
- Countries Most Affected: Several visualizations highlight the countries with the most deaths, injuries, and damages due to earthquakes.
- Heatmap of Earthquake Magnitudes: This interactive heatmap provides a visual representation of earthquake occurrences, with intensity indicating the magnitude of the earthquakes. [View & Interact with the Heatmap](https://drive.google.com/file/d/1q24aMjQK81BnGQ1xBKe24VULy2pjrtyB/view?usp=drive_link))
Sample Data
Here's a glimpse of the earthquake data:
DisNo. | Country | Location | Magnitude | Start Year | Start Month | Start Day | Total Deaths |
2000-0023-BGD | Bangladesh | Maheshkhali area (Cox's Bazar district, Chittagong province) | 4.3 | 2000 | 1 | 2 | |
2000-0033-CHN | China | Yongren Xian, Yao'an Xian, Nanhua Xian, Dayao Xian areas (Chuxiong Yi district, Yunnan Sheng province), Xiangyun Xian area (Dali Bai district, Yunnan Sheng province) | 5.9 | 2000 | 1 | 14 | 7.0 |
2000-0036-CHN | China | Mile Xian area (Honghe Hani and Yi district, Yunnan Sheng province), Qiubei Xian area (Wenshan Zhuang and Miao district, Yunnan Sheng province) | 4.9 | 2000 | 1 | 26 | 1.0 |
2000-0041-CHN | China | Xiuyan Manzu Zizhixian area (Anshan district, Liaoning Sheng province) | 5.1 | 2000 | 1 | 11 | |
2000-0051-IRN | Iran (Islamic Republic of) | Kashmar, Bardeskan districts (Khorasan) | 5.3 | 2000 | 2 | 2 | 1.0 |
For a comprehensive look at the dataset, [download the full data file here](https://docs.google.com/spreadsheets/d/108Qy2mM__pZ166r6XE4ippnhhAtf1l4m/edit?usp=drive_link&ouid=116829712442005378671&rtpof=true&sd=true).
A and B are free points. Whenever the board is updated, e.g.
after a drag event, the x-coordinate of A is set to 1 and
the y-coordinate of B is set to 1. Therefore, A moves
on the vertical line through x=1, B moves on the horizontal line through y=1.
<jsxgraph width="600" height="600">
var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:true,boundingbox:[-1,2,2,-1]});
var A = brd.create('point', [1,0]); var B = brd.create('point', [0,1]);
brd.on('move', function(){
A.moveTo([1, A.Y()]); B.moveTo([B.X(), 1]);
}); </jsxgraph>
The JavaScript code
<source lang="javascript"> var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:true,boundingbox:[-1,2,2,-1]});
var A = brd.create('point', [1,0]); var B = brd.create('point', [0,1]);
brd.on('move', function(){
A.moveTo([1, A.Y()]); B.moveTo([B.X(), 1]);
}); </source>
Citation
[Link to the original source of data](<https://doc.emdat.be/docs/data-structure-and-content/emdat-public-table/>)