Sat Jan 2 10:06:04 2021 UTC ()
(geography/py-obspy) Updated 1.1.1 to 1.2.2 (build fix, too)

1.2.2 (doi: 10.5281/zenodo.3921997)
===================================

Changes:
 - obspy.core:
   * Fix wrong values in Stats object after deepcopy or pickle of Stats object
     for edge cases (see #2601)
 - obspy.clients.fdsn:
   * EIDA routing client: fix an issue that leaded to a request of *all* EIDA
     data when requesting an invalid, out-of-epochs time window for a valid
     station (see #2611)
   * update RASPISHAKE URL mapping to use https
   * fix a bug of not handling HTTPException in mass_downloader (see #2606)
   * use the client's set timeout in service discovery, too (see #2656)
   * add URL mapping for FDSNWS at UIB-NORSAR (see #2659)
 - obspy.clients.filesystem:
   * sds: continue get_all_stations() even if encountering an invalid channel
     code (see #2636)
 - obspy.clients.neic:
   * Make client socket blocking (see #2617)
 - obspy.io.nordic:
   * Fixed a bug raising an exception when reading a nordic file with a non
     positive-definite covariance matrix (see #2593)
   * Allow 60.0 seconds in the second field of origin times, allow NaN in
     the magnitude field (see #2627)
 - obspy.io.seiscomp:
   * Fixed an issue where a response has zero zeros or poles (see #2633)

1.2.1 (doi: 10.5281/zenodo.3706479)
===================================

Changes:
 - fix an installation issue with pip and setuptools version 46 (see #2578)
 - fix response plots when providing `axes=...` with a numpy array of Axes
   instances (see #2579)

1.2.0 (doi: 10.5281/zenodo.3674646)
===================================

Work on this release was in parts and among others supported by the following
institutions/companies and grants (in alphabetical order):
 - Earthquake Commision of New Zealand (EQC), grant 18/753
 - École et Observatoire des Sciences de la Terre - Université de Strasbourg
 - ETH Zürich
 - Friedrich-Schiller-Universität Jena
 - Geoscience Australia
 - Incorporated Research Institutions for Seismology (IRIS), NSF (SAGE) award
   :: EAR-1851048
 - Institut de Physique du Globe de Strasbourg
 - Institut de Physique du Globe de Paris
 - Institutions for Seismology (IRIS) through the PASSCAL Instrument Center at
   New Mexico Tech. The facilities of the IRIS Consortium are supported by the
   National Science Foundation under Cooperative Agreement EAR-1261681 and the
   DOE National Nuclear Security Administration.
 - Istituto Nazionale di Geofisica e Vulcanologia, Osservatorio Etneo (Italy),
   Allegato B2 DPC-INGV 2012-2021 Task 10
 - Ludwig-Maximilians-Universität München
 - National Institute for Occupational Safety and Health
 - Royal Netherlands Meteorological Institute (KNMI)
 - School of Geography, Environment and Earth Sciences, Victoria University of
   Wellington
 - The European Union’s Horizon 2020 research and innovation programme under
   the ChEESE project, grant agreement No. 823844
 - The Royal Observatory of Belgium
 - U.S. Geological Survey

Changes:
 - obspy.core:
   * Inventory objects have been adapted to StationXML 1.1 for details on
     changes see #2510 and
     https://github.com/FDSN/StationXML/blob/master/Changes.md
   * Fixed import of custom plugins (see #2423)
   * Fixed "==" comparison for Stream and Trace which was very slow in case of
     traces with >1e6 samples (see #2377)
   * Added almost_equal method for Stream and Trace classes (see #2286).
   * Casting FDSN identifiers to strings upon setting in the stats dictionary
     (see #1997).
   * UTCDateTime objects will now always evaluate equal if their string
     representations are equal (see #2049).
   * UTCDateTime objects now issue depreciation warnings when setting any
     attributes outside of init, or comparing UTCDateTime objects with
     different precisions (see #2077).
   * UTCDateTime objects can now accept hour, minute, second, and microsecond
     values greater than their normal limits by setting the strict keyword
     argument to False (see #2232).
   * Fixed UTCDateTime(..., julday=366) for non-leap years. This was returning
     January 1st of the next year in case of non-leap years being used. Now it
     properly raises an out-of-bounds ValueError (see #2369)
   * When reading StationXML/SC3ML, make sure to properly read empty string
     fields as empty strings instead of "None" (see #2519 and #2527)
   * Better ISO8601 detection for UTCDateTime objects and UTCDateTime(...,
     iso8601=False) now completely disables ISO8601 handling (see #2447)
   * Added replace method to UTCDateTime class (see #2077).
   * Added remove method to Inventory class (see #2088).
   * Added id property to WaveformStreamID (see #2131).
   * Added __str__ and _repr_pretty_ method for Comment class (see #2115)
   * Added __eq__ to QuantityError so empty instances equal None (see #2185).
   * Reworked the event scoped resource identifiers for the event classes
     hopefully fixing all edge-cases (see #2091).
   * Added a hook to allow users to customize finding objects for
     resource_ids which are not found via the normal means (see #2279).
   * Calling Stream.write(...) on an empty stream will now raise an
     ObsPyException consistently across all I/O plugins (see #2201)
   * Stream.get_gaps() will now properly report gaps within Traces that
     have masked arrays (i.e. Traces that have been merged without a fill
     value, see #2299 and #2300).
   * Added copy method to Inventory class (see #2322).
   * The Response.recalculate_overall_sensitivity() method now accepts integers
     (see #2338, #2343).
   * Added wildcard and url support to read_inventory (see #2326).
   * Modified stream.get_gaps() to deal with overlaps correctly (see #1403)
   * Added option "label_epoch_dates" to Inventory/Network.plot_response() to
     optionally add channel epoch start/end dates to legend labels (see #2309)
   * Deprecated the convert_id_to_quakeml_uri, regenerate_uuid, and
     get_quakeml_uri methods of the ResourceIdentifier class (see #2303).
   * Added get_quakeml_uri_str and get_quakeml_id methods to the
     ResourceIdentifier class (see #2303).
   * New method to create response objects directly from poles and zeros (see
     #1962).
   * Added Stream.stack method (see #2440).
   * Added a component field to the Stats object which allows to get and set
     the last character of the SEED channel (see #2484).
   * Fixed a bug in Stream.plot(type='section', reftime=..., ...) that caused
     wrong relative start times of traces relative to given reftime (see #2493)
   * Fixed a Windows-specific path case issue in a helper function that returns
     a list of untracked files in the git repository (see #2296)
   * Fix a bug that was causing an exception being raised in `Response.plot()`
     because a float was being passed down to numpy.linspace as length of array
     (see #2533)
   * Geographic select of inventory/network/station (see #2515)
   * Select traces in Stream based on an Inventory (see #2531)
 - obspy.clients.fdsn:
   * Add new `_discover_services` boolean flag to the Client, which allows the
     Client to skip the initial services query at instantiation.  This can
     reduce the load on service providers, but skips checks against unsupported
     query parameters.
   * Adding more location codes to the default priority list in the mass
     downloader (see #2155, #2159).
   * The mass downloader now raises a warning if all channels from a station
     have been deselected due to the default location priorities setting. This
     is a pure usability improvement as it has been confusing users
     (see #2159).
   * Make sure that streams fetched via FDSN are properly trimmed to user
     requested times if data center serves additional data around the start/end
     (see #1887, #2298)
   * Fix a problem that could spam subprocesses that were not closed in routed
     clients (see #2342 and #2344)
   * Make it possible to use signed EIDA tokens and also skip token validation
     completely (see #2297)
   * Adding a mapping for RASPISHAKE
 - obspy.clients.filesystem.tsindex:
   * Add new Client & Indexer modules based on IRIS time series index (see
     #2206)
 - obspy.clients.iris:
   * Results of distaz method are now returned as native floats (see #2499)
 - obspy.clients.neic:
   * Properly use specified timeout value (see #2450)
 - obspy.clients.seedlink:
   * Add method "get_info()" to fetch information on what
     networks/stations/locations/channels are served by the seedlink server
     (see #2405)
   * "get_waveforms()" can now be used with '*' and '?' wildcards in any part
     of requested SEED ID, i.e. network, station, location and channel (see
     #2405)
 - obspy.clients.seishub:
   * Properly handle fetching poles and zeros in presence of multiple metadata
     files for a given station (see #2411)
 - obspy.geodetics:
   * New utility function `inside_geobounds()` to check whether an object is
     inside a geographic bound (see #2515)
 - obspy.imaging:
   * obspy-scan can now be used with wildcarded SEED IDs when specifying what
     to plot after scanning data (see #2227)
   * Fix a problem in Scanner when loading npz on Python3 that was written on
     Python2 (see #2413)
   * Fix an issue that could make small landmasses not get plotted in basemap
     plots (see #2471, #2477)
   * Fixed a bug in Stream.plot(type='section', reftime=..., ...) that caused
     wrong relative start times of traces relative to given reftime (see #2493)
 - obspy.io:
   * Added read support for receiver gather format v. 1.6 (see #2070)
   * Added read support for FOCMEC 'out' and 'lst' files (see #2156)
   * Added read support for HypoDD 'pha' files (see #2378)
 - obspy.io.arclink:
   * Accommodate change in SeisComP3 publicID delimiter from '#' to '/' in
     ArclinkXML (see #2552)
 - obspy.io.dmx:
   * Add read support for INGV's DMX format (see #2452)
 - obspy.io.gcf:
   * Fixes Python 3.8 compatibility of GCF reader. (see #2505)
 - obspy.io.mseed:
   * Fix a bug resulting in an infinite loop when trying to read a FullSEED
     file without any data records (see #2534 and #2535)
   * Add ability to write int64 data to mseed if it can safely be downcast
     to int32 data, otherwise raises ObsPyMSEEDError. (see #2356)
   * The recordanalyzer can now detect calibration blockettes 300, 310,
     and 320 (see #2370).
   * Can now write zero sampling-rate traces. (see #2488, 2509)
 - obspy.io.nordic:
   * Add ability to read and write focal mechanisms and moment tensor
     information. (see #1924)
   * Add explicit warnings regarding unsupported sections of Nordic files.
   * Fix mapping of magnitude-types between MS to S and Ms to s.
   * Output preferred origin when writing to Nordic format instead of using
     the first origin (see #2195)
   * Include high-accuracy phase-pick reading and writing - high-accuracy is
     now the default phase-writing format, a boolean flag `high_accuracy`
     has been added to turn this off. (see #2351 and #2348)
   * Allow long-phase names (both reading and writing) - longer than 4 char.
     (see #2351)
   * Include AIN as takeoff-angle when reading and writing nordic files
     (see #2404).
   * Add error ellipses and read high-accuracy hypocenter lines (see #2451)
   * Fix the incorrect handling of events missing pick evaluation information
     (see #2520)
 - obspy.io.reftek:
   * Implement reading reftek encodings '16' and '32' (uncompressed data,
     16/32bit integers, see #2058 and #2059)
 - obspy.io.rg16:
   * Implement module to read waveforms and headers from fcnt format (see #2265).
   * Fix reading when start+endtime are inside one data packet (see #2485).
 - obspy.io.sac:
   * Fix bug writing inventory with SOH channels to SACPZ (see #2200).
   * Blank-pad character header variables, as opposed to NUL-padding them, to
     comply with SAC behavior (see #2543).
 - obspy.io.segy:
   * Raise nicer error messages when header packing fails (see #2194, #2196).
   * Show nice error message when trying to write a trace with too many samples
     in it (see #2358, #1393)
 - obspy.io.seg2:
   * Handle data format code 3 trace data (#2022, #2385).
   * Improve parsing of free-form entries (#2385).
   * Fix non-native endian data loading (#2385).
 - obspy.io.seiscomp:
   * Adding support for SC3ML 0.10 (see #2024).
   * Update xsl to allow conversion of amplitude picks not associated with
     origins (see #2273).
   * Very large performance improvement reading large sc3ml inventory files by
     pre-indexing sensors, dataloggers and responses and reducing lxml calls
     (see #2296).
   * When reading StationXML/SC3ML, make sure to properly read empty string
     fields as empty strings instead of "None" (see #2519 and #2527)
 - obspy.io.sh:
   * Add read support for SeismicHandler EVT event files (see #2109)
 - obspy.io.shapefile:
   * Add possibility to add custom database columns when writing catalog or
     inventory objects to shapefile (see #2012 and #2305)
 - obspy.io.stationxml:
   * When reading StationXML/SC3ML, make sure to properly read empty string
     fields as empty strings instead of "None" (see #2519 and #2527)
   * Inventory objects have been adapted to StationXML 1.1 for details on
     changes see #2510 and
     https://github.com/FDSN/StationXML/blob/master/Changes.md
 - obspy.io.quakeml:
   * Allow writing invalid ids but raise a warning
     (see #2104, #2090, #2093, #1872).
   * Skip invalid enumeration values during reading but raise a warning.
     (see #2106, #2098, #2095)
   * Catalogs with empty event description objects can be round-tripped (see
     #2339, #2340).
   * Correctly handle QuakeML native namespaces (if they are not matching the
     document root's namespace) as custom namespaces and parse them into
     `.extra` (see #2466)
 - obspy.io.xseed:
   * Ability to parse SEED files with extra newlines between blockettes
     (see #2383)
 - obspy.signal.cross_correlation:
   * Add new `correlate_template()` function with 'full' normalization option,
     required for correlations in template-matching
     (see #2035 and #2042).
   * 'domain' parameter in correlate function is deprecated in favour of new
     'method' parameter to be consistent with recent SciPy versions
     (see #2042).
   * Add `correlate_stream_template()` and `correlation_detector()`
     functions to detect events based on template matching (see #2315)
 - obspy.signal.PPSD:
   * Changed numpy-based serialization as to not require pickling (see #2424).
   * Fixed exact trace cutting for PSD segments (see #2040).
   * Timestamp representations internally and in npz I/O were changed to use
     integer nanosecond POSIX timestamps to avoid any potential floating point
     inaccuracies and since this is also what UTCDateTime is based on nowadays
     (see #2045).
   * Fixed the check for new PSD slices whether they should be added or whether
     they would add unwanted duplicated data (see #2229).
   * Fix `period_lim` option when `xaxis_frequency=True` (see #2246).
   * Added `allow_pickle` parameter to `PPSD.add_npz` and `PPSD.load_npz` and
     set its default to `False` (see #2457).
   * Added representation of earthquake models from Clinton & Heaton (2002) in
     'plot()' method using option 'show_earthquakes' (see #2455).
 - obspy.signal.polarization:
   * Fix an issue with covariance matrix in vidale algorithm and make adaptive
     windowing opt-out (see #2565)
   * Fix an issue in selecting Z/N/E traces from given stream (see #2365)
 - obspy.signal.trigger:
   * Fix a bug in AR picker (see #2157)
   * Option to return Baer-Kradolfer characteristic function from pk_mbaer
     function added (see #2341)
 - obspy.taup:
   * Fix cycling through colors in ray path plots (see #2470, #2478)
   * Fix a floating point issue on IBM machines (see #2559, #2560)


(mef)
diff -r1.16 -r1.17 pkgsrc/geography/py-obspy/Makefile
diff -r1.10 -r1.11 pkgsrc/geography/py-obspy/PLIST
diff -r1.7 -r1.8 pkgsrc/geography/py-obspy/distinfo

cvs diff -r1.16 -r1.17 pkgsrc/geography/py-obspy/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/Makefile 2020/10/12 21:51:59 1.16
+++ pkgsrc/geography/py-obspy/Makefile 2021/01/02 10:06:04 1.17
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.16 2020/10/12 21:51:59 bacon Exp $ 1# $NetBSD: Makefile,v 1.17 2021/01/02 10:06:04 mef Exp $
2 2
3DISTNAME= obspy-1.1.1 3DISTNAME= obspy-1.2.2
4PKGREVISION= 2 
5PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
6CATEGORIES= geography python 5CATEGORIES= geography python
7MASTER_SITES= ${MASTER_SITE_PYPI:=o/obspy/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=o/obspy/}
8EXTRACT_SUFX= .zip 7EXTRACT_SUFX= .zip
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://www.obspy.org/ 10HOMEPAGE= http://www.obspy.org/
12COMMENT= Python framework for seismological observatories 11COMMENT= Python framework for seismological observatories
13LICENSE= gnu-lgpl-v3 12LICENSE= gnu-lgpl-v3
14 13
15DEPENDS+= ${PYPKGPREFIX}-decorator>=0:../../devel/py-decorator 14DEPENDS+= ${PYPKGPREFIX}-decorator>=0:../../devel/py-decorator
16DEPENDS+= ${PYPKGPREFIX}-future>=0.12.4:../../devel/py-future 15DEPENDS+= ${PYPKGPREFIX}-future>=0.12.4:../../devel/py-future
17DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml 16DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml

cvs diff -r1.10 -r1.11 pkgsrc/geography/py-obspy/PLIST (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/PLIST 2020/05/03 21:52:18 1.10
+++ pkgsrc/geography/py-obspy/PLIST 2021/01/02 10:06:04 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.10 2020/05/03 21:52:18 wiedi Exp $ 1@comment $NetBSD: PLIST,v 1.11 2021/01/02 10:06:04 mef Exp $
2bin/obspy-dataless2resp 2bin/obspy-dataless2resp
3bin/obspy-dataless2xseed 3bin/obspy-dataless2xseed
4bin/obspy-flinn-engdahl 4bin/obspy-flinn-engdahl
5bin/obspy-indexer 5bin/obspy-indexer
6bin/obspy-mopad 6bin/obspy-mopad
7bin/obspy-mseed-recordanalyzer 7bin/obspy-mseed-recordanalyzer
8bin/obspy-plot 8bin/obspy-plot
9bin/obspy-print 9bin/obspy-print
10bin/obspy-reftek-rescue 10bin/obspy-reftek-rescue
11bin/obspy-runtests 11bin/obspy-runtests
12bin/obspy-scan 12bin/obspy-scan
13bin/obspy-sds-report 13bin/obspy-sds-report
14bin/obspy-xseed2dataless 14bin/obspy-xseed2dataless
@@ -116,26 +116,27 @@ ${PYSITELIB}/obspy/clients/fdsn/tests/da @@ -116,26 +116,27 @@ ${PYSITELIB}/obspy/clients/fdsn/tests/da
116${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_dataselect.wadl 116${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_dataselect.wadl
117${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_event.wadl 117${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_event.wadl
118${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_station.wadl 118${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_station.wadl
119${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_dataselect.wadl 119${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_dataselect.wadl
120${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_event.wadl 120${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_event.wadl
121${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_station.wadl 121${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_station.wadl
122${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_dataselect.wadl 122${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_dataselect.wadl
123${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_station.wadl 123${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_station.wadl
124${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_usgs_event.wadl 124${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_usgs_event.wadl
125${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-02-16_seismicportal_event.wadl 125${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-02-16_seismicportal_event.wadl
126${PYSITELIB}/obspy/clients/fdsn/tests/data/AU.MEEK.xml 126${PYSITELIB}/obspy/clients/fdsn/tests/data/AU.MEEK.xml
127${PYSITELIB}/obspy/clients/fdsn/tests/data/bulk.mseed 127${PYSITELIB}/obspy/clients/fdsn/tests/data/bulk.mseed
128${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn.txt 128${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn.txt
 129${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn_obscure_location_code.txt
129${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn_with_multiple_epochs.txt 130${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn_with_multiple_epochs.txt
130${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect.wadl 131${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect.wadl
131${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example.mseed 132${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example.mseed
132${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_mixed_wildcards.mseed 133${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_mixed_wildcards.mseed
133${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_wildcards.mseed 134${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_wildcards.mseed
134${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_helpstring.txt 135${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_helpstring.txt
135${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_missing_attributes.wadl 136${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_missing_attributes.wadl
136${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_no_types.wadl 137${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_no_types.wadl
137${PYSITELIB}/obspy/clients/fdsn/tests/data/eida_token.txt 138${PYSITELIB}/obspy/clients/fdsn/tests/data/eida_token.txt
138${PYSITELIB}/obspy/clients/fdsn/tests/data/event.wadl 139${PYSITELIB}/obspy/clients/fdsn/tests/data/event.wadl
139${PYSITELIB}/obspy/clients/fdsn/tests/data/event_helpstring.txt 140${PYSITELIB}/obspy/clients/fdsn/tests/data/event_helpstring.txt
140${PYSITELIB}/obspy/clients/fdsn/tests/data/event_missing_attributes.wadl 141${PYSITELIB}/obspy/clients/fdsn/tests/data/event_missing_attributes.wadl
141${PYSITELIB}/obspy/clients/fdsn/tests/data/station.wadl 142${PYSITELIB}/obspy/clients/fdsn/tests/data/station.wadl
@@ -157,36 +158,55 @@ ${PYSITELIB}/obspy/clients/fdsn/tests/te @@ -157,36 +158,55 @@ ${PYSITELIB}/obspy/clients/fdsn/tests/te
157${PYSITELIB}/obspy/clients/fdsn/tests/test_federator_routing_client.pyo 158${PYSITELIB}/obspy/clients/fdsn/tests/test_federator_routing_client.pyo
158${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.py 159${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.py
159${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyc 160${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyc
160${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyo 161${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyo
161${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.py 162${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.py
162${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyc 163${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyc
163${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyo 164${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyo
164${PYSITELIB}/obspy/clients/fdsn/wadl_parser.py 165${PYSITELIB}/obspy/clients/fdsn/wadl_parser.py
165${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyc 166${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyc
166${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyo 167${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyo
167${PYSITELIB}/obspy/clients/filesystem/__init__.py 168${PYSITELIB}/obspy/clients/filesystem/__init__.py
168${PYSITELIB}/obspy/clients/filesystem/__init__.pyc 169${PYSITELIB}/obspy/clients/filesystem/__init__.pyc
169${PYSITELIB}/obspy/clients/filesystem/__init__.pyo 170${PYSITELIB}/obspy/clients/filesystem/__init__.pyo
 171${PYSITELIB}/obspy/clients/filesystem/db.py
 172${PYSITELIB}/obspy/clients/filesystem/db.pyc
 173${PYSITELIB}/obspy/clients/filesystem/db.pyo
 174${PYSITELIB}/obspy/clients/filesystem/miniseed.py
 175${PYSITELIB}/obspy/clients/filesystem/miniseed.pyc
 176${PYSITELIB}/obspy/clients/filesystem/miniseed.pyo
 177${PYSITELIB}/obspy/clients/filesystem/msriterator.py
 178${PYSITELIB}/obspy/clients/filesystem/msriterator.pyc
 179${PYSITELIB}/obspy/clients/filesystem/msriterator.pyo
170${PYSITELIB}/obspy/clients/filesystem/sds.py 180${PYSITELIB}/obspy/clients/filesystem/sds.py
171${PYSITELIB}/obspy/clients/filesystem/sds.pyc 181${PYSITELIB}/obspy/clients/filesystem/sds.pyc
172${PYSITELIB}/obspy/clients/filesystem/sds.pyo 182${PYSITELIB}/obspy/clients/filesystem/sds.pyo
173${PYSITELIB}/obspy/clients/filesystem/tests/__init__.py 183${PYSITELIB}/obspy/clients/filesystem/tests/__init__.py
174${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyc 184${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyc
175${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyo 185${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyo
176${PYSITELIB}/obspy/clients/filesystem/tests/data/sds_report.regex 186${PYSITELIB}/obspy/clients/filesystem/tests/data/sds_report.regex
 187${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/CU/2018/001/CU.TGUH.00.BHZ.2018.001_first_minute.mseed
 188${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/IU/2018/001/IU.ANMO.10.BHZ.2018.001_first_minute.mseed
 189${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/IU/2018/001/IU.COLA.10.BHZ.2018.001_first_minute.mseed
 190${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/timeseries.sqlite
177${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.py 191${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.py
178${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyc 192${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyc
179${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyo 193${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyo
 194${PYSITELIB}/obspy/clients/filesystem/tests/test_tsindex.py
 195${PYSITELIB}/obspy/clients/filesystem/tests/test_tsindex.pyc
 196${PYSITELIB}/obspy/clients/filesystem/tests/test_tsindex.pyo
 197${PYSITELIB}/obspy/clients/filesystem/tsindex.py
 198${PYSITELIB}/obspy/clients/filesystem/tsindex.pyc
 199${PYSITELIB}/obspy/clients/filesystem/tsindex.pyo
180${PYSITELIB}/obspy/clients/httpproxy.py 200${PYSITELIB}/obspy/clients/httpproxy.py
181${PYSITELIB}/obspy/clients/httpproxy.pyc 201${PYSITELIB}/obspy/clients/httpproxy.pyc
182${PYSITELIB}/obspy/clients/httpproxy.pyo 202${PYSITELIB}/obspy/clients/httpproxy.pyo
183${PYSITELIB}/obspy/clients/iris/README.txt 203${PYSITELIB}/obspy/clients/iris/README.txt
184${PYSITELIB}/obspy/clients/iris/__init__.py 204${PYSITELIB}/obspy/clients/iris/__init__.py
185${PYSITELIB}/obspy/clients/iris/__init__.pyc 205${PYSITELIB}/obspy/clients/iris/__init__.pyc
186${PYSITELIB}/obspy/clients/iris/__init__.pyo 206${PYSITELIB}/obspy/clients/iris/__init__.pyo
187${PYSITELIB}/obspy/clients/iris/client.py 207${PYSITELIB}/obspy/clients/iris/client.py
188${PYSITELIB}/obspy/clients/iris/client.pyc 208${PYSITELIB}/obspy/clients/iris/client.pyc
189${PYSITELIB}/obspy/clients/iris/client.pyo 209${PYSITELIB}/obspy/clients/iris/client.pyo
190${PYSITELIB}/obspy/clients/iris/tests/__init__.py 210${PYSITELIB}/obspy/clients/iris/tests/__init__.py
191${PYSITELIB}/obspy/clients/iris/tests/__init__.pyc 211${PYSITELIB}/obspy/clients/iris/tests/__init__.pyc
192${PYSITELIB}/obspy/clients/iris/tests/__init__.pyo 212${PYSITELIB}/obspy/clients/iris/tests/__init__.pyo
@@ -322,48 +342,52 @@ ${PYSITELIB}/obspy/clients/syngine/tests @@ -322,48 +342,52 @@ ${PYSITELIB}/obspy/clients/syngine/tests
322${PYSITELIB}/obspy/clients/syngine/tests/__init__.pyo 342${PYSITELIB}/obspy/clients/syngine/tests/__init__.pyo
323${PYSITELIB}/obspy/clients/syngine/tests/test_client.py 343${PYSITELIB}/obspy/clients/syngine/tests/test_client.py
324${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyc 344${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyc
325${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyo 345${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyo
326${PYSITELIB}/obspy/core/README.txt 346${PYSITELIB}/obspy/core/README.txt
327${PYSITELIB}/obspy/core/__init__.py 347${PYSITELIB}/obspy/core/__init__.py
328${PYSITELIB}/obspy/core/__init__.pyc 348${PYSITELIB}/obspy/core/__init__.pyc
329${PYSITELIB}/obspy/core/__init__.pyo 349${PYSITELIB}/obspy/core/__init__.pyo
330${PYSITELIB}/obspy/core/compatibility.py 350${PYSITELIB}/obspy/core/compatibility.py
331${PYSITELIB}/obspy/core/compatibility.pyc 351${PYSITELIB}/obspy/core/compatibility.pyc
332${PYSITELIB}/obspy/core/compatibility.pyo 352${PYSITELIB}/obspy/core/compatibility.pyo
333${PYSITELIB}/obspy/core/data/BW_GR_misc.xml 353${PYSITELIB}/obspy/core/data/BW_GR_misc.xml
334${PYSITELIB}/obspy/core/data/BW_RJOB.xml 354${PYSITELIB}/obspy/core/data/BW_RJOB.xml
 355${PYSITELIB}/obspy/core/data/BW_RJOB__EHZ.xml
335${PYSITELIB}/obspy/core/data/example.npz 356${PYSITELIB}/obspy/core/data/example.npz
336${PYSITELIB}/obspy/core/event/__init__.py 357${PYSITELIB}/obspy/core/event/__init__.py
337${PYSITELIB}/obspy/core/event/__init__.pyc 358${PYSITELIB}/obspy/core/event/__init__.pyc
338${PYSITELIB}/obspy/core/event/__init__.pyo 359${PYSITELIB}/obspy/core/event/__init__.pyo
339${PYSITELIB}/obspy/core/event/base.py 360${PYSITELIB}/obspy/core/event/base.py
340${PYSITELIB}/obspy/core/event/base.pyc 361${PYSITELIB}/obspy/core/event/base.pyc
341${PYSITELIB}/obspy/core/event/base.pyo 362${PYSITELIB}/obspy/core/event/base.pyo
342${PYSITELIB}/obspy/core/event/catalog.py 363${PYSITELIB}/obspy/core/event/catalog.py
343${PYSITELIB}/obspy/core/event/catalog.pyc 364${PYSITELIB}/obspy/core/event/catalog.pyc
344${PYSITELIB}/obspy/core/event/catalog.pyo 365${PYSITELIB}/obspy/core/event/catalog.pyo
345${PYSITELIB}/obspy/core/event/event.py 366${PYSITELIB}/obspy/core/event/event.py
346${PYSITELIB}/obspy/core/event/event.pyc 367${PYSITELIB}/obspy/core/event/event.pyc
347${PYSITELIB}/obspy/core/event/event.pyo 368${PYSITELIB}/obspy/core/event/event.pyo
348${PYSITELIB}/obspy/core/event/header.py 369${PYSITELIB}/obspy/core/event/header.py
349${PYSITELIB}/obspy/core/event/header.pyc 370${PYSITELIB}/obspy/core/event/header.pyc
350${PYSITELIB}/obspy/core/event/header.pyo 371${PYSITELIB}/obspy/core/event/header.pyo
351${PYSITELIB}/obspy/core/event/magnitude.py 372${PYSITELIB}/obspy/core/event/magnitude.py
352${PYSITELIB}/obspy/core/event/magnitude.pyc 373${PYSITELIB}/obspy/core/event/magnitude.pyc
353${PYSITELIB}/obspy/core/event/magnitude.pyo 374${PYSITELIB}/obspy/core/event/magnitude.pyo
354${PYSITELIB}/obspy/core/event/origin.py 375${PYSITELIB}/obspy/core/event/origin.py
355${PYSITELIB}/obspy/core/event/origin.pyc 376${PYSITELIB}/obspy/core/event/origin.pyc
356${PYSITELIB}/obspy/core/event/origin.pyo 377${PYSITELIB}/obspy/core/event/origin.pyo
 378${PYSITELIB}/obspy/core/event/resourceid.py
 379${PYSITELIB}/obspy/core/event/resourceid.pyc
 380${PYSITELIB}/obspy/core/event/resourceid.pyo
357${PYSITELIB}/obspy/core/event/source.py 381${PYSITELIB}/obspy/core/event/source.py
358${PYSITELIB}/obspy/core/event/source.pyc 382${PYSITELIB}/obspy/core/event/source.pyc
359${PYSITELIB}/obspy/core/event/source.pyo 383${PYSITELIB}/obspy/core/event/source.pyo
360${PYSITELIB}/obspy/core/inventory/README.txt 384${PYSITELIB}/obspy/core/inventory/README.txt
361${PYSITELIB}/obspy/core/inventory/__init__.py 385${PYSITELIB}/obspy/core/inventory/__init__.py
362${PYSITELIB}/obspy/core/inventory/__init__.pyc 386${PYSITELIB}/obspy/core/inventory/__init__.pyc
363${PYSITELIB}/obspy/core/inventory/__init__.pyo 387${PYSITELIB}/obspy/core/inventory/__init__.pyo
364${PYSITELIB}/obspy/core/inventory/channel.py 388${PYSITELIB}/obspy/core/inventory/channel.py
365${PYSITELIB}/obspy/core/inventory/channel.pyc 389${PYSITELIB}/obspy/core/inventory/channel.pyc
366${PYSITELIB}/obspy/core/inventory/channel.pyo 390${PYSITELIB}/obspy/core/inventory/channel.pyo
367${PYSITELIB}/obspy/core/inventory/inventory.py 391${PYSITELIB}/obspy/core/inventory/inventory.py
368${PYSITELIB}/obspy/core/inventory/inventory.pyc 392${PYSITELIB}/obspy/core/inventory/inventory.pyc
369${PYSITELIB}/obspy/core/inventory/inventory.pyo 393${PYSITELIB}/obspy/core/inventory/inventory.pyo
@@ -390,26 +414,27 @@ ${PYSITELIB}/obspy/core/tests/__init__.p @@ -390,26 +414,27 @@ ${PYSITELIB}/obspy/core/tests/__init__.p
390${PYSITELIB}/obspy/core/tests/__init__.pyo 414${PYSITELIB}/obspy/core/tests/__init__.pyo
391${PYSITELIB}/obspy/core/tests/data/AU.MEEK.seed 415${PYSITELIB}/obspy/core/tests/data/AU.MEEK.seed
392${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml 416${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml
393${PYSITELIB}/obspy/core/tests/data/DK.BSD..BHZ.xml 417${PYSITELIB}/obspy/core/tests/data/DK.BSD..BHZ.xml
394${PYSITELIB}/obspy/core/tests/data/IM_I53H1_BDF.xml 418${PYSITELIB}/obspy/core/tests/data/IM_I53H1_BDF.xml
395${PYSITELIB}/obspy/core/tests/data/IM_IL31__BHZ.xml 419${PYSITELIB}/obspy/core/tests/data/IM_IL31__BHZ.xml
396${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.seed 420${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.seed
397${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.xml 421${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.xml
398${PYSITELIB}/obspy/core/tests/data/IU_ANMO_00_BHZ.xml 422${PYSITELIB}/obspy/core/tests/data/IU_ANMO_00_BHZ.xml
399${PYSITELIB}/obspy/core/tests/data/IU_ANMO_BH.xml 423${PYSITELIB}/obspy/core/tests/data/IU_ANMO_BH.xml
400${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1.xml 424${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1.xml
401${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1_2015-07-18T02.mseed 425${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1_2015-07-18T02.mseed
402${PYSITELIB}/obspy/core/tests/data/Modified_IRIS_response_level_station.xml 426${PYSITELIB}/obspy/core/tests/data/Modified_IRIS_response_level_station.xml
 427${PYSITELIB}/obspy/core/tests/data/RESP.XX.NS306..SHZ.GS13.1.2180
403${PYSITELIB}/obspy/core/tests/data/TM.SKLT.__.BHZ_faulty_response.xml 428${PYSITELIB}/obspy/core/tests/data/TM.SKLT.__.BHZ_faulty_response.xml
404${PYSITELIB}/obspy/core/tests/data/XM.05.seed 429${PYSITELIB}/obspy/core/tests/data/XM.05.seed
405${PYSITELIB}/obspy/core/tests/data/XM.05.xml 430${PYSITELIB}/obspy/core/tests/data/XM.05.xml
406${PYSITELIB}/obspy/core/tests/data/events_longitude_wrap.zmap 431${PYSITELIB}/obspy/core/tests/data/events_longitude_wrap.zmap
407${PYSITELIB}/obspy/core/tests/data/example_py2.pickle 432${PYSITELIB}/obspy/core/tests/data/example_py2.pickle
408${PYSITELIB}/obspy/core/tests/data/example_py3.pickle 433${PYSITELIB}/obspy/core/tests/data/example_py3.pickle
409${PYSITELIB}/obspy/core/tests/data/expected_response_IM_IL31__BHZ.txt 434${PYSITELIB}/obspy/core/tests/data/expected_response_IM_IL31__BHZ.txt
410${PYSITELIB}/obspy/core/tests/data/ffbx.dataless 435${PYSITELIB}/obspy/core/tests/data/ffbx.dataless
411${PYSITELIB}/obspy/core/tests/data/ffbx.stationxml 436${PYSITELIB}/obspy/core/tests/data/ffbx.stationxml
412${PYSITELIB}/obspy/core/tests/data/ffbx_rotated.slist 437${PYSITELIB}/obspy/core/tests/data/ffbx_rotated.slist
413${PYSITELIB}/obspy/core/tests/data/ffbx_unrotated_gaps.mseed 438${PYSITELIB}/obspy/core/tests/data/ffbx_unrotated_gaps.mseed
414${PYSITELIB}/obspy/core/tests/data/iris_events.xml 439${PYSITELIB}/obspy/core/tests/data/iris_events.xml
415${PYSITELIB}/obspy/core/tests/data/neries_events.xml 440${PYSITELIB}/obspy/core/tests/data/neries_events.xml
@@ -451,38 +476,44 @@ ${PYSITELIB}/obspy/core/tests/images/net @@ -451,38 +476,44 @@ ${PYSITELIB}/obspy/core/tests/images/net
451${PYSITELIB}/obspy/core/tests/images/network_location-cartopy3.png 476${PYSITELIB}/obspy/core/tests/images/network_location-cartopy3.png
452${PYSITELIB}/obspy/core/tests/images/network_response.png 477${PYSITELIB}/obspy/core/tests/images/network_response.png
453${PYSITELIB}/obspy/core/tests/images/response_response.png 478${PYSITELIB}/obspy/core/tests/images/response_response.png
454${PYSITELIB}/obspy/core/tests/images/response_response_degrees.png 479${PYSITELIB}/obspy/core/tests/images/response_response_degrees.png
455${PYSITELIB}/obspy/core/tests/images/station_response.png 480${PYSITELIB}/obspy/core/tests/images/station_response.png
456${PYSITELIB}/obspy/core/tests/images/station_response_degrees.png 481${PYSITELIB}/obspy/core/tests/images/station_response_degrees.png
457${PYSITELIB}/obspy/core/tests/images/trace_remove_response.png 482${PYSITELIB}/obspy/core/tests/images/trace_remove_response.png
458${PYSITELIB}/obspy/core/tests/test_channel.py 483${PYSITELIB}/obspy/core/tests/test_channel.py
459${PYSITELIB}/obspy/core/tests/test_channel.pyc 484${PYSITELIB}/obspy/core/tests/test_channel.pyc
460${PYSITELIB}/obspy/core/tests/test_channel.pyo 485${PYSITELIB}/obspy/core/tests/test_channel.pyo
461${PYSITELIB}/obspy/core/tests/test_code_formatting.py 486${PYSITELIB}/obspy/core/tests/test_code_formatting.py
462${PYSITELIB}/obspy/core/tests/test_code_formatting.pyc 487${PYSITELIB}/obspy/core/tests/test_code_formatting.pyc
463${PYSITELIB}/obspy/core/tests/test_code_formatting.pyo 488${PYSITELIB}/obspy/core/tests/test_code_formatting.pyo
 489${PYSITELIB}/obspy/core/tests/test_compatibility.py
 490${PYSITELIB}/obspy/core/tests/test_compatibility.pyc
 491${PYSITELIB}/obspy/core/tests/test_compatibility.pyo
464${PYSITELIB}/obspy/core/tests/test_event.py 492${PYSITELIB}/obspy/core/tests/test_event.py
465${PYSITELIB}/obspy/core/tests/test_event.pyc 493${PYSITELIB}/obspy/core/tests/test_event.pyc
466${PYSITELIB}/obspy/core/tests/test_event.pyo 494${PYSITELIB}/obspy/core/tests/test_event.pyo
467${PYSITELIB}/obspy/core/tests/test_inventory.py 495${PYSITELIB}/obspy/core/tests/test_inventory.py
468${PYSITELIB}/obspy/core/tests/test_inventory.pyc 496${PYSITELIB}/obspy/core/tests/test_inventory.pyc
469${PYSITELIB}/obspy/core/tests/test_inventory.pyo 497${PYSITELIB}/obspy/core/tests/test_inventory.pyo
470${PYSITELIB}/obspy/core/tests/test_network.py 498${PYSITELIB}/obspy/core/tests/test_network.py
471${PYSITELIB}/obspy/core/tests/test_network.pyc 499${PYSITELIB}/obspy/core/tests/test_network.pyc
472${PYSITELIB}/obspy/core/tests/test_network.pyo 500${PYSITELIB}/obspy/core/tests/test_network.pyo
473${PYSITELIB}/obspy/core/tests/test_preview.py 501${PYSITELIB}/obspy/core/tests/test_preview.py
474${PYSITELIB}/obspy/core/tests/test_preview.pyc 502${PYSITELIB}/obspy/core/tests/test_preview.pyc
475${PYSITELIB}/obspy/core/tests/test_preview.pyo 503${PYSITELIB}/obspy/core/tests/test_preview.pyo
 504${PYSITELIB}/obspy/core/tests/test_resource_identifier.py
 505${PYSITELIB}/obspy/core/tests/test_resource_identifier.pyc
 506${PYSITELIB}/obspy/core/tests/test_resource_identifier.pyo
476${PYSITELIB}/obspy/core/tests/test_response.py 507${PYSITELIB}/obspy/core/tests/test_response.py
477${PYSITELIB}/obspy/core/tests/test_response.pyc 508${PYSITELIB}/obspy/core/tests/test_response.pyc
478${PYSITELIB}/obspy/core/tests/test_response.pyo 509${PYSITELIB}/obspy/core/tests/test_response.pyo
479${PYSITELIB}/obspy/core/tests/test_station.py 510${PYSITELIB}/obspy/core/tests/test_station.py
480${PYSITELIB}/obspy/core/tests/test_station.pyc 511${PYSITELIB}/obspy/core/tests/test_station.pyc
481${PYSITELIB}/obspy/core/tests/test_station.pyo 512${PYSITELIB}/obspy/core/tests/test_station.pyo
482${PYSITELIB}/obspy/core/tests/test_stats.py 513${PYSITELIB}/obspy/core/tests/test_stats.py
483${PYSITELIB}/obspy/core/tests/test_stats.pyc 514${PYSITELIB}/obspy/core/tests/test_stats.pyc
484${PYSITELIB}/obspy/core/tests/test_stats.pyo 515${PYSITELIB}/obspy/core/tests/test_stats.pyo
485${PYSITELIB}/obspy/core/tests/test_stream.py 516${PYSITELIB}/obspy/core/tests/test_stream.py
486${PYSITELIB}/obspy/core/tests/test_stream.pyc 517${PYSITELIB}/obspy/core/tests/test_stream.pyc
487${PYSITELIB}/obspy/core/tests/test_stream.pyo 518${PYSITELIB}/obspy/core/tests/test_stream.pyo
488${PYSITELIB}/obspy/core/tests/test_trace.py 519${PYSITELIB}/obspy/core/tests/test_trace.py
@@ -493,26 +524,29 @@ ${PYSITELIB}/obspy/core/tests/test_utcda @@ -493,26 +524,29 @@ ${PYSITELIB}/obspy/core/tests/test_utcda
493${PYSITELIB}/obspy/core/tests/test_utcdatetime.pyo 524${PYSITELIB}/obspy/core/tests/test_utcdatetime.pyo
494${PYSITELIB}/obspy/core/tests/test_util_attribdict.py 525${PYSITELIB}/obspy/core/tests/test_util_attribdict.py
495${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyc 526${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyc
496${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyo 527${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyo
497${PYSITELIB}/obspy/core/tests/test_util_base.py 528${PYSITELIB}/obspy/core/tests/test_util_base.py
498${PYSITELIB}/obspy/core/tests/test_util_base.pyc 529${PYSITELIB}/obspy/core/tests/test_util_base.pyc
499${PYSITELIB}/obspy/core/tests/test_util_base.pyo 530${PYSITELIB}/obspy/core/tests/test_util_base.pyo
500${PYSITELIB}/obspy/core/tests/test_util_decorator.py 531${PYSITELIB}/obspy/core/tests/test_util_decorator.py
501${PYSITELIB}/obspy/core/tests/test_util_decorator.pyc 532${PYSITELIB}/obspy/core/tests/test_util_decorator.pyc
502${PYSITELIB}/obspy/core/tests/test_util_decorator.pyo 533${PYSITELIB}/obspy/core/tests/test_util_decorator.pyo
503${PYSITELIB}/obspy/core/tests/test_util_misc.py 534${PYSITELIB}/obspy/core/tests/test_util_misc.py
504${PYSITELIB}/obspy/core/tests/test_util_misc.pyc 535${PYSITELIB}/obspy/core/tests/test_util_misc.pyc
505${PYSITELIB}/obspy/core/tests/test_util_misc.pyo 536${PYSITELIB}/obspy/core/tests/test_util_misc.pyo
 537${PYSITELIB}/obspy/core/tests/test_util_testing.py
 538${PYSITELIB}/obspy/core/tests/test_util_testing.pyc
 539${PYSITELIB}/obspy/core/tests/test_util_testing.pyo
506${PYSITELIB}/obspy/core/tests/test_util_types.py 540${PYSITELIB}/obspy/core/tests/test_util_types.py
507${PYSITELIB}/obspy/core/tests/test_util_types.pyc 541${PYSITELIB}/obspy/core/tests/test_util_types.pyc
508${PYSITELIB}/obspy/core/tests/test_util_types.pyo 542${PYSITELIB}/obspy/core/tests/test_util_types.pyo
509${PYSITELIB}/obspy/core/tests/test_waveform_plugins.py 543${PYSITELIB}/obspy/core/tests/test_waveform_plugins.py
510${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyc 544${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyc
511${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyo 545${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyo
512${PYSITELIB}/obspy/core/trace.py 546${PYSITELIB}/obspy/core/trace.py
513${PYSITELIB}/obspy/core/trace.pyc 547${PYSITELIB}/obspy/core/trace.pyc
514${PYSITELIB}/obspy/core/trace.pyo 548${PYSITELIB}/obspy/core/trace.pyo
515${PYSITELIB}/obspy/core/utcdatetime.py 549${PYSITELIB}/obspy/core/utcdatetime.py
516${PYSITELIB}/obspy/core/utcdatetime.pyc 550${PYSITELIB}/obspy/core/utcdatetime.pyc
517${PYSITELIB}/obspy/core/utcdatetime.pyo 551${PYSITELIB}/obspy/core/utcdatetime.pyo
518${PYSITELIB}/obspy/core/util/__init__.py 552${PYSITELIB}/obspy/core/util/__init__.py
@@ -788,26 +822,27 @@ ${PYSITELIB}/obspy/io/arclink/__init__.p @@ -788,26 +822,27 @@ ${PYSITELIB}/obspy/io/arclink/__init__.p
788${PYSITELIB}/obspy/io/arclink/__init__.pyc 822${PYSITELIB}/obspy/io/arclink/__init__.pyc
789${PYSITELIB}/obspy/io/arclink/__init__.pyo 823${PYSITELIB}/obspy/io/arclink/__init__.pyo
790${PYSITELIB}/obspy/io/arclink/data/arclink_schema.xsd 824${PYSITELIB}/obspy/io/arclink/data/arclink_schema.xsd
791${PYSITELIB}/obspy/io/arclink/inventory.py 825${PYSITELIB}/obspy/io/arclink/inventory.py
792${PYSITELIB}/obspy/io/arclink/inventory.pyc 826${PYSITELIB}/obspy/io/arclink/inventory.pyc
793${PYSITELIB}/obspy/io/arclink/inventory.pyo 827${PYSITELIB}/obspy/io/arclink/inventory.pyo
794${PYSITELIB}/obspy/io/arclink/tests/__init__.py 828${PYSITELIB}/obspy/io/arclink/tests/__init__.py
795${PYSITELIB}/obspy/io/arclink/tests/__init__.pyc 829${PYSITELIB}/obspy/io/arclink/tests/__init__.pyc
796${PYSITELIB}/obspy/io/arclink/tests/__init__.pyo 830${PYSITELIB}/obspy/io/arclink/tests/__init__.pyo
797${PYSITELIB}/obspy/io/arclink/tests/data/arclink_afc.xml 831${PYSITELIB}/obspy/io/arclink/tests/data/arclink_afc.xml
798${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory.xml 832${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory.xml
799${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory_poly.xml 833${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory_poly.xml
800${PYSITELIB}/obspy/io/arclink/tests/data/gols_station.xml 834${PYSITELIB}/obspy/io/arclink/tests/data/gols_station.xml
 835${PYSITELIB}/obspy/io/arclink/tests/data/public-id-slash.xml
801${PYSITELIB}/obspy/io/arclink/tests/data/station_afc.xml 836${PYSITELIB}/obspy/io/arclink/tests/data/station_afc.xml
802${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.py 837${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.py
803${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.pyc 838${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.pyc
804${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.pyo 839${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.pyo
805${PYSITELIB}/obspy/io/ascii/__init__.py 840${PYSITELIB}/obspy/io/ascii/__init__.py
806${PYSITELIB}/obspy/io/ascii/__init__.pyc 841${PYSITELIB}/obspy/io/ascii/__init__.pyc
807${PYSITELIB}/obspy/io/ascii/__init__.pyo 842${PYSITELIB}/obspy/io/ascii/__init__.pyo
808${PYSITELIB}/obspy/io/ascii/core.py 843${PYSITELIB}/obspy/io/ascii/core.py
809${PYSITELIB}/obspy/io/ascii/core.pyc 844${PYSITELIB}/obspy/io/ascii/core.pyc
810${PYSITELIB}/obspy/io/ascii/core.pyo 845${PYSITELIB}/obspy/io/ascii/core.pyo
811${PYSITELIB}/obspy/io/ascii/tests/__init__.py 846${PYSITELIB}/obspy/io/ascii/tests/__init__.py
812${PYSITELIB}/obspy/io/ascii/tests/__init__.pyc 847${PYSITELIB}/obspy/io/ascii/tests/__init__.pyc
813${PYSITELIB}/obspy/io/ascii/tests/__init__.pyo 848${PYSITELIB}/obspy/io/ascii/tests/__init__.pyo
@@ -882,26 +917,56 @@ ${PYSITELIB}/obspy/io/css/tests/data/css @@ -882,26 +917,56 @@ ${PYSITELIB}/obspy/io/css/tests/data/css
882${PYSITELIB}/obspy/io/css/tests/data/station/default.affiliation 917${PYSITELIB}/obspy/io/css/tests/data/station/default.affiliation
883${PYSITELIB}/obspy/io/css/tests/data/station/default.network 918${PYSITELIB}/obspy/io/css/tests/data/station/default.network
884${PYSITELIB}/obspy/io/css/tests/data/station/default.remark 919${PYSITELIB}/obspy/io/css/tests/data/station/default.remark
885${PYSITELIB}/obspy/io/css/tests/data/station/default.site 920${PYSITELIB}/obspy/io/css/tests/data/station/default.site
886${PYSITELIB}/obspy/io/css/tests/data/station/default.sitechan 921${PYSITELIB}/obspy/io/css/tests/data/station/default.sitechan
887${PYSITELIB}/obspy/io/css/tests/data/test_css.wfdisc 922${PYSITELIB}/obspy/io/css/tests/data/test_css.wfdisc
888${PYSITELIB}/obspy/io/css/tests/data/test_nnsa.wfdisc 923${PYSITELIB}/obspy/io/css/tests/data/test_nnsa.wfdisc
889${PYSITELIB}/obspy/io/css/tests/test_core.py 924${PYSITELIB}/obspy/io/css/tests/test_core.py
890${PYSITELIB}/obspy/io/css/tests/test_core.pyc 925${PYSITELIB}/obspy/io/css/tests/test_core.pyc
891${PYSITELIB}/obspy/io/css/tests/test_core.pyo 926${PYSITELIB}/obspy/io/css/tests/test_core.pyo
892${PYSITELIB}/obspy/io/css/tests/test_station.py 927${PYSITELIB}/obspy/io/css/tests/test_station.py
893${PYSITELIB}/obspy/io/css/tests/test_station.pyc 928${PYSITELIB}/obspy/io/css/tests/test_station.pyc
894${PYSITELIB}/obspy/io/css/tests/test_station.pyo 929${PYSITELIB}/obspy/io/css/tests/test_station.pyo
 930${PYSITELIB}/obspy/io/dmx/__init__.py
 931${PYSITELIB}/obspy/io/dmx/__init__.pyc
 932${PYSITELIB}/obspy/io/dmx/__init__.pyo
 933${PYSITELIB}/obspy/io/dmx/core.py
 934${PYSITELIB}/obspy/io/dmx/core.pyc
 935${PYSITELIB}/obspy/io/dmx/core.pyo
 936${PYSITELIB}/obspy/io/dmx/tests/__init__.py
 937${PYSITELIB}/obspy/io/dmx/tests/__init__.pyc
 938${PYSITELIB}/obspy/io/dmx/tests/__init__.pyo
 939${PYSITELIB}/obspy/io/dmx/tests/data/131114_090600.dmx
 940${PYSITELIB}/obspy/io/dmx/tests/test_core.py
 941${PYSITELIB}/obspy/io/dmx/tests/test_core.pyc
 942${PYSITELIB}/obspy/io/dmx/tests/test_core.pyo
 943${PYSITELIB}/obspy/io/focmec/__init__.py
 944${PYSITELIB}/obspy/io/focmec/__init__.pyc
 945${PYSITELIB}/obspy/io/focmec/__init__.pyo
 946${PYSITELIB}/obspy/io/focmec/core.py
 947${PYSITELIB}/obspy/io/focmec/core.pyc
 948${PYSITELIB}/obspy/io/focmec/core.pyo
 949${PYSITELIB}/obspy/io/focmec/tests/__init__.py
 950${PYSITELIB}/obspy/io/focmec/tests/__init__.pyc
 951${PYSITELIB}/obspy/io/focmec/tests/__init__.pyo
 952${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta-noratios.lst
 953${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta.lst
 954${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta.out
 955${PYSITELIB}/obspy/io/focmec/tests/data/focmec_all.lst
 956${PYSITELIB}/obspy/io/focmec/tests/data/focmec_qedUWne.lst
 957${PYSITELIB}/obspy/io/focmec/tests/test_core.py
 958${PYSITELIB}/obspy/io/focmec/tests/test_core.pyc
 959${PYSITELIB}/obspy/io/focmec/tests/test_core.pyo
895${PYSITELIB}/obspy/io/gcf/__init__.py 960${PYSITELIB}/obspy/io/gcf/__init__.py
896${PYSITELIB}/obspy/io/gcf/__init__.pyc 961${PYSITELIB}/obspy/io/gcf/__init__.pyc
897${PYSITELIB}/obspy/io/gcf/__init__.pyo 962${PYSITELIB}/obspy/io/gcf/__init__.pyo
898${PYSITELIB}/obspy/io/gcf/core.py 963${PYSITELIB}/obspy/io/gcf/core.py
899${PYSITELIB}/obspy/io/gcf/core.pyc 964${PYSITELIB}/obspy/io/gcf/core.pyc
900${PYSITELIB}/obspy/io/gcf/core.pyo 965${PYSITELIB}/obspy/io/gcf/core.pyo
901${PYSITELIB}/obspy/io/gcf/libgcf.py 966${PYSITELIB}/obspy/io/gcf/libgcf.py
902${PYSITELIB}/obspy/io/gcf/libgcf.pyc 967${PYSITELIB}/obspy/io/gcf/libgcf.pyc
903${PYSITELIB}/obspy/io/gcf/libgcf.pyo 968${PYSITELIB}/obspy/io/gcf/libgcf.pyo
904${PYSITELIB}/obspy/io/gcf/tests/__init__.py 969${PYSITELIB}/obspy/io/gcf/tests/__init__.py
905${PYSITELIB}/obspy/io/gcf/tests/__init__.pyc 970${PYSITELIB}/obspy/io/gcf/tests/__init__.pyc
906${PYSITELIB}/obspy/io/gcf/tests/__init__.pyo 971${PYSITELIB}/obspy/io/gcf/tests/__init__.pyo
907${PYSITELIB}/obspy/io/gcf/tests/data/20160603_1910n.gcf 972${PYSITELIB}/obspy/io/gcf/tests/data/20160603_1910n.gcf
@@ -957,26 +1022,40 @@ ${PYSITELIB}/obspy/io/gse2/tests/test_bu @@ -957,26 +1022,40 @@ ${PYSITELIB}/obspy/io/gse2/tests/test_bu
957${PYSITELIB}/obspy/io/gse2/tests/test_bulletin.pyo 1022${PYSITELIB}/obspy/io/gse2/tests/test_bulletin.pyo
958${PYSITELIB}/obspy/io/gse2/tests/test_core.py 1023${PYSITELIB}/obspy/io/gse2/tests/test_core.py
959${PYSITELIB}/obspy/io/gse2/tests/test_core.pyc 1024${PYSITELIB}/obspy/io/gse2/tests/test_core.pyc
960${PYSITELIB}/obspy/io/gse2/tests/test_core.pyo 1025${PYSITELIB}/obspy/io/gse2/tests/test_core.pyo
961${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.py 1026${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.py
962${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyc 1027${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyc
963${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyo 1028${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyo
964${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.py 1029${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.py
965${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyc 1030${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyc
966${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyo 1031${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyo
967${PYSITELIB}/obspy/io/gse2/tests/test_paz.py 1032${PYSITELIB}/obspy/io/gse2/tests/test_paz.py
968${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyc 1033${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyc
969${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyo 1034${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyo
 1035${PYSITELIB}/obspy/io/hypodd/__init__.py
 1036${PYSITELIB}/obspy/io/hypodd/__init__.pyc
 1037${PYSITELIB}/obspy/io/hypodd/__init__.pyo
 1038${PYSITELIB}/obspy/io/hypodd/pha.py
 1039${PYSITELIB}/obspy/io/hypodd/pha.pyc
 1040${PYSITELIB}/obspy/io/hypodd/pha.pyo
 1041${PYSITELIB}/obspy/io/hypodd/tests/__init__.py
 1042${PYSITELIB}/obspy/io/hypodd/tests/__init__.pyc
 1043${PYSITELIB}/obspy/io/hypodd/tests/__init__.pyo
 1044${PYSITELIB}/obspy/io/hypodd/tests/data/60s_nan.pha
 1045${PYSITELIB}/obspy/io/hypodd/tests/data/example.pha
 1046${PYSITELIB}/obspy/io/hypodd/tests/test_pha.py
 1047${PYSITELIB}/obspy/io/hypodd/tests/test_pha.pyc
 1048${PYSITELIB}/obspy/io/hypodd/tests/test_pha.pyo
970${PYSITELIB}/obspy/io/iaspei/__init__.py 1049${PYSITELIB}/obspy/io/iaspei/__init__.py
971${PYSITELIB}/obspy/io/iaspei/__init__.pyc 1050${PYSITELIB}/obspy/io/iaspei/__init__.pyc
972${PYSITELIB}/obspy/io/iaspei/__init__.pyo 1051${PYSITELIB}/obspy/io/iaspei/__init__.pyo
973${PYSITELIB}/obspy/io/iaspei/core.py 1052${PYSITELIB}/obspy/io/iaspei/core.py
974${PYSITELIB}/obspy/io/iaspei/core.pyc 1053${PYSITELIB}/obspy/io/iaspei/core.pyc
975${PYSITELIB}/obspy/io/iaspei/core.pyo 1054${PYSITELIB}/obspy/io/iaspei/core.pyo
976${PYSITELIB}/obspy/io/iaspei/tests/__init__.py 1055${PYSITELIB}/obspy/io/iaspei/tests/__init__.py
977${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyc 1056${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyc
978${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyo 1057${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyo
979${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.isf 1058${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.isf
980${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.xml 1059${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.xml
981${PYSITELIB}/obspy/io/iaspei/tests/test_core.py 1060${PYSITELIB}/obspy/io/iaspei/tests/test_core.py
982${PYSITELIB}/obspy/io/iaspei/tests/test_core.pyc 1061${PYSITELIB}/obspy/io/iaspei/tests/test_core.pyc
@@ -1156,26 +1235,29 @@ ${PYSITELIB}/obspy/io/mseed/tests/data/B @@ -1156,26 +1235,29 @@ ${PYSITELIB}/obspy/io/mseed/tests/data/B
1156${PYSITELIB}/obspy/io/mseed/tests/data/CDSN_encoding.mseed 1235${PYSITELIB}/obspy/io/mseed/tests/data/CDSN_encoding.mseed
1157${PYSITELIB}/obspy/io/mseed/tests/data/DWWSSN_encoding.mseed 1236${PYSITELIB}/obspy/io/mseed/tests/data/DWWSSN_encoding.mseed
1158${PYSITELIB}/obspy/io/mseed/tests/data/GEOSCOPE16_4_encoding.mseed 1237${PYSITELIB}/obspy/io/mseed/tests/data/GEOSCOPE16_4_encoding.mseed
1159${PYSITELIB}/obspy/io/mseed/tests/data/RJOB.BW.EHZ.D.300806.0000.fullseed 1238${PYSITELIB}/obspy/io/mseed/tests/data/RJOB.BW.EHZ.D.300806.0000.fullseed
1160${PYSITELIB}/obspy/io/mseed/tests/data/SRO_encoding.mseed 1239${PYSITELIB}/obspy/io/mseed/tests/data/SRO_encoding.mseed
1161${PYSITELIB}/obspy/io/mseed/tests/data/WUQ.XJ.HHN.D.2008.285.first_record 1240${PYSITELIB}/obspy/io/mseed/tests/data/WUQ.XJ.HHN.D.2008.285.first_record
1162${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.be-data.mseed 1241${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.be-data.mseed
1163${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.le-data.mseed 1242${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.le-data.mseed
1164${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.be-data.mseed 1243${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.be-data.mseed
1165${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.le-data.mseed 1244${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.le-data.mseed
1166${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/mseed_data_offset_0.mseed 1245${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/mseed_data_offset_0.mseed
1167${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/mseed_no_blkt_1000.mseed 1246${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/mseed_no_blkt_1000.mseed
1168${PYSITELIB}/obspy/io/mseed/tests/data/blockette008.mseed 1247${PYSITELIB}/obspy/io/mseed/tests/data/blockette008.mseed
 1248${PYSITELIB}/obspy/io/mseed/tests/data/blockette300.mseed
 1249${PYSITELIB}/obspy/io/mseed/tests/data/blockette310.mseed
 1250${PYSITELIB}/obspy/io/mseed/tests/data/blockette320.mseed
1169${PYSITELIB}/obspy/io/mseed/tests/data/brokenlastrecord.mseed 1251${PYSITELIB}/obspy/io/mseed/tests/data/brokenlastrecord.mseed
1170${PYSITELIB}/obspy/io/mseed/tests/data/constructedFileToTestReadViaRecords.mseed 1252${PYSITELIB}/obspy/io/mseed/tests/data/constructedFileToTestReadViaRecords.mseed
1171${PYSITELIB}/obspy/io/mseed/tests/data/corrupt_one_extra_byte_at_end.mseed 1253${PYSITELIB}/obspy/io/mseed/tests/data/corrupt_one_extra_byte_at_end.mseed
1172${PYSITELIB}/obspy/io/mseed/tests/data/dataquality-m.mseed 1254${PYSITELIB}/obspy/io/mseed/tests/data/dataquality-m.mseed
1173${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_bigEndian.mseed 1255${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_bigEndian.mseed
1174${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_littleEndian.mseed 1256${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_littleEndian.mseed
1175${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_bigEndian.mseed 1257${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_bigEndian.mseed
1176${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_littleEndian.mseed 1258${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_littleEndian.mseed
1177${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_bigEndian.mseed 1259${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_bigEndian.mseed
1178${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_littleEndian.mseed 1260${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_littleEndian.mseed
1179${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_bigEndian.mseed 1261${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_bigEndian.mseed
1180${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_littleEndian.mseed 1262${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_littleEndian.mseed
1181${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_INT32_bigEndian.mseed 1263${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_INT32_bigEndian.mseed
@@ -1300,42 +1382,59 @@ ${PYSITELIB}/obspy/io/nlloc/tests/test_c @@ -1300,42 +1382,59 @@ ${PYSITELIB}/obspy/io/nlloc/tests/test_c
1300${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyo 1382${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyo
1301${PYSITELIB}/obspy/io/nlloc/tests/test_util.py 1383${PYSITELIB}/obspy/io/nlloc/tests/test_util.py
1302${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyc 1384${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyc
1303${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyo 1385${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyo
1304${PYSITELIB}/obspy/io/nlloc/util.py 1386${PYSITELIB}/obspy/io/nlloc/util.py
1305${PYSITELIB}/obspy/io/nlloc/util.pyc 1387${PYSITELIB}/obspy/io/nlloc/util.pyc
1306${PYSITELIB}/obspy/io/nlloc/util.pyo 1388${PYSITELIB}/obspy/io/nlloc/util.pyo
1307${PYSITELIB}/obspy/io/nordic/__init__.py 1389${PYSITELIB}/obspy/io/nordic/__init__.py
1308${PYSITELIB}/obspy/io/nordic/__init__.pyc 1390${PYSITELIB}/obspy/io/nordic/__init__.pyc
1309${PYSITELIB}/obspy/io/nordic/__init__.pyo 1391${PYSITELIB}/obspy/io/nordic/__init__.pyo
1310${PYSITELIB}/obspy/io/nordic/core.py 1392${PYSITELIB}/obspy/io/nordic/core.py
1311${PYSITELIB}/obspy/io/nordic/core.pyc 1393${PYSITELIB}/obspy/io/nordic/core.pyc
1312${PYSITELIB}/obspy/io/nordic/core.pyo 1394${PYSITELIB}/obspy/io/nordic/core.pyo
 1395${PYSITELIB}/obspy/io/nordic/ellipse.py
 1396${PYSITELIB}/obspy/io/nordic/ellipse.pyc
 1397${PYSITELIB}/obspy/io/nordic/ellipse.pyo
1313${PYSITELIB}/obspy/io/nordic/tests/__init__.py 1398${PYSITELIB}/obspy/io/nordic/tests/__init__.py
1314${PYSITELIB}/obspy/io/nordic/tests/__init__.pyc 1399${PYSITELIB}/obspy/io/nordic/tests/__init__.pyc
1315${PYSITELIB}/obspy/io/nordic/tests/__init__.pyo 1400${PYSITELIB}/obspy/io/nordic/tests/__init__.pyo
1316${PYSITELIB}/obspy/io/nordic/tests/data/01-0411-15L.S201309 1401${PYSITELIB}/obspy/io/nordic/tests/data/01-0411-15L.S201309
1317${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_extra_header 1402${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_extra_header
1318${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_header 1403${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_header
1319${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_location 1404${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_location
1320${PYSITELIB}/obspy/io/nordic/tests/data/automag.out 1405${PYSITELIB}/obspy/io/nordic/tests/data/automag.out
1321${PYSITELIB}/obspy/io/nordic/tests/data/bad_picks.sfile 1406${PYSITELIB}/obspy/io/nordic/tests/data/bad_picks.sfile
 1407${PYSITELIB}/obspy/io/nordic/tests/data/dos-file.sfile
 1408${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse.png
 1409${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse_tangents.png
 1410${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse_tangents_pts.png
 1411${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipses.png
 1412${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipses_tangents.png
1322${PYSITELIB}/obspy/io/nordic/tests/data/round_len_undef.sfile 1413${PYSITELIB}/obspy/io/nordic/tests/data/round_len_undef.sfile
1323${PYSITELIB}/obspy/io/nordic/tests/data/select.out 1414${PYSITELIB}/obspy/io/nordic/tests/data/select.out
 1415${PYSITELIB}/obspy/io/nordic/tests/data/sfile_bad_covariance
 1416${PYSITELIB}/obspy/io/nordic/tests/data/sfile_high_precision_picks
 1417${PYSITELIB}/obspy/io/nordic/tests/data/sfile_highaccuracy
 1418${PYSITELIB}/obspy/io/nordic/tests/data/sfile_long_phase
1324${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day 1419${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day
1325${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day_zeros 1420${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day_zeros
 1421${PYSITELIB}/obspy/io/nordic/tests/data/sfile_seconds_overflow
1326${PYSITELIB}/obspy/io/nordic/tests/test_nordic.py 1422${PYSITELIB}/obspy/io/nordic/tests/test_nordic.py
1327${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyc 1423${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyc
1328${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyo 1424${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyo
 1425${PYSITELIB}/obspy/io/nordic/utils.py
 1426${PYSITELIB}/obspy/io/nordic/utils.pyc
 1427${PYSITELIB}/obspy/io/nordic/utils.pyo
1329${PYSITELIB}/obspy/io/pdas/__init__.py 1428${PYSITELIB}/obspy/io/pdas/__init__.py
1330${PYSITELIB}/obspy/io/pdas/__init__.pyc 1429${PYSITELIB}/obspy/io/pdas/__init__.pyc
1331${PYSITELIB}/obspy/io/pdas/__init__.pyo 1430${PYSITELIB}/obspy/io/pdas/__init__.pyo
1332${PYSITELIB}/obspy/io/pdas/core.py 1431${PYSITELIB}/obspy/io/pdas/core.py
1333${PYSITELIB}/obspy/io/pdas/core.pyc 1432${PYSITELIB}/obspy/io/pdas/core.pyc
1334${PYSITELIB}/obspy/io/pdas/core.pyo 1433${PYSITELIB}/obspy/io/pdas/core.pyo
1335${PYSITELIB}/obspy/io/pdas/tests/__init__.py 1434${PYSITELIB}/obspy/io/pdas/tests/__init__.py
1336${PYSITELIB}/obspy/io/pdas/tests/__init__.pyc 1435${PYSITELIB}/obspy/io/pdas/tests/__init__.pyc
1337${PYSITELIB}/obspy/io/pdas/tests/__init__.pyo 1436${PYSITELIB}/obspy/io/pdas/tests/__init__.pyo
1338${PYSITELIB}/obspy/io/pdas/tests/data/p1246001.108 1437${PYSITELIB}/obspy/io/pdas/tests/data/p1246001.108
1339${PYSITELIB}/obspy/io/pdas/tests/test_core.py 1438${PYSITELIB}/obspy/io/pdas/tests/test_core.py
1340${PYSITELIB}/obspy/io/pdas/tests/test_core.pyc 1439${PYSITELIB}/obspy/io/pdas/tests/test_core.pyc
1341${PYSITELIB}/obspy/io/pdas/tests/test_core.pyo 1440${PYSITELIB}/obspy/io/pdas/tests/test_core.pyo
@@ -1356,26 +1455,28 @@ ${PYSITELIB}/obspy/io/pde/tests/test_mch @@ -1356,26 +1455,28 @@ ${PYSITELIB}/obspy/io/pde/tests/test_mch
1356${PYSITELIB}/obspy/io/quakeml/__init__.py 1455${PYSITELIB}/obspy/io/quakeml/__init__.py
1357${PYSITELIB}/obspy/io/quakeml/__init__.pyc 1456${PYSITELIB}/obspy/io/quakeml/__init__.pyc
1358${PYSITELIB}/obspy/io/quakeml/__init__.pyo 1457${PYSITELIB}/obspy/io/quakeml/__init__.pyo
1359${PYSITELIB}/obspy/io/quakeml/core.py 1458${PYSITELIB}/obspy/io/quakeml/core.py
1360${PYSITELIB}/obspy/io/quakeml/core.pyc 1459${PYSITELIB}/obspy/io/quakeml/core.pyc
1361${PYSITELIB}/obspy/io/quakeml/core.pyo 1460${PYSITELIB}/obspy/io/quakeml/core.pyo
1362${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.rng 1461${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.rng
1363${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.xsd 1462${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.xsd
1364${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.rng 1463${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.rng
1365${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.xsd 1464${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.xsd
1366${PYSITELIB}/obspy/io/quakeml/tests/__init__.py 1465${PYSITELIB}/obspy/io/quakeml/tests/__init__.py
1367${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyc 1466${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyc
1368${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyo 1467${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyo
 1468${PYSITELIB}/obspy/io/quakeml/tests/data/invalid_enum.xml
 1469${PYSITELIB}/obspy/io/quakeml/tests/data/invalid_id.xml
1369${PYSITELIB}/obspy/io/quakeml/tests/data/iris_events.xml 1470${PYSITELIB}/obspy/io/quakeml/tests/data/iris_events.xml
1370${PYSITELIB}/obspy/io/quakeml/tests/data/neries_events.xml 1471${PYSITELIB}/obspy/io/quakeml/tests/data/neries_events.xml
1371${PYSITELIB}/obspy/io/quakeml/tests/data/preferred.xml 1472${PYSITELIB}/obspy/io/quakeml/tests/data/preferred.xml
1372${PYSITELIB}/obspy/io/quakeml/tests/data/qml-example-1.2-RC3.xml 1473${PYSITELIB}/obspy/io/quakeml/tests/data/qml-example-1.2-RC3.xml
1373${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_arrival.xml 1474${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_arrival.xml
1374${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_data_used.xml 1475${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_data_used.xml
1375${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_event.xml 1476${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_event.xml
1376${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_focalmechanism.xml 1477${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_focalmechanism.xml
1377${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_magnitude.xml 1478${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_magnitude.xml
1378${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_origin.xml 1479${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_origin.xml
1379${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_pick.xml 1480${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_pick.xml
1380${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitude.xml 1481${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitude.xml
1381${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitudecontributions.xml 1482${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitudecontributions.xml
@@ -1391,34 +1492,56 @@ ${PYSITELIB}/obspy/io/reftek/core.pyc @@ -1391,34 +1492,56 @@ ${PYSITELIB}/obspy/io/reftek/core.pyc
1391${PYSITELIB}/obspy/io/reftek/core.pyo 1492${PYSITELIB}/obspy/io/reftek/core.pyo
1392${PYSITELIB}/obspy/io/reftek/packet.py 1493${PYSITELIB}/obspy/io/reftek/packet.py
1393${PYSITELIB}/obspy/io/reftek/packet.pyc 1494${PYSITELIB}/obspy/io/reftek/packet.pyc
1394${PYSITELIB}/obspy/io/reftek/packet.pyo 1495${PYSITELIB}/obspy/io/reftek/packet.pyo
1395${PYSITELIB}/obspy/io/reftek/tests/__init__.py 1496${PYSITELIB}/obspy/io/reftek/tests/__init__.py
1396${PYSITELIB}/obspy/io/reftek/tests/__init__.pyc 1497${PYSITELIB}/obspy/io/reftek/tests/__init__.pyc
1397${PYSITELIB}/obspy/io/reftek/tests/__init__.pyo 1498${PYSITELIB}/obspy/io/reftek/tests/__init__.pyo
1398${PYSITELIB}/obspy/io/reftek/tests/data/104800000_000093F8 1499${PYSITELIB}/obspy/io/reftek/tests/data/104800000_000093F8
1399${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_1.msd 1500${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_1.msd
1400${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_2.msd 1501${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_2.msd
1401${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_3.msd 1502${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_3.msd
1402${PYSITELIB}/obspy/io/reftek/tests/data/221935615_00000000 1503${PYSITELIB}/obspy/io/reftek/tests/data/221935615_00000000
1403${PYSITELIB}/obspy/io/reftek/tests/data/225051000_00008656 1504${PYSITELIB}/obspy/io/reftek/tests/data/225051000_00008656
 1505${PYSITELIB}/obspy/io/reftek/tests/data/230000005_0036EE80_cropped.npz
 1506${PYSITELIB}/obspy/io/reftek/tests/data/230000005_0036EE80_cropped.rt130
1404${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim1.npy 1507${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim1.npy
1405${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim2.npy 1508${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim2.npy
1406${PYSITELIB}/obspy/io/reftek/tests/test_core.py 1509${PYSITELIB}/obspy/io/reftek/tests/test_core.py
1407${PYSITELIB}/obspy/io/reftek/tests/test_core.pyc 1510${PYSITELIB}/obspy/io/reftek/tests/test_core.pyc
1408${PYSITELIB}/obspy/io/reftek/tests/test_core.pyo 1511${PYSITELIB}/obspy/io/reftek/tests/test_core.pyo
1409${PYSITELIB}/obspy/io/reftek/util.py 1512${PYSITELIB}/obspy/io/reftek/util.py
1410${PYSITELIB}/obspy/io/reftek/util.pyc 1513${PYSITELIB}/obspy/io/reftek/util.pyc
1411${PYSITELIB}/obspy/io/reftek/util.pyo 1514${PYSITELIB}/obspy/io/reftek/util.pyo
 1515${PYSITELIB}/obspy/io/rg16/__init__.py
 1516${PYSITELIB}/obspy/io/rg16/__init__.pyc
 1517${PYSITELIB}/obspy/io/rg16/__init__.pyo
 1518${PYSITELIB}/obspy/io/rg16/core.py
 1519${PYSITELIB}/obspy/io/rg16/core.pyc
 1520${PYSITELIB}/obspy/io/rg16/core.pyo
 1521${PYSITELIB}/obspy/io/rg16/tests/__init__.py
 1522${PYSITELIB}/obspy/io/rg16/tests/__init__.pyc
 1523${PYSITELIB}/obspy/io/rg16/tests/__init__.pyo
 1524${PYSITELIB}/obspy/io/rg16/tests/data/one_channel_many_traces.fcnt
 1525${PYSITELIB}/obspy/io/rg16/tests/data/three_chans_six_traces.fcnt
 1526${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.py
 1527${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.pyc
 1528${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.pyo
 1529${PYSITELIB}/obspy/io/rg16/tests/test_util.py
 1530${PYSITELIB}/obspy/io/rg16/tests/test_util.pyc
 1531${PYSITELIB}/obspy/io/rg16/tests/test_util.pyo
 1532${PYSITELIB}/obspy/io/rg16/util.py
 1533${PYSITELIB}/obspy/io/rg16/util.pyc
 1534${PYSITELIB}/obspy/io/rg16/util.pyo
1412${PYSITELIB}/obspy/io/sac/README.txt 1535${PYSITELIB}/obspy/io/sac/README.txt
1413${PYSITELIB}/obspy/io/sac/__init__.py 1536${PYSITELIB}/obspy/io/sac/__init__.py
1414${PYSITELIB}/obspy/io/sac/__init__.pyc 1537${PYSITELIB}/obspy/io/sac/__init__.pyc
1415${PYSITELIB}/obspy/io/sac/__init__.pyo 1538${PYSITELIB}/obspy/io/sac/__init__.pyo
1416${PYSITELIB}/obspy/io/sac/arrayio.py 1539${PYSITELIB}/obspy/io/sac/arrayio.py
1417${PYSITELIB}/obspy/io/sac/arrayio.pyc 1540${PYSITELIB}/obspy/io/sac/arrayio.pyc
1418${PYSITELIB}/obspy/io/sac/arrayio.pyo 1541${PYSITELIB}/obspy/io/sac/arrayio.pyo
1419${PYSITELIB}/obspy/io/sac/core.py 1542${PYSITELIB}/obspy/io/sac/core.py
1420${PYSITELIB}/obspy/io/sac/core.pyc 1543${PYSITELIB}/obspy/io/sac/core.pyc
1421${PYSITELIB}/obspy/io/sac/core.pyo 1544${PYSITELIB}/obspy/io/sac/core.pyo
1422${PYSITELIB}/obspy/io/sac/header.py 1545${PYSITELIB}/obspy/io/sac/header.py
1423${PYSITELIB}/obspy/io/sac/header.pyc 1546${PYSITELIB}/obspy/io/sac/header.pyc
1424${PYSITELIB}/obspy/io/sac/header.pyo 1547${PYSITELIB}/obspy/io/sac/header.pyo
@@ -1483,26 +1606,28 @@ ${PYSITELIB}/obspy/io/seg2/__init__.py @@ -1483,26 +1606,28 @@ ${PYSITELIB}/obspy/io/seg2/__init__.py
1483${PYSITELIB}/obspy/io/seg2/__init__.pyc 1606${PYSITELIB}/obspy/io/seg2/__init__.pyc
1484${PYSITELIB}/obspy/io/seg2/__init__.pyo 1607${PYSITELIB}/obspy/io/seg2/__init__.pyo
1485${PYSITELIB}/obspy/io/seg2/header.py 1608${PYSITELIB}/obspy/io/seg2/header.py
1486${PYSITELIB}/obspy/io/seg2/header.pyc 1609${PYSITELIB}/obspy/io/seg2/header.pyc
1487${PYSITELIB}/obspy/io/seg2/header.pyo 1610${PYSITELIB}/obspy/io/seg2/header.pyo
1488${PYSITELIB}/obspy/io/seg2/seg2.py 1611${PYSITELIB}/obspy/io/seg2/seg2.py
1489${PYSITELIB}/obspy/io/seg2/seg2.pyc 1612${PYSITELIB}/obspy/io/seg2/seg2.pyc
1490${PYSITELIB}/obspy/io/seg2/seg2.pyo 1613${PYSITELIB}/obspy/io/seg2/seg2.pyo
1491${PYSITELIB}/obspy/io/seg2/tests/__init__.py 1614${PYSITELIB}/obspy/io/seg2/tests/__init__.py
1492${PYSITELIB}/obspy/io/seg2/tests/__init__.pyc 1615${PYSITELIB}/obspy/io/seg2/tests/__init__.pyc
1493${PYSITELIB}/obspy/io/seg2/tests/__init__.pyo 1616${PYSITELIB}/obspy/io/seg2/tests/__init__.pyo
1494${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.DAT.gz 1617${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.DAT.gz
1495${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.seg2.gz 1618${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.seg2.gz
 1619${PYSITELIB}/obspy/io/seg2/tests/data/20180307_031245000.0.DAT.gz
 1620${PYSITELIB}/obspy/io/seg2/tests/data/20180307_031245000.0.seg2
1496${PYSITELIB}/obspy/io/seg2/tests/test_seg2.py 1621${PYSITELIB}/obspy/io/seg2/tests/test_seg2.py
1497${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyc 1622${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyc
1498${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyo 1623${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyo
1499${PYSITELIB}/obspy/io/segy/README.txt 1624${PYSITELIB}/obspy/io/segy/README.txt
1500${PYSITELIB}/obspy/io/segy/__init__.py 1625${PYSITELIB}/obspy/io/segy/__init__.py
1501${PYSITELIB}/obspy/io/segy/__init__.pyc 1626${PYSITELIB}/obspy/io/segy/__init__.pyc
1502${PYSITELIB}/obspy/io/segy/__init__.pyo 1627${PYSITELIB}/obspy/io/segy/__init__.pyo
1503${PYSITELIB}/obspy/io/segy/core.py 1628${PYSITELIB}/obspy/io/segy/core.py
1504${PYSITELIB}/obspy/io/segy/core.pyc 1629${PYSITELIB}/obspy/io/segy/core.pyc
1505${PYSITELIB}/obspy/io/segy/core.pyo 1630${PYSITELIB}/obspy/io/segy/core.pyo
1506${PYSITELIB}/obspy/io/segy/header.py 1631${PYSITELIB}/obspy/io/segy/header.py
1507${PYSITELIB}/obspy/io/segy/header.pyc 1632${PYSITELIB}/obspy/io/segy/header.pyc
1508${PYSITELIB}/obspy/io/segy/header.pyo 1633${PYSITELIB}/obspy/io/segy/header.pyo
@@ -1570,118 +1695,137 @@ ${PYSITELIB}/obspy/io/seisan/tests/data/ @@ -1570,118 +1695,137 @@ ${PYSITELIB}/obspy/io/seisan/tests/data/
1570${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1 1695${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1
1571${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1.ascii 1696${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1.ascii
1572${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203 1697${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203
1573${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203.mseed 1698${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203.mseed
1574${PYSITELIB}/obspy/io/seisan/tests/test_core.py 1699${PYSITELIB}/obspy/io/seisan/tests/test_core.py
1575${PYSITELIB}/obspy/io/seisan/tests/test_core.pyc 1700${PYSITELIB}/obspy/io/seisan/tests/test_core.pyc
1576${PYSITELIB}/obspy/io/seisan/tests/test_core.pyo 1701${PYSITELIB}/obspy/io/seisan/tests/test_core.pyo
1577${PYSITELIB}/obspy/io/seiscomp/__init__.py 1702${PYSITELIB}/obspy/io/seiscomp/__init__.py
1578${PYSITELIB}/obspy/io/seiscomp/__init__.pyc 1703${PYSITELIB}/obspy/io/seiscomp/__init__.pyc
1579${PYSITELIB}/obspy/io/seiscomp/__init__.pyo 1704${PYSITELIB}/obspy/io/seiscomp/__init__.pyo
1580${PYSITELIB}/obspy/io/seiscomp/core.py 1705${PYSITELIB}/obspy/io/seiscomp/core.py
1581${PYSITELIB}/obspy/io/seiscomp/core.pyc 1706${PYSITELIB}/obspy/io/seiscomp/core.pyc
1582${PYSITELIB}/obspy/io/seiscomp/core.pyo 1707${PYSITELIB}/obspy/io/seiscomp/core.pyo
1583${PYSITELIB}/obspy/io/seiscomp/data/quakeml_1.2__sc3ml_0.9.xsl 1708${PYSITELIB}/obspy/io/seiscomp/data/quakeml_1.2__sc3ml_0.10.xsl
1584${PYSITELIB}/obspy/io/seiscomp/data/quakeml_types.xsd 1709${PYSITELIB}/obspy/io/seiscomp/data/quakeml_types.xsd
 1710${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.10.xsd
 1711${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.10__quakeml_1.2.xsl
1585${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.3.xsd 1712${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.3.xsd
1586${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5.xsd 1713${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5.xsd
1587${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5__quakeml_1.2.xsl 1714${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5__quakeml_1.2.xsl
1588${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6.xsd 1715${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6.xsd
1589${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6__quakeml_1.2.xsl 1716${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6__quakeml_1.2.xsl
1590${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7.xsd 1717${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7.xsd
1591${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7__quakeml_1.2.xsl 1718${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7__quakeml_1.2.xsl
1592${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8.xsd 1719${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8.xsd
1593${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8__quakeml_1.2.xsl 1720${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8__quakeml_1.2.xsl
1594${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9.xsd 1721${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9.xsd
1595${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9__quakeml_1.2.xsl 1722${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9__quakeml_1.2.xsl
1596${PYSITELIB}/obspy/io/seiscomp/event.py 1723${PYSITELIB}/obspy/io/seiscomp/event.py
1597${PYSITELIB}/obspy/io/seiscomp/event.pyc 1724${PYSITELIB}/obspy/io/seiscomp/event.pyc
1598${PYSITELIB}/obspy/io/seiscomp/event.pyo 1725${PYSITELIB}/obspy/io/seiscomp/event.pyo
1599${PYSITELIB}/obspy/io/seiscomp/inventory.py 1726${PYSITELIB}/obspy/io/seiscomp/inventory.py
1600${PYSITELIB}/obspy/io/seiscomp/inventory.pyc 1727${PYSITELIB}/obspy/io/seiscomp/inventory.pyc
1601${PYSITELIB}/obspy/io/seiscomp/inventory.pyo 1728${PYSITELIB}/obspy/io/seiscomp/inventory.pyo
1602${PYSITELIB}/obspy/io/seiscomp/tests/__init__.py 1729${PYSITELIB}/obspy/io/seiscomp/tests/__init__.py
1603${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyc 1730${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyc
1604${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyo 1731${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyo
1605${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_sc3ml 1732${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_sc3ml
1606${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_stationXML 1733${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_stationXML
1607${PYSITELIB}/obspy/io/seiscomp/tests/data/channel_level.sc3ml 1734${PYSITELIB}/obspy/io/seiscomp/tests/data/channel_level.sc3ml
 1735${PYSITELIB}/obspy/io/seiscomp/tests/data/field_sc3ml0.10.sc3ml
 1736${PYSITELIB}/obspy/io/seiscomp/tests/data/field_sc3ml0.10_res.xml
1608${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events.sc3ml 1737${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events.sc3ml
1609${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events_res.xml 1738${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events_res.xml
1610${PYSITELIB}/obspy/io/seiscomp/tests/data/no_version_attribute.sc3ml 1739${PYSITELIB}/obspy/io/seiscomp/tests/data/no_version_attribute.sc3ml
1611${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.sc3ml 1740${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.sc3ml
1612${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.xml 1741${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.xml
1613${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_no_events.sc3ml 1742${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_no_events.sc3ml
1614${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_write.sc3ml 1743${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_write.sc3ml
1615${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_wrong_id.sc3ml 1744${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_wrong_id.sc3ml
 1745${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_amplitude.sc3ml
 1746${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_amplitude_res.xml
1616${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival.sc3ml 1747${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival.sc3ml
1617${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival_res.xml 1748${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival.xml
 1749${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival_res.sc3ml
1618${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.sc3ml 1750${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.sc3ml
1619${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.xml 1751${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.xml
1620${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event.sc3ml 1752${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event.sc3ml
1621${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event_res.xml 1753${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event_res.xml
1622${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism.sc3ml 1754${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism.sc3ml
1623${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism_res.xml 1755${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism_res.xml
1624${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.sc3ml 1756${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.sc3ml
1625${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.xml 1757${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.xml
1626${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin.sc3ml 1758${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin.sc3ml
1627${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin_res.xml 1759${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin_res.xml
1628${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.sc3ml 1760${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.sc3ml
1629${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.xml 1761${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.xml
1630${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.sc3ml 1762${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.sc3ml
1631${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.xml 1763${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.xml
1632${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.sc3ml 1764${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.sc3ml
1633${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.xml 1765${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.xml
1634${PYSITELIB}/obspy/io/seiscomp/tests/data/sc3ml_empty_depth_and_id.sc3ml 1766${PYSITELIB}/obspy/io/seiscomp/tests/data/sc3ml_empty_depth_and_id.sc3ml
1635${PYSITELIB}/obspy/io/seiscomp/tests/data/usgs_event.sc3ml 1767${PYSITELIB}/obspy/io/seiscomp/tests/data/usgs_event.sc3ml
1636${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.10 1768${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.10
 1769${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.11
1637${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.3 1770${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.3
1638${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.5 1771${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.5
1639${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.6 1772${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.6
1640${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.7 1773${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.7
1641${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.8 1774${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.8
1642${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.9 1775${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.9
 1776${PYSITELIB}/obspy/io/seiscomp/tests/data/zero_poles_and_zeros.sc3ml
1643${PYSITELIB}/obspy/io/seiscomp/tests/test_core.py 1777${PYSITELIB}/obspy/io/seiscomp/tests/test_core.py
1644${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyc 1778${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyc
1645${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyo 1779${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyo
1646${PYSITELIB}/obspy/io/seiscomp/tests/test_event.py 1780${PYSITELIB}/obspy/io/seiscomp/tests/test_event.py
1647${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyc 1781${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyc
1648${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyo 1782${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyo
1649${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.py 1783${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.py
1650${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.pyc 1784${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.pyc
1651${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.pyo 1785${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.pyo
1652${PYSITELIB}/obspy/io/sh/README.txt 1786${PYSITELIB}/obspy/io/sh/README.txt
1653${PYSITELIB}/obspy/io/sh/__init__.py 1787${PYSITELIB}/obspy/io/sh/__init__.py
1654${PYSITELIB}/obspy/io/sh/__init__.pyc 1788${PYSITELIB}/obspy/io/sh/__init__.pyc
1655${PYSITELIB}/obspy/io/sh/__init__.pyo 1789${PYSITELIB}/obspy/io/sh/__init__.pyo
1656${PYSITELIB}/obspy/io/sh/core.py 1790${PYSITELIB}/obspy/io/sh/core.py
1657${PYSITELIB}/obspy/io/sh/core.pyc 1791${PYSITELIB}/obspy/io/sh/core.pyc
1658${PYSITELIB}/obspy/io/sh/core.pyo 1792${PYSITELIB}/obspy/io/sh/core.pyo
 1793${PYSITELIB}/obspy/io/sh/evt.py
 1794${PYSITELIB}/obspy/io/sh/evt.pyc
 1795${PYSITELIB}/obspy/io/sh/evt.pyo
1659${PYSITELIB}/obspy/io/sh/tests/__init__.py 1796${PYSITELIB}/obspy/io/sh/tests/__init__.py
1660${PYSITELIB}/obspy/io/sh/tests/__init__.pyc 1797${PYSITELIB}/obspy/io/sh/tests/__init__.pyc
1661${PYSITELIB}/obspy/io/sh/tests/__init__.pyo 1798${PYSITELIB}/obspy/io/sh/tests/__init__.pyo
1662${PYSITELIB}/obspy/io/sh/tests/data/101.QBN 1799${PYSITELIB}/obspy/io/sh/tests/data/101.QBN
1663${PYSITELIB}/obspy/io/sh/tests/data/101.QHD 1800${PYSITELIB}/obspy/io/sh/tests/data/101.QHD
1664${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-ASC.ASC 1801${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-ASC.ASC
1665${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QBN 1802${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QBN
1666${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QHD 1803${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QHD
1667${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QBN 1804${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QBN
1668${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QHD 1805${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QHD
1669${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.ASC 1806${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.ASC
1670${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QBN 1807${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QBN
1671${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QHD 1808${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QHD
 1809${PYSITELIB}/obspy/io/sh/tests/data/local1.evt
 1810${PYSITELIB}/obspy/io/sh/tests/data/local2.evt
 1811${PYSITELIB}/obspy/io/sh/tests/data/tele1.evt
 1812${PYSITELIB}/obspy/io/sh/tests/data/tele2.evt
1672${PYSITELIB}/obspy/io/sh/tests/test_core.py 1813${PYSITELIB}/obspy/io/sh/tests/test_core.py
1673${PYSITELIB}/obspy/io/sh/tests/test_core.pyc 1814${PYSITELIB}/obspy/io/sh/tests/test_core.pyc
1674${PYSITELIB}/obspy/io/sh/tests/test_core.pyo 1815${PYSITELIB}/obspy/io/sh/tests/test_core.pyo
 1816${PYSITELIB}/obspy/io/sh/tests/test_evt.py
 1817${PYSITELIB}/obspy/io/sh/tests/test_evt.pyc
 1818${PYSITELIB}/obspy/io/sh/tests/test_evt.pyo
1675${PYSITELIB}/obspy/io/shapefile/__init__.py 1819${PYSITELIB}/obspy/io/shapefile/__init__.py
1676${PYSITELIB}/obspy/io/shapefile/__init__.pyc 1820${PYSITELIB}/obspy/io/shapefile/__init__.pyc
1677${PYSITELIB}/obspy/io/shapefile/__init__.pyo 1821${PYSITELIB}/obspy/io/shapefile/__init__.pyo
1678${PYSITELIB}/obspy/io/shapefile/core.py 1822${PYSITELIB}/obspy/io/shapefile/core.py
1679${PYSITELIB}/obspy/io/shapefile/core.pyc 1823${PYSITELIB}/obspy/io/shapefile/core.pyc
1680${PYSITELIB}/obspy/io/shapefile/core.pyo 1824${PYSITELIB}/obspy/io/shapefile/core.pyo
1681${PYSITELIB}/obspy/io/shapefile/tests/__init__.py 1825${PYSITELIB}/obspy/io/shapefile/tests/__init__.py
1682${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyc 1826${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyc
1683${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyo 1827${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyo
1684${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.dbf 1828${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.dbf
1685${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.prj 1829${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.prj
1686${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shp 1830${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shp
1687${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shx 1831${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shx
@@ -1714,40 +1858,43 @@ ${PYSITELIB}/obspy/io/stationtxt/tests/d @@ -1714,40 +1858,43 @@ ${PYSITELIB}/obspy/io/stationtxt/tests/d
1714${PYSITELIB}/obspy/io/stationtxt/tests/data/unicode_example_fdsn.txt 1858${PYSITELIB}/obspy/io/stationtxt/tests/data/unicode_example_fdsn.txt
1715${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.py 1859${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.py
1716${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyc 1860${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyc
1717${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyo 1861${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyo
1718${PYSITELIB}/obspy/io/stationxml/__init__.py 1862${PYSITELIB}/obspy/io/stationxml/__init__.py
1719${PYSITELIB}/obspy/io/stationxml/__init__.pyc 1863${PYSITELIB}/obspy/io/stationxml/__init__.pyc
1720${PYSITELIB}/obspy/io/stationxml/__init__.pyo 1864${PYSITELIB}/obspy/io/stationxml/__init__.pyo
1721${PYSITELIB}/obspy/io/stationxml/core.py 1865${PYSITELIB}/obspy/io/stationxml/core.py
1722${PYSITELIB}/obspy/io/stationxml/core.pyc 1866${PYSITELIB}/obspy/io/stationxml/core.pyc
1723${PYSITELIB}/obspy/io/stationxml/core.pyo 1867${PYSITELIB}/obspy/io/stationxml/core.pyo
1724${PYSITELIB}/obspy/io/stationxml/data/Variations-FDSNSXML-SEED.txt 1868${PYSITELIB}/obspy/io/stationxml/data/Variations-FDSNSXML-SEED.txt
1725${PYSITELIB}/obspy/io/stationxml/data/fdsn-station+availability-1.0.xsd 1869${PYSITELIB}/obspy/io/stationxml/data/fdsn-station+availability-1.0.xsd
1726${PYSITELIB}/obspy/io/stationxml/data/fdsn-station-1.0.xsd 1870${PYSITELIB}/obspy/io/stationxml/data/fdsn-station-1.0.xsd
 1871${PYSITELIB}/obspy/io/stationxml/data/fdsn-station-1.1.xsd
1727${PYSITELIB}/obspy/io/stationxml/tests/__init__.py 1872${PYSITELIB}/obspy/io/stationxml/tests/__init__.py
1728${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyc 1873${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyc
1729${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyo 1874${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyo
1730${PYSITELIB}/obspy/io/stationxml/tests/data/IRIS_single_channel_with_response.xml 1875${PYSITELIB}/obspy/io/stationxml/tests/data/IRIS_single_channel_with_response.xml
1731${PYSITELIB}/obspy/io/stationxml/tests/data/IRIS_single_channel_with_response_custom_tags.xml 1876${PYSITELIB}/obspy/io/stationxml/tests/data/IRIS_single_channel_with_response_custom_tags.xml
1732${PYSITELIB}/obspy/io/stationxml/tests/data/channel_without_coordinates.xml 1877${PYSITELIB}/obspy/io/stationxml/tests/data/channel_without_coordinates.xml
1733${PYSITELIB}/obspy/io/stationxml/tests/data/empty_channel.xml 1878${PYSITELIB}/obspy/io/stationxml/tests/data/empty_channel.xml
1734${PYSITELIB}/obspy/io/stationxml/tests/data/full_network_field_station.xml 1879${PYSITELIB}/obspy/io/stationxml/tests/data/full_network_field_station.xml
1735${PYSITELIB}/obspy/io/stationxml/tests/data/full_random_stationxml.xml 1880${PYSITELIB}/obspy/io/stationxml/tests/data/full_random_stationxml.xml
 1881${PYSITELIB}/obspy/io/stationxml/tests/data/full_random_stationxml_1_0.xml
1736${PYSITELIB}/obspy/io/stationxml/tests/data/full_station_field_station.xml 1882${PYSITELIB}/obspy/io/stationxml/tests/data/full_station_field_station.xml
1737${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_station.xml 1883${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_station.xml
1738${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_station_with_microseconds.xml 1884${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_station_with_microseconds.xml
1739${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_with_non_obspy_module_and_sender_tags_station.xml 1885${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_with_non_obspy_module_and_sender_tags_station.xml
1740${PYSITELIB}/obspy/io/stationxml/tests/data/no_default_namespace.xml 1886${PYSITELIB}/obspy/io/stationxml/tests/data/no_default_namespace.xml
 1887${PYSITELIB}/obspy/io/stationxml/tests/data/only_soh.xml
1741${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_BK.CMB.__.LKS.xml 1888${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_BK.CMB.__.LKS.xml
1742${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_IU.ANTO.30.LDO.xml 1889${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_IU.ANTO.30.LDO.xml
1743${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_with_availability.xml 1890${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_with_availability.xml
1744${PYSITELIB}/obspy/io/stationxml/tests/data/version20.xml 1891${PYSITELIB}/obspy/io/stationxml/tests/data/version20.xml
1745${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.py 1892${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.py
1746${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyc 1893${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyc
1747${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyo 1894${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyo
1748${PYSITELIB}/obspy/io/wav/README.txt 1895${PYSITELIB}/obspy/io/wav/README.txt
1749${PYSITELIB}/obspy/io/wav/__init__.py 1896${PYSITELIB}/obspy/io/wav/__init__.py
1750${PYSITELIB}/obspy/io/wav/__init__.pyc 1897${PYSITELIB}/obspy/io/wav/__init__.pyc
1751${PYSITELIB}/obspy/io/wav/__init__.pyo 1898${PYSITELIB}/obspy/io/wav/__init__.pyo
1752${PYSITELIB}/obspy/io/wav/core.py 1899${PYSITELIB}/obspy/io/wav/core.py
1753${PYSITELIB}/obspy/io/wav/core.pyc 1900${PYSITELIB}/obspy/io/wav/core.pyc
@@ -1949,26 +2096,27 @@ ${PYSITELIB}/obspy/io/xseed/tests/data/R @@ -1949,26 +2096,27 @@ ${PYSITELIB}/obspy/io/xseed/tests/data/R
1949${PYSITELIB}/obspy/io/xseed/tests/data/RESP.repeated_stage_0 2096${PYSITELIB}/obspy/io/xseed/tests/data/RESP.repeated_stage_0
1950${PYSITELIB}/obspy/io/xseed/tests/data/RESP.strain_meter 2097${PYSITELIB}/obspy/io/xseed/tests/data/RESP.strain_meter
1951${PYSITELIB}/obspy/io/xseed/tests/data/UP_BACU_HH.dataless 2098${PYSITELIB}/obspy/io/xseed/tests/data/UP_BACU_HH.dataless
1952${PYSITELIB}/obspy/io/xseed/tests/data/arclink_full.seed 2099${PYSITELIB}/obspy/io/xseed/tests/data/arclink_full.seed
1953${PYSITELIB}/obspy/io/xseed/tests/data/bug165.dataless 2100${PYSITELIB}/obspy/io/xseed/tests/data/bug165.dataless
1954${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_DHFO 2101${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_DHFO
1955${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT 2102${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT
1956${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT.xml 2103${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT.xml
1957${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_MANZ 2104${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_MANZ
1958${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_RJOB 2105${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_RJOB
1959${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ROTZ 2106${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ROTZ
1960${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ZUGS 2107${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ZUGS
1961${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.II_COCO 2108${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.II_COCO
 2109${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.newline_between_blockettes
1962${PYSITELIB}/obspy/io/xseed/tests/data/nied.dataless.gz 2110${PYSITELIB}/obspy/io/xseed/tests/data/nied.dataless.gz
1963${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.0.xsd 2111${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.0.xsd
1964${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.1.xsd 2112${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.1.xsd
1965${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.py 2113${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.py
1966${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyc 2114${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyc
1967${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyo 2115${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyo
1968${PYSITELIB}/obspy/io/xseed/tests/test_core.py 2116${PYSITELIB}/obspy/io/xseed/tests/test_core.py
1969${PYSITELIB}/obspy/io/xseed/tests/test_core.pyc 2117${PYSITELIB}/obspy/io/xseed/tests/test_core.pyc
1970${PYSITELIB}/obspy/io/xseed/tests/test_core.pyo 2118${PYSITELIB}/obspy/io/xseed/tests/test_core.pyo
1971${PYSITELIB}/obspy/io/xseed/tests/test_fields.py 2119${PYSITELIB}/obspy/io/xseed/tests/test_fields.py
1972${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyc 2120${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyc
1973${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyo 2121${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyo
1974${PYSITELIB}/obspy/io/xseed/tests/test_parser.py 2122${PYSITELIB}/obspy/io/xseed/tests/test_parser.py
@@ -2039,26 +2187,29 @@ ${PYSITELIB}/obspy/realtime/signal.pyo @@ -2039,26 +2187,29 @@ ${PYSITELIB}/obspy/realtime/signal.pyo
2039${PYSITELIB}/obspy/realtime/tests/__init__.py 2187${PYSITELIB}/obspy/realtime/tests/__init__.py
2040${PYSITELIB}/obspy/realtime/tests/__init__.pyc 2188${PYSITELIB}/obspy/realtime/tests/__init__.pyc
2041${PYSITELIB}/obspy/realtime/tests/__init__.pyo 2189${PYSITELIB}/obspy/realtime/tests/__init__.pyo
2042${PYSITELIB}/obspy/realtime/tests/data/II.TLY.BHZ.SAC 2190${PYSITELIB}/obspy/realtime/tests/data/II.TLY.BHZ.SAC
2043${PYSITELIB}/obspy/realtime/tests/test_rttrace.py 2191${PYSITELIB}/obspy/realtime/tests/test_rttrace.py
2044${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyc 2192${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyc
2045${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyo 2193${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyo
2046${PYSITELIB}/obspy/realtime/tests/test_signal.py 2194${PYSITELIB}/obspy/realtime/tests/test_signal.py
2047${PYSITELIB}/obspy/realtime/tests/test_signal.pyc 2195${PYSITELIB}/obspy/realtime/tests/test_signal.pyc
2048${PYSITELIB}/obspy/realtime/tests/test_signal.pyo 2196${PYSITELIB}/obspy/realtime/tests/test_signal.pyo
2049${PYSITELIB}/obspy/scripts/__init__.py 2197${PYSITELIB}/obspy/scripts/__init__.py
2050${PYSITELIB}/obspy/scripts/__init__.pyc 2198${PYSITELIB}/obspy/scripts/__init__.pyc
2051${PYSITELIB}/obspy/scripts/__init__.pyo 2199${PYSITELIB}/obspy/scripts/__init__.pyo
 2200${PYSITELIB}/obspy/scripts/_print.py
 2201${PYSITELIB}/obspy/scripts/_print.pyc
 2202${PYSITELIB}/obspy/scripts/_print.pyo
2052${PYSITELIB}/obspy/scripts/flinnengdahl.py 2203${PYSITELIB}/obspy/scripts/flinnengdahl.py
2053${PYSITELIB}/obspy/scripts/flinnengdahl.pyc 2204${PYSITELIB}/obspy/scripts/flinnengdahl.pyc
2054${PYSITELIB}/obspy/scripts/flinnengdahl.pyo 2205${PYSITELIB}/obspy/scripts/flinnengdahl.pyo
2055${PYSITELIB}/obspy/scripts/print.py 2206${PYSITELIB}/obspy/scripts/print.py
2056${PYSITELIB}/obspy/scripts/print.pyc 2207${PYSITELIB}/obspy/scripts/print.pyc
2057${PYSITELIB}/obspy/scripts/print.pyo 2208${PYSITELIB}/obspy/scripts/print.pyo
2058${PYSITELIB}/obspy/scripts/reftekrescue.py 2209${PYSITELIB}/obspy/scripts/reftekrescue.py
2059${PYSITELIB}/obspy/scripts/reftekrescue.pyc 2210${PYSITELIB}/obspy/scripts/reftekrescue.pyc
2060${PYSITELIB}/obspy/scripts/reftekrescue.pyo 2211${PYSITELIB}/obspy/scripts/reftekrescue.pyo
2061${PYSITELIB}/obspy/scripts/runtests.py 2212${PYSITELIB}/obspy/scripts/runtests.py
2062${PYSITELIB}/obspy/scripts/runtests.pyc 2213${PYSITELIB}/obspy/scripts/runtests.pyc
2063${PYSITELIB}/obspy/scripts/runtests.pyo 2214${PYSITELIB}/obspy/scripts/runtests.pyo
2064${PYSITELIB}/obspy/scripts/sds_html_report.py 2215${PYSITELIB}/obspy/scripts/sds_html_report.py

cvs diff -r1.7 -r1.8 pkgsrc/geography/py-obspy/distinfo (expand / switch to unified diff)

--- pkgsrc/geography/py-obspy/distinfo 2019/03/16 23:12:54 1.7
+++ pkgsrc/geography/py-obspy/distinfo 2021/01/02 10:06:04 1.8
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.7 2019/03/16 23:12:54 wen Exp $ 1$NetBSD: distinfo,v 1.8 2021/01/02 10:06:04 mef Exp $
2 2
3SHA1 (obspy-1.1.1.zip) = 793fca0f5e3f208e47ebc45b39dd2a6420ef9cd3 3SHA1 (obspy-1.2.2.zip) = 7f6cf7fa83e7af71100d7d20942e05c6b1f2a371
4RMD160 (obspy-1.1.1.zip) = cd76096491c5d0626d0890850b70614a30a20674 4RMD160 (obspy-1.2.2.zip) = d81a2a6f1e222b9f4fd4427e2fbc547cf44fef0c
5SHA512 (obspy-1.1.1.zip) = 27cb165084b3b0fd9db2312ace8b7f1986c83e1aa4c3630071c7cbc17470404de2b15e2cedaeb0d175599a8ee0f61bc1638d58ff7a66ef457095a18b649d9a6b 5SHA512 (obspy-1.2.2.zip) = ab621d7de945592f5bf4c8001f9aeb92dc09f6cbc5622d47b8eefeb804098cc71959ef4416ae679c36100fe008e2663b785d34fd0ebb9df084801e44ea08c458
6Size (obspy-1.1.1.zip) = 23905234 bytes 6Size (obspy-1.2.2.zip) = 24684267 bytes