Returns travel times for specified station-event geometry using standard velocity models such as iasp91, ak135 or qdt.
Parameters: | |
---|---|
Returns: | List of dicts containing phase name and arrival times in ms. |
Example
>>> client = Client()
>>> locations = [(48.0, 12.0), (48.1, 12.0)]
>>> result = client.getTravelTimes(latitude=20.0, longitude=20.0,
... depth=10.0, locations=locations,
... model='iasp91')
>>> len(result)
2
>>> result[0]
{'P': 356981.13561726053, 'S': 646841.5619481194}