obspy

ObsPy Plot Beachball in Time Series

ObsPy Plot Beachball in Time Series Question: I am trying to plot an ObsPy (or any python) seismic focal mechanism in time series. import matplotlib.pyplot as plt import datetime import numpy as np from obspy.imaging.beachball import Beach # x = np.arange(0,100,4) x = np.array([datetime.datetime(2013, 9, 28, i, 0) for i in range(24)]) y = np.random.randint(100, …

Total answers: 1