Recently, there was a M8.3 earthquake North of Santiago, which caused a substantial amount of damage near the epicenter and a few deaths. The earthquake was felt, with only moderate shaking and no damage, down here in Concepción.

I had been running my earthquake checking script periodically, but the large earthquake did not show up in the list because I had only been searching within a 500 km radius of Concepción. My first thought was to simply increase the search radius to, say, 1000 km. The large earthquake then appeared in the list, but so did numerous other small earthquakes that I would not have felt here. Next I thought about adding a magnitude cutoff, so the script would only return information on the stronger earthquakes. But I can sometimes feel M3.0 earthquakes if they are close to me, but not M6.0 that are up by Santiago.

How do I select only those earthquakes which I might have felt?

While thinking about this, I remembered the USGS “did you feel it” information, collected for various earthquakes. If you go to that link and select the Intensity Vs. Distance tab, it shows a plot of the reported intensity as a function of distance from the epicenter, along with some fits to the data. It occurred to me that, with the formula, I could use the reported magnitude and calculated distance to estimate the intensity felt in Concepción and only show those earthquakes above a certain threshold.

I opted to use the California shake model on the Did You Feel It? page, as it seemed to better approximate the intensity–distance relation of the Chilean earthquakes. So, with a modification to the script, you can now select only earthquakes based on maximum distance, minimum magnitude, minimum estimated intensity at your position, or some combination of those.

I have been running this updated script for a few days now, and I haven’t seen an earthquake reported which I have not felt (I set no distance or magnitude limits, but did set a minimum Modified Mercalli Intensity of > 3.5). Of course, I have also not felt any earthquakes since then, so I have not been able to see if I set the minimum intensity too high. I suspect I’ll have a datapoint in a month or two…

Edit: Literally minutes after I finished writing and posting this, I felt an earthquake. A quick check suggested it was this M6.2 earthquake, but setting a minimum MMI of 3.5 did not pull it up. Neither did 3, or 2.5. Setting the MMI minimum to 2 resulted in the earthquake being displayed. So, I guess up high in my apartment building I can feel earthquakes with an MMI > 2. For what it’s worth, the M6.2 earthquake was nearly 700km away from me.

Here’s the (latest) code: