Tobias Megies

Results 195 issues of Tobias Megies

Currently, the waveform database tables are fixed to a strict length of 2/5/2/3 for network/station/location/channel code, both for original and mapped codes (based on MSEED definitions). We need to change...

django

Station requests with level `"station"` or `"network"` only work with the indexed data in the database and construct results directly from these, without reading any underlying xml raw data. This...

FDSNWS

``` python from obspy.clients.fdsn import Client from obspy import UTCDateTime t1 = UTCDateTime(1950, 1, 1) t2 = UTCDateTime(2050, 1, 1) client = Client("http://jane") bulk = [["GR", "FUR", "*", "*", t1,...

bug
FDSNWS

Would be nice to have comments from the StationXML on Station level to show up in the GIS in the station modal (on click) or even on mouse-over for quick...

enhancement
Web GIS
django

The following example StationXML stub is not handled properly by jane.. ```xml Tobias Megies/LMU Munich ObsPy 1.0.2.post0+877.g4ead341348 https://www.obspy.org 2017-06-23T11:17:49.804704 temporary/noise measurements 49 12 49 12 50 13 50 13 ```...

bug
Web GIS
FDSNWS

When assembling requested data, jane is requesting one file at a time sequentially from file system. On slow filesystems (e.g. NFS) with read operation on a single file taking on...

FDSNWS

Using a radial geographic constraint can somehow end up in negative distances being calculated internally during assembling the QuerySet, which leads to an exception being raised and the server not...

bug
FDSNWS

If some matching channels in a FDSN WS station query are missing `startDate` attribute in their StationXML, an exception occurs on the server: query url: `http://george/fdsnws/station/1/query?network=XF&station=XB100&location=--&channel=HJZ&level=response` ``` File "/local_home/george/jane/src/jane/fdsnws/views/station_1.py" in...

FDSNWS

See #107 Looking at the indexed data, it seems the indexer handles missing start and end dates differently: json contents of one index: ``` {'latitude': 48.16282985, 'start_date': 'None', 'network': 'XF',...

When something unexpected happens to the database connection the indexer processes that are running in background forever stop indexing new waveforms but the processes keep running. Ideally database connection should...