Skip to content

erolkibris/EarthquakeAnalysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Earthquake Analysis in Marmara Region

Packages

library(dplyr)
library(ggplot2)
library(ggmap)

Data

I downloaded the eartquake dataset from http://www.koeri.boun.edu.tr/sismo/zeqdb/ , specially dates between 1900 and 2019. I uploaded the datasets into GitHub.

data <- read.delim("C:/Users/User/Desktop/Earthquake Analysis/data.txt", stringsAsFactors = FALSE)
head(data, 5)
  No  Deprem.Kodu Olus.tarihi Olus.zamani   Enlem  Boylam Der.km.  xM MD  ML  Mw Ms Mb Tip   Yer
1  1 2.019023e+13  2019.02.28 10:14:14.16 39.5725 28.8385     9.4 3.6  0 3.6 3.5  0  0  Ke   CAMHARMAN-DURSUNBEY (BALIKESIR) [South West  1.7 km]
2  2 2.019022e+13  2019.02.24 01:22:24.57 40.3800 27.1757    11.1 3.9  0 3.9 3.9  0  0  Ke   CAKIRLI-BIGA (CANAKKALE) [North East  0.7 km]
3  3 2.019022e+13  2019.02.24 01:05:39.75 40.3932 27.1682     9.7 3.6  0 3.5 3.6  0  0  Ke   CAKIRLI-BIGA (CANAKKALE) [North West  2.2 km]
4  4 2.019022e+13  2019.02.20 19:42:06.62 39.6255 26.4203     7.0 3.8  0 3.8 3.6  0  0  Ke   SAPANCA-AYVACIK (CANAKKALE) [South East  2.7 km]
5  5 2.019022e+13  2019.02.20 18:23:27.94 39.6173 26.4088     8.2 5.4  0 5.4 5.0  0  0  Ke   AYVACIK (CANAKKALE) [North East  1.6 km]
                                                            

I select "Olus.tarihi, Olus.zamani, Enlem, Boylam, Der.km., xM, Yer" columns and sort rows in increasing dates.

earthquake <- data%>%
  select(Olus.tarihi, Olus.zamani, Enlem, Boylam, Der.km., xM, Yer)%>%
  arrange(Olus.tarihi, Olus.zamani)
head(earthquake)
   Olus.tarihi Olus.zamani Enlem Boylam Der.km. xM                                           Yer
1  1901.05.12 12:32:00.00  39.8   30.5      15 5.3       TEPEBASI (ESKISEHIR) [North East  1.9 km]
2  1903.04.04 00:00:00.00  39.0   28.0      20 5.6         PEKMEZCI-AKHISAR (MANISA) [West 3.0 km]
3  1905.01.11 17:32:00.00  39.6   27.9      15 5.3          CAYIRHISAR- (BALIKESIR) [South 1.7 km]
4  1905.04.15 05:36:00.00  40.2   29.0       6 5.7            NILUFER (BURSA) [South East  2.4 km]
5  1905.04.30 16:13:00.00  39.8   30.5      22 5.5       TEPEBASI (ESKISEHIR) [North East  1.9 km]
6  1905.05.01 19:00:01.00  39.9   31.1       5 4.9 AGACHISAR-ALPU (ESKISEHIR) [South West  4.6 km]

Short Description of Variables

Olus.tarihi : the date when earthquake occured
Olus.zamani : the time when earthquake occured
Enlem : latitude
Boylam : longitude
Der.km. : depth of earthquake in km
xM : magnitude
Yer : location

Box Plots

ggplot(earthquake, aes(y = Enlem))+
  geom_boxplot(fill = "palegreen")+
  coord_flip()+
  ylab("latitude")+
  xlab("")

latitude

ggplot(earthquake, aes(y = Boylam))+
  geom_boxplot(fill = "palegreen")+
  coord_flip()+
  xlab("")+
  ylab("longitude")

longitude

ggplot(earthquake, aes(y = Der.km.))+
  geom_boxplot(fill = "palegreen")+
  coord_flip()+
  xlab("")+
  ylab("Depth")

depth

ggplot(earthquake, aes(y = xM))+
  geom_boxplot(fill = "palegreen")+
  coord_flip()+
  xlab("")+
  ylab("Magnitude")

magnitude

Density Plots

ggplot(earthquake, aes(x = Der.km.))+
  geom_density(fill = "light blue")+
  xlab("")+
  ylab("Depth")

d-density

ggplot(earthquake, aes(x = Enlem))+
  geom_density(fill = "light blue")+
  xlab("")+
  ylab("Latitude")

la-density

ggplot(earthquake, aes(x = Boylam))+
  geom_density(fill = "light blue")+
  xlab("")+
  ylab("Longitude")

longitude

ggplot(earthquake, aes(x= Der.km., y= xM))+
  geom_point()+
  guides(fill = FALSE)+
  xlab("Derinlik (km)")+
  ylab("Büyüklük")

der-mag

Visualizing Data on Map

First, we need a Google API key. You can take it from developers.google.com.

ggmap::register_google(key = "[KEY]")

We are bounding the map 26-31 and 39-42. These are Marmara region coordinates.

marmara <- c(left = 26, bottom = 39, right = 31, top = 42)

And we plot the map.

get_stamenmap(marmara, zoom = 5, maptype = "toner-lite") %>% ggmap() 

map

We create ggmap plot which contains Google Map of Marmara region and add ggplot layer to plot where earthquakes occured.

qmplot(Boylam, Enlem, data = earthquake, maptype = "toner-lite", color = I("red"))

harita

Finally, we plot the density of points.

qmplot(Boylam, Enlem, data = earthquake, geom = "blank", 
       zoom = 5, maptype = "toner-background", darken = .7, legend = "bottomright"
) +
  stat_density_2d(aes(fill = ..level..), geom = "polygon", alpha = .3, color = NA) +
  scale_fill_gradient2("Eartquakes\nDensity", low = "white", mid = "yellow", high = "red", midpoint = 0.15)+
  theme(legend.text=element_text(size=rel(0.5)),
        legend.title = element_text(size = 5))

yoğunluk

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages