10 lines
569 B
Bash
10 lines
569 B
Bash
|
|
#!/bin/bash
|
|||
|
|
|
|||
|
|
# run the script to generate HDF5 model files based on community models
|
|||
|
|
# 1. crust1.0 (Laske et al., 2013) + ak135 model (Kennett et al., 1995)
|
|||
|
|
python 1_crust1.0_ak135_model.py
|
|||
|
|
|
|||
|
|
|
|||
|
|
# References:
|
|||
|
|
# Laske, G., Masters, G., Ma, Z., & Pasyanos, M. (2013, April). Update on CRUST1. 0—A 1-degree global model of Earth’s crust. In Geophysical research abstracts (Vol. 15, No. 15, p. 2658).
|
|||
|
|
# Kennett, B. L., Engdahl, E. R., & Buland, R. (1995). Constraints on seismic velocities in the Earth from traveltimes. Geophysical Journal International, 122(1), 108-124.
|