-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgeophysics.qmd
More file actions
90 lines (73 loc) · 1.73 KB
/
Copy pathgeophysics.qmd
File metadata and controls
90 lines (73 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
title: "Geophysics"
page-layout: full
---
<style>
.card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
position: relative;
border: 1px solid rgba(0,0,0,.125);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.card-body {
position: relative;
}
.card-body p {
margin: 0;
}
.card-img-top {
width: 100%;
height: auto;
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
content: "";
}
.card-title {
margin-top: 0.5rem;
display: block;
text-align: center;
}
</style>
# Geophysics Examples
Specialized geophysics applications and examples using GMT.jl.
::: {.grid}
::: {.g-col-12 .g-col-md-4}
::: {.card .h-100}
[**Seismology**](geophysics/seismicity/01_focalmec.html){.card-title .stretched-link}
[{.card-img-top}](geophysics/seismicity/01_focalmec.html)
::: {.card-body}
Focal mechanisms, seismicity plots, and earthquake data visualization
:::
:::
:::
::: {.g-col-12 .g-col-md-4}
::: {.card .h-100}
[**Earth Tides**](geophysics/earthtides/01_earthtides.html){.card-title .stretched-link}
[{.card-img-top}](geophysics/earthtides/01_earthtides.html)
::: {.card-body}
Computing and visualizing Earth tide effects
:::
:::
:::
::: {.g-col-12 .g-col-md-4}
::: {.card .h-100}
[**Weather Maps**](geophysics/weather/01_weather.html){.card-title .stretched-link}
[{.card-img-top}](geophysics/weather/01_weather.html)
::: {.card-body}
Meteorological data visualization and weather mapping
:::
:::
:::
:::