-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Kia ora team,
A student highlighted an inconsistency in the uncertainties provided for a couple of events:
from obspy.clients.fdsn import Client
client = Client("GEONET")
event = client.get_events(eventid="2023p767004")[0]
print(f"Max horizontal uncertainty: {event.preferred_origin().origin_uncertainty.max_horizontal_uncertainty}")
print(event.preferred_origin().origin_uncertainty.confidence_ellipsoid)
Returns:
Max horizontal uncertainty: 5006.111771
ConfidenceEllipsoid
semi_major_axis_length: 5832650.484
semi_minor_axis_length: 0.0
semi_intermediate_axis_length: 3399539.047
major_axis_plunge: -0.0
major_axis_azimuth: 155.7513104
major_axis_rotation: 0.0
The units for these values should be SI (m), but the confidence ellipsoid seems inconsistent with the stated horizontal uncertainties. I wondered if something had gone wrong parsing from SC3ML to QuakeML or somewhere else in the chain?