Skip to content

Commit

Permalink
getting ready to update the released version
Browse files Browse the repository at this point in the history
  • Loading branch information
kasra-hosseini committed Nov 10, 2014
1 parent 62db9c4 commit 58967ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 59 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.7.6:
- obspyDMT:
* all the new changes introduced by FDSN are now included
* StationXML instrument correction is implemented and tested
* some new plotting options are added as well
0.4.0:
- obspyDMT:
* Preparing the code for the first stable version
Expand Down
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ Copyright
---------
GNU Lesser General Public License, Version 3 (LGPLv3)

Copyright (c) 2012-2013 by:
Copyright (c) 2012-2014 by:
* Kasra Hosseini

Overview
--------
obspyDMT (ObsPy Data Management Tool) is a command line tool for retrieving,
processing and management of massive seismic data in a fully automatic way
processing and management of massive seismological data in a fully automatic way
which could be run in serial or in parallel.
Moreover, complementary processing and managing tools have been designed
and introduced in addition to the obspyDMT options.
Expand Down
57 changes: 0 additions & 57 deletions obspyDMT/TODO.txt
Original file line number Diff line number Diff line change
@@ -1,65 +1,8 @@
ADD:
- Other kind of instrument correction (PAZ and resp [SAC])

CHECK:
- all depths either positive or negative


===================================================
LION:

import obspy
from obspy.fdsn import Client
client = Client('IRIS')
inv = client.get_stations(network="TA", station="136A", location="*", channel="BH*")
inv = client.get_stations(network="TA", station="136A", location="*", channel="BH*", level="response")
print inv[0][0][0].response
st = obspy.read()
st.attach_response(inv)
st[0].stats.response
st.remove_response()
st.plot()
print inv[0][0][0].response
inv[0][0][0].response.response_stages[0]
print inv[0][0][0].response.response_stages[0]
print inv[0][0][0].response.response_stages[0].Poles
print inv[0][0][0].response.response_stages[0].pole
print inv[0][0][0].response.response_stages[0].poles
print inv[0][0][0].response.response_stages[0].zeros
print inv[0][0][0].response.response_stages[0].gain
resp = inv[0][0][0].response
print resp
resp.response_stages[2]
resp.response_stages[2].__dict__
resp.response_stages[2].__dict__
resp.response_stages[2].__dict__
print resp
print resp.response_stages[1]
print resp.response_stages[0]
hist




from obspy import read
st = read('KZ.ZRN..BHZ')
st
print st
print st[0]
print st[0].stats
st = read('KZ.ZRN..BHZ', details=True)
print st
st[0].stat
st[0].stats
print st[0].stats
print st[0].stats.mseed
print st[0].stats.mseed.__dict__
st[0].stats.mseed.__dict__
hist




hosseini@kasra:~/local/src/obspy$ git remote -v
origin https://github.com/obspy/obspy.git (fetch)
origin https://github.com/obspy/obspy.git (push)
Expand Down

0 comments on commit 58967ad

Please sign in to comment.