Hello I am new to python and obspy community. I have been using obspy and have managed to cross correlate to known earthquake signals to find a suitable correlation coefficient to then use on unknown seismic signals to detect earthquakes. I have used the obspy function correlate(a,b,shift_len) to correlate these two signals. But I am having trouble implementing this to correlate an entire trace of seismic data against a single known earthquake signal to detect similar earthquakes (by cross correlating) and finding at what times in the seismic trace these similar signals are found.
Creating a trigger to detect low amplitude earthquakes using cross correlation
265 Views Asked by risdall At
1
There are 1 best solutions below
Related Questions in PYTHON-3.X
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Kivy - Create new widget and set its position and size
- TypeError: encoding or errors without a string argument
- How to print varible name in python
- PyQt, Python 3: Lambda slot assigning signal argument to a variable?
- How to write data to stdin of the first process in a Python shell pipeline?
- pygame.draw.circle, still draws a square
- Duplicate Frames Created When Calling a Function in a Tkinter Application
- Python TypeError: can only concatenate tuple (not "int") to tuple
- recursively editing member variable: All instances have same value
- missing 1 required positional argument: 'key'
- How do I fix this sorting error?
- Dictionary values missing
- Why does opening a file in two different encodings work as expected?
- Binary bit flip generator in python
Related Questions in TRIGGERS
- PL SQL After Delete Trigger Not Inserting Record
- change content button with trigger
- Insert into Change Log based on Trigger After Update
- Animation Trigger (Storyboard + Trigger) in C#
- delete trigger to delete row in another table in another database sql
- Add extra column in insert with instead of trigger
- Check if inserted row is the same as current
- SQL Trigger Error Code
- Trigger vs. Dependency Property precendence
- Mysql #1235 error code, when create 2 triggers with different purposes
- if x not in(select y from table) in oracle
- Edit DataGrid Cell on mouse over
- SQL Trigger Update Average
- SQL Trigger doesn't get fired
- Get deleted values from 3 tables and put in 1 table
Related Questions in EVENTTRIGGER
- How to trigger an event attached to the Shared Event Manager in ZF2?
- onCreateOptionsMenu not triggered in fragment
- Synchronous event triggering
- Can't call method from CallMethodAction on EventTrigger of custom TextBox
- How to fill combobox on DropDownOpened
- MySQL #1422 Explicit or implecit commit is not allowed in stored function or trigger
- Google Tag Manager, Css Selector trigger not working
- Adding mouse location as parameter to command wpf mvvm
- How can I use JavaScript / jQuery to trigger tab (9) keypress when the spacebar (32) is clicked?
- How to run trigger in View from ViewModel appropriately?
- unity - detect gameobjects that is already in contact
- Android: Error when triggering fragment from within the fragment itself
- jQuery: trigger click or focus input field
- Animation causes button to become invisible
- RoutedEvent TextBox.LostFocus not working in my WPF application
Related Questions in CROSS-CORRELATION
- cross correlation using fft producing inaccurate results
- What is the equation used in R's ccf and Julia's crosscor?
- Find time shift of two signals using cross correlation
- Matlab xcorr: What is the interval of the delay?
- xcorr versus finddelay for finding delay between signals
- Calculating the blur kernel between 2 images
- Matlab: multidimensional correlation coefficients
- Cross correlation of multiple sequences avoiding for loop
- Visualise "corrplot" in R with more than one variable/parameter
- loop over all possible combinations
- Correlating vector data with numpy
- Use OpenCV to calculate cross-correlation of two arrays
- Hayashi yoshida estimator for correlation not coming between -1 to 1
- Motivate dynamic time warping using ccf or heatmap?
- how to generate a heatmap of a correlation matrix with clustering and phylogenetic tree
Related Questions in OBSPY
- problems reading SAC file using obspy
- Creating a trigger to detect low amplitude earthquakes using cross correlation
- how to set the order of zero-phase bandpass filter in obspy
- Invert polarity of seismic signal using obspy
- How to plot the data spectrum raw?
- plotting annotation in scatter chart
- why EvtBadHeaderError appears when reading an .evt file in obspy
- Python subplot : sharex and set_xlim options seems incompatibles
- Python x axis datetime with numpy array and 2 labels type
- Decimation of files with python and obspy
- Using Obspy and the Spectrogram function, how can I limit my Y axis
- plotting noise spectrum of the data
- Mplstereonet azimuth labels
- How can I save multiple figures individually from a for loop?
- how can i plot a specrtogram in python using Obspy?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
We actually already have some cross correlation detection functionality on ObsPy. Take a look at the "event_templates" option in function "obspy.signal.trigger.coincidence_trigger", see ObsPy documentation and tutorial:
Furthermore there is currently a Pull Request for new functionality of this kind and it will likely be in the upcoming release version 1.2.0, see https://github.com/obspy/obspy/pull/2315.