Skip to content

Commit

Permalink
deploy: 49ce131
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 26, 2024
0 parents commit 2adc6d9
Show file tree
Hide file tree
Showing 1,812 changed files with 452,830 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ea3c5563822b8d85146d5c7dfe238e3b
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added .nojekyll
Empty file.
4 changes: 4 additions & 0 deletions 1.3.5/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: c32805b6176e45d1c7507ad5bcb063f7
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added 1.3.5/.nojekyll
Empty file.
290 changes: 290 additions & 0 deletions 1.3.5/_downloads/3dc6b21e7317f0adfc489d8e356fa07b/PRF_Process.ipynb

Large diffs are not rendered by default.

Binary file not shown.
285 changes: 285 additions & 0 deletions 1.3.5/_downloads/90954f79a659494de3c55def811f9550/ps-depth.ipynb

Large diffs are not rendered by default.

214 changes: 214 additions & 0 deletions 1.3.5/_downloads/c91ad42c82dba65d2f3b80bd36a4e041/rf-from-ws.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Fetch seismic data from web-service and calculate RF automatically"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"After Seispy v1.3.0, user can calculate RFs with specified network and station which can be fetched from [FDSN web service](https://www.fdsn.org/webservices/). This section shows a example to calculate PRFs with fetching station and event information from web service.\n",
"\n",
"```{note}\n",
"This notebook can be downloaded as **{nb-download}`rf-from-ws.ipynb`**\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"from seispy.rf import RF\n",
"from seispy.io import Query\n",
"from obspy import UTCDateTime\n",
"#import pytest\n",
"import glob"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Get information of stations\n",
"Before running this script, we can visually search stations from portal of web-service, such as [GFZ webdc3](http://eida.gfz-potsdam.de/webdc3/) or [IRIS GMap](https://ds.iris.edu/gmap/). The URL of FDSN web service or shortcut names can be found in [obspy.client.fdsn](https://docs.obspy.org/packages/obspy.clients.fdsn.html). The network name, station name, positions, date range, etc. can be found at these services. Now let's fetch station information using these conditions. \n",
" \n",
"The following example illustrates how to request the station information from the Global Seismograph Network(\"`IU`\")."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"query = Query(server='IRIS') ## Server is the URL of FDSN web service or a shortcut name in the obspy.client.fdsn.\n",
"query.get_stations(network='IU', station='U*', level='channel')\n",
"#print(query.stations)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Fetch data and calculate RF with different gauss factors\n",
" \n",
" The following example illustrates how to request the `'BH?'` channels, `'00'` location of station Ulaanbaatar (`'ULN'`) of the Global Seismograph Network(`'IU'`) for events between \"2013-08-01\" and \"2013-10-31\" (UTC), calculate the RF with 4 gauss factors simultaneously, and save the raw seismic data and RFs. \n",
" \n",
"\n",
"<h3 id=\"rfpara\">Set the parameters for matching catalog and estimating RF</h3> \n",
" \n",
" All parameters for matching catalog and estimating RF are in the [`RF.para`](#rfpara). These parameters can be set according to user needs. \n",
" Online catalog (`'cata_server'`) is fetched from the FDSN web service client for ObsPy ([obspy.client.fdsn](https://docs.obspy.org/packages/obspy.clients.fdsn.html)). "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"rf = RF()\n",
"rf.para.data_server = 'IRIS'\n",
"rf.para.cata_server = 'IRIS'\n",
"rf.para.stainfo.network = 'IU'\n",
"rf.para.stainfo.station = 'ULN'\n",
"rf.para.stainfo.channel = 'BH?'\n",
"rf.para.stainfo.location = '00'\n",
"rf.para.datapath = './Data/{}.{}'.format(rf.para.stainfo.network, rf.para.stainfo.station)\n",
"rf.para.use_remote_data = True\n",
"rf.para.ref_comp ='BHZ'\n",
"rf.para.phase = 'P'\n",
"rf.para.noisegate = 1\n",
"rf.para.magmin = 5.8\n",
"rf.para.gauss = [0.5, 1.0, 1.5, 2.0] ##RF with different Gauss factor will be calculated simultaneously.\n",
"rf.para.rmsgate = 0.4\n",
"rf.para.freqmin = 0.05\n",
"rf.para.freqmax = 2.0\n",
"rf.para.comp = 'RTZ'\n",
"rf.para.date_begin = UTCDateTime('20130801')\n",
"rf.para.date_end = UTCDateTime('20131031')\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### load station information and search events \n",
" - Fetch the station information from the data server ([`data_server`](#rfpara)) \n",
" - Search the event information from the catalog server ([`cata_server`](#rfpara)). \n",
" Here, we use the `'IRIS'` client. Available catalogs in the IRIS are listed in [IRIS DMC FDSNMS event Web Server](https://service.iris.edu/fdsnws/event/1/catalogs), such as `'ISC'`, `'NEIC PDE'` and `'GCMT'`."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"rf.load_stainfo()\n",
"rf.search_eq(catalog='NEIC PDE')\n",
"#print(rf.eq_lst) ##The matched event lists are listed."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Match catalog and fetch seismic data \n",
" Match events and fetch seismic data with the parameters such as the data type (`'SAC'`) and dateformat `'%Y.%j.%H.%M.%S'` set in the [`RF.para`](#rfpara).\n",
" "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"rf.match_eq() "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Calculate RF \n",
" - Remove the linear trend (`detrend`) and apply a bandpass filter (`filter`) to the data. The frequencies for the bandpass filter are set in the [`RF.para`](#rfpara) ([`'para.freqmin'`](#rfpara) and [`'para.freqmin'`](#rfpara)); \n",
" - Mark phase arrivals with the server of Taup and the velocity mode ([`'para.velmod'`](#rfpara)) can be set in the [`RF.para`](#rfpara); \n",
" - Rotate the seismic data to `'RTZ'` or`'LQT'` and delete the events with the SNR lower than the [`'para.noisegate'`](#rfpara); \n",
" - Save the raw SAC data download from the web server; \n",
" Trim the RF bewteen the times of [`para.time_before`](#rfpara) and [`para.time_after`](#rfpara); \n",
" - Do deconvolution to obtain the RFs with different gauss factors. Deconvolution methods (`para.decon_method`) of Time-domain iterative deconvolution (`'iter'`) and frequency-domian water-level deconvolution (`'water'`) are available. "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"rf.detrend()\n",
"rf.filter()\n",
"rf.cal_phase()\n",
"rf.rotate()\n",
"rf.drop_eq_snr()\n",
"rf.save_raw_data()\n",
"rf.trim()\n",
"rf.deconv()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Save the RFs \n",
" Save the RFs calculating with different Gauss factors. "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"for ff in rf.para.gauss:\n",
" rf.para.rfpath = './RFresult/F{:.1f}/{}.{}'.format(\n",
" ff, rf.para.stainfo.network, rf.para.stainfo.station)\n",
" rf.saverf(ff)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.15"
},
"vscode": {
"interpreter": {
"hash": "4e14d21dea86c260d88be34273f4e9100dbd1919caf172718af2426599760403"
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/CB.NJ2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/SC.LTA_baz_stack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/SC.LTA_harmonic_trans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/SC.LTA_joint_ani.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/click.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/mtz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/offset.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/pickdepth1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/pickdepth2b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/pickdepth4b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/pickrf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/profile_ZX.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/srfui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/t1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1.3.5/_images/t2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2adc6d9

Please sign in to comment.