I'm working on a way to automatically download earthquake parameters from the National Earthquake Information Center (the USGS). Unfortunately their format is a pile of crap, and I don't think I'll have much luck convincing them to change their format. So, I have to format their <pre> block of html just to put it in tabular form.
But my experience with string formatting is limited, so I'm stuck (but sure there's someone out there who might have a solution). Here's an example:
curl --silent http://earthquake.usgs.gov/earthquakes/eqinthenews/2010/uu00002715/uu00002715_gcmt.php |\
sed -n '/<pre>/,/<\/pre>/p' |\
egrep -v '(#)|(pre>)' |\
egrep '(MW)|(ORIGIN)|(LAT)|(DEP)|(BEST DBLE)|(NP1)'
which gives the information I need formatted:
April 15, 2010, UTAH, MW=4.6
ORIGIN TIME: 23:59:42.8 0.4
LAT:41.72N 0.03;LON:110.86W 0.03
DEP: 12.5 1.8;TRIANG HDUR: 0.6
BEST DBLE.COUPLE:M0= 1.07*10**23
NP1: STRIKE=193;DIP=35;SLIP= -80
I would like a format such as this:
name date time lon lat dep dep_err Mw M0 strike dip slip
UTAH 2010/04/15 23:59:42.8 -110.86 41.72 12.5 1.8 4.6 1.07e23 193 35 -80
Note the longitude is to be converted to east-longitude (hence the sign change).
I'd like the solution to be in awk, python, or unix shell commands, but I'd entertain ruby or perl (I just probably won't understand what's going on).