Tobias Megies
Tobias Megies
compare code from mseed2sac: https://github.com/EarthScope/mseed2sac/blob/356fe94244189a2bd45bcb32e6e8950debc9b82a/src/mseed2sac.c#L336-L372
> A less surprising behaviour would be to declare a gap or overlap whenever the accumulated time difference is larger than the tolerance I agree that makes sense, I might...
What you can do in the meantime is this: ```python from obspy import read from obspy.io.mseed.util import get_start_and_end_time path = '/tmp/proof.mseed' st = read(path) assert len(st) == 1 tr =...
See also https://github.com/obspy/obspy/issues/1913#issuecomment-336155562 for some code snippets around rotating to/from UVW..
@LMurrayBergquist maybe you could work on this one. Basically that would be adding an option `->UVW` to `Stream.rotate()`. Easiest probably would be to internally call a rotate to `->ZNW` first...
I came across this topic after looking at https://docs.obspy.org/tutorial/code_snippets/seismometer_correction_simulation.html which is in utter need of updating.. it's still encouraging to use xseed `Parser` when all that has already been integrated...
> `stream,inv = client.get(...)` which would just return both at once (ALL servers offer both services right?) but not sure how crazy that is. Not crazy at all, it's kind...
The solution in the linked matplotlib issue looks reasonable to me.. maybe just do the same?
Anaconda also has a [troubleshooting item on MacOSX and encoding problems..](http://conda.pydata.org/docs/troubleshooting.html#issue-valueerror-unknown-locale-utf-8-on-os-x) ;-)
> Has anyone an idea how to reproduce this, so that we can make a test for it? I can't reproduce this by unsetting all locale variables on my system,...