Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
cd ..

- name: Deploy 🚀
if: matrix.python-version == '3.12'
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.python-version == '3.12'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions docs/scripts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Usage
the --server-wf settings.
--dtype DTYPE Specify the data archive file type, either SAC or MSEED. Note the
default behaviour is to search for SAC files. Local archive files
must have extensions of '.SAC' or '.MSEED'. These are case dependent,
should not include the extension '.SAC' or '.MSEED'. These are case dependent,
so specify the correct case here.

Server Settings:
Expand Down Expand Up @@ -308,7 +308,7 @@ Usage
the --server-wf settings.
--dtype DTYPE Specify the data archive file type, either SAC or MSEED. Note the
default behaviour is to search for SAC files. Local archive files
must have extensions of '.SAC' or '.MSEED'. These are case dependent,
should not include the extension '.SAC' or '.MSEED'. These are case dependent,
so specify the correct case here.

Server Settings:
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ program will automatically use either the P or PP waves to extract the waveforms
The parameters to edit in this case are:
``--times=-5.,15.`` to extract data from -5 to 15 seconds following P-wave arrival;
``--window=60.`` to include 60 seconds of data;
``--minmax=6.`` to limit the number of events to consider;
``--mindist=30.`` for the minimum epicentral distance for teleseismic P; and
``--min-mag=6.`` to limit the number of events to consider;
``--min-dist=30.`` for the minimum epicentral distance for teleseismic P; and
``--bp=0.04,0.1`` to focus on the long-period P waves

.. code-block::
Expand Down
2 changes: 1 addition & 1 deletion orientpy/scripts/bng_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def get_bng_calc_arguments(argv=None):
default='MSEED',
help="Specify the data archive file type, either SAC " +
" or MSEED. Note the default behaviour is to search for " +
"SAC files. Local archive files must have extensions of " +
"SAC files. Local archive files should not include the extension " +
"'.SAC' or '.MSEED'. These are case dependent, so specify " +
"the correct case here.")

Expand Down
2 changes: 1 addition & 1 deletion orientpy/scripts/dl_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_dl_calc_arguments(argv=None):
default='MSEED',
help="Specify the data archive file type, either SAC " +
" or MSEED. Note the default behaviour is to search for " +
"SAC files. Local archive files must have extensions of " +
"SAC files. Local archive files should not include the extension " +
"'.SAC' or '.MSEED'. These are case dependent, so specify " +
"the correct case here.")

Expand Down