Scripting Languages¶
Scripting Languages can also be called as interpreted Languages. It’s usually easier to write and can accomplish complex tasks using only a few lines of codes. The only disadvantage is interpreted languages are usually much slower than compiled languages. There are many interpreted languages, the most used in seismology community are bash, Python (recommanded) and Matlab.
Bash¶
The basic concept of a bash script is a list of commands, which are listed in the order of execution. A good bash script will have comments, preceded by # sign, describing the steps.
#!/bin/bash
# Author : San Zhang
# Copyright (c) sanzhang@gmail.com
# This is a simple demo.
# print current date and time
date
# read your name
echo "What is your name?"
read PERSON
echo "Hellow, $PERSON"
Save the above content, make the script executable and run it:
$ chmod +x hello.sh # make the script executable
$ ./hello.sh # run the script
Resources
Python¶
Python is an interpreted, high-level, general-purpose programming language. It is FREE and OPEN-SOURCE! Unlike MATLAB, the basic Python libraries have limited capability for scientific research. Seismologists need extra open-source Python libraries (e.g. numpy, scipy, matplotlib) for data analysis and plotting.
Important Libraries and Packages¶
NumPy: a library for large, multi-dimensinal arrays and matrices, required by any scientific research
SciPy: a library for scientific computing, requiring NumPy, required by any scientific research
Matplotlib: a library for plotting
Pandas: a library for data structures and data analysis
ObsPy: a project specifically for processing seismic data
Quick Start¶
macOS and most Linux distributions have their own pre-installed Python, it’s highly recommended to install the Anaconda distribution in your HOME directory.
Anaconda is a FREE and OPEN-SOURCE distribution of the Python languages, designed for scientific computing that aims to simplify package installation and management.
With anaconda installed, you will have full control of your Python and installed packages, avoid the risk messing up your operation system, and have more than 1000 popular Python packages available.
Install Anaconda
To install Anaconda on your own PC, please refer to the official installation guide on macOS, Linux, and Windows.
Install packages
There are several ways to install Python packages. The most convenient ways are conda
and pip
. If you want to install Python package, it’s recommended to check if it’s available from conda. If not, then you can pip.
conda is the package manager provide d by Anaconda:
$ conda search numpy # Search packages
$ conda install numpy # Install packages
pip is the built-in package manager of Python:
$ pip install numpy # Search packages
$ pip install numpy # Install pacakges
Run following commands to install some most commonly used packages for scientific computing:
$ conda install ipython numpy scipy matplotlib pandas
$ conda install obspy --channel conda-forge
Matlab¶
MATLAB is a multi-paradigm numerical computing environment and proprietary programming language developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, C#, Java, Fortran and Python.
Resources