uafgeotools / rtm

A Python package for locating infrasound sources using reverse time migration
https://uaf-rtm.readthedocs.io/
MIT License
38 stars 13 forks source link

Wrap grid_search() to include search over celerity #21

Closed liamtoney closed 4 years ago

liamtoney commented 4 years ago

This would allow grid_search() to be called multiple times for multiple celerities. It would be a convenience wrapper for what is essentially

CELERITIES = [290, 295, 300, 305]

SS = []
for celerity in CELERITIES:
    SS.append(grid_search(..., time_method='celerity', celerity=celerity, ...))

plus selecting the stack function in SS which has the largest maximum.

liamtoney commented 4 years ago

Closing this as not worthwhile — users can do this themselves if they desire.