File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
22---------
33
4+ * ** Pyflex 0.1.3** * Dez 10th 2014*
5+ * Rejecting windows with very early start or very late end times. Greatly speeds up the algorithm.
6+ * New config parameter `` max_time_before_first_arrival `` .
7+ * New optional time normalized energy signal to noise ratio. More resilient to random wiggles before the first arrival.
8+ * New config parameter `` window_signal_to_noise_type `` .
9+
410* ** Pyflex 0.1.2** * Nov 17th 2014*
511 * Support for (de)serializing windows to and from JSON.
612 * Much faster STA/LTA computation.
Original file line number Diff line number Diff line change 6161# The short X.Y version.
6262version = '0.1'
6363# The full version, including alpha/beta/rc tags.
64- release = '0.1.2 '
64+ release = '0.1.3 '
6565
6666# The language for content autogenerated by Sphinx. Refer to documentation
6767# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def read(*names, **kwargs):
2929
3030setup (
3131 name = "pyflex" ,
32- version = "0.1.2 " ,
32+ version = "0.1.3 " ,
3333 license = 'GNU General Public License, Version 3 (GPLv3)' ,
3434 description = "Python port of the FLEXWIN package" ,
3535 long_description = long_description ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class PyflexWarning(UserWarning):
3838Station = collections .namedtuple ("Station" , ["latitude" , "longitude" ])
3939
4040
41- __version__ = "0.1.2 "
41+ __version__ = "0.1.3 "
4242
4343
4444# Setup the logger.
You can’t perform that action at this time.
0 commit comments