I cannot even begin to understand how this could happen :/. Computers barely existed in 1925, let alone the internet. How could this old quake resurface seemingly randomly now ? Why was the event sent to the media dated 2025 when we're in 2017 ?
> The federal body said work it was doing to revise and update information about where the historic quake struck had caused computer systems to misinterpret the data and think it was seeing a novel event.
It doesn't seem that implausible for a program to be reading through a dataset and issue a notice for a measurement above some value. If the dataset encoded years in just two digits, it (almost) makes sense that the program would report it 100 years off.
Imagine:
with open(file) as f:
for record in f:
year, month, day, time, magnitude = record.split()
if magnitude > 5:
raise_alarm()
Seems like a very broken system to me...