Tobias Megies

Results 195 issues of Tobias Megies

We should change one CI test runner to use at least non-Latin alphabet or ideally a non UTF-8 locale to be able to catch problems on systems with different locales....

task
testing
CI

Prompted by a change in matplotlib discussed [here](https://github.com/obspy/obspy/pull/2089#discussion_r180200122) and originally [here](https://github.com/obspy/obspy/pull/2089#issuecomment-375124108), here is a list of things that should be changed in `obspy-scan`: - [ ] the serialized npz file...

task

We have some strange behavior for trimming/slicing on Traces with sampling rate 0.. ```python st = read('/tmp/rt130_sr0_cropped.mseed.txt', format='MSEED') print(st) st.trim(starttime=UTCDateTime('2017-01-01T05')) print(st) ``` This gives: ``` 5 Trace(s) in Stream: GR.FUR..LOG...

bug
.core

We should remove `Stream/Trace.attach_response()` as soon as possible. It's unfortunate that we overlooked to deprecate it for release `1.1.0` but we should now add the deprecation to `1.1.1` and we...

release blocker
.core

We should do a round-trip read/write/read test with a full auto-generated (random) QuakeML file.. see #1621, https://github.com/obspy/obspy/pull/1622#discussion_r92927814.

task
testing
.io.quakeml

It's super simple to add a map background to our catalog/inventory plots, so we should add an example to Tutorial/gallery and maybe also to the Catalog/Inventory plot docstrings.. ```python from...

task
docs

Some string fields in QuakeML have a maximum length set in the Relax NG schema file. we should show a warning when setting those fields with a longer string. E.g....

.core.event
.io.quakeml

We're seeing sporadic fails in an SDS client test case, e.g. here: http://tests.obspy.org/54134/ Should be examined/fixed at some point..

task
.clients.filesystem

The following occurrences in the code base open files for reading in text mode without specifying an encoding. That means the data get decoded as ASCII which will fail if...

task

This is a follow up to a comment in #1427: Ideally `_event_type_class_factory()` should also set up more useful `__init__()` methods for all classes, based on their `class_attributes`, such that.. ```...

enhancement
.core.event