pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/geography/py-obspy



Module Name:    pkgsrc
Committed By:   wen
Date:           Sat Jul 16 04:11:55 UTC 2016

Modified Files:
        pkgsrc/geography/py-obspy: Makefile PLIST distinfo

Log Message:
Update to 1.0.1
Update DEPENDS

Upstream changes:
1.0.1: (doi: 10.5281/zenodo.48254)
 - General:
   * Some methods might have unnecessarily upcasted float32 arrays to float64.
     Now methods for which it makes sense and which don't lose accuracy don't
     upcast float32 arrays. Integers are still upcasted. Trace.resample() will
     also no longer return the original dtype which might have resulted in a
     large loss of accuracy but it now always returns float64 arrays.
     (see #1302)
 - obspy.core:
   * Trace.normalize() does no longer divide by zero in case an all-zeros
     data trace is being used. (see #1343)
   * Inventory.select() and consorts now behave as expected even with empty
     child elements. (see #1126, #1348)
   * Code formatting is no longer checked for clean release versions. Thus
     updates to the linters no longer break the tests for releases.
     (see #1312)
   * remove_response(..., pre_file=None, plot=True) works again. (see #1320)
 - obspy.clients.arclink:
   * Restored ArcLink encryption support. (see #1352, #1347)
 - obspy.clients.fdsn:
   * Local URLs are now recognized as valid URLs. (see #1309)
   * Some bug fixes for the mass downloader. (see #1293, #1304)
   * The NOA node has been added to the list of known nodes.
     (see 2347a25714bc3e16068031f4b6138fafd627d34e)
 - obspy.io.sac:
   * More automatic merging of SAC and ObsPy headers. The new `obspy.io.sac`
     modules thus behaves more like the old one and more in line with
     expectations of users. (see #1285)
   * No more out of bounds errors when assigning coordinates. (see #1300)
   * The evdp header can be set again. (see #1345)
   * Correctly propagating sampling rate changes to the SAC headers.
     (see #1317)
   * Always set nvhdr, leven, lovrok, iftype to ensure valid SAC files.
     (see #1204)
 - obspy.io.xseed:
   * The Parser.get_paz() method now works with multiple blockette 53s.
     (see #1281)
 - obspy.taup
   * Fixed wrong azimuth direction for paths > 180 degrees distance (see #1289)
   * Azimuth is appended to arrivals as well (see #1289)
   * Fixed issue with taup cache function on Python 2.7. (see #1308)

1.0.0:
 - General:
   * Requirements have been increased to reflect latest distributions:
     * Removed support for Python 2.6.
     * Added support for Python 3.5.
     * matplotlib >= 1.1.0 is now required.
     * numpy >= 1.6.1 is now required
     * scipy >= 0.9.0 is now required
   * Reorganized the submodule structure. We provide a deprecation path so the
     old imports will continue to work for one ObsPy version.
   * Consistent naming scheme across the code base. This results in some
     functions having different names. Most things that worked with ObsPy 0.10
     will continue to work with this version, but starting with the next
     version they will fail. Pay attention to the deprecation warnings.
   * Support for additional waveform data formats:
     - Read support for the ASCII format for waveforms from the K-NET and
       KiK-net strong-motion seismograph networks.
   * Support for additional event data formats:
     - CMTSOLUTION files used by many waveform solvers.
     - ESRI shapefile write support, useful in GIS applications (see #1066)
     - Google Earth KML output.
   * Support for additional station data format:
     - The FDSN web service station text format can now be read.
     - Read support for the NIED's moment tensor TEXT format (see #1125)
     - Google Earth KML output.
     - Read support for SeisComP3 inventory files.
 - obspy.core:
   * New method for generating sliding windows from Stream/Trace windows.
     (see #860)
   * Stream/Trace.slice() now has the optional `nearest_sample` argument from
     Stream/Trace.trim().
   * Trace.remove_response() now has `plot` option to show/output a plot of all
     individual steps of instrument response removal in frequency domain
     (see #1116).
   * New method Stream/Trace.remove_sensitivity() to remove instrument
     sensitivity
   * Fix incorrect parsing of some non-ISO8601 date/time strings. (see #1215)
   * Added plotting method to Event (customizable subplots from a selection
     of map, beachball and farfield radiation plots, see #1192)
 - obspy.clients.fdsn:
   * Replace FDSN webservice shortcut `NERIES` with `EMSC` and deprecate the
     `NERIES` shortcut, will be removed in a future release (see #1146).
   * Now requests gzipped data for the XML files. Much smaller files!
   * The station service can now also be used to download files in the text
     format. This has limited information but is much faster.
   * New mass downloader to assist in downloading data across a large number
     of FDSN web services.
   * Catch invalid URLs when initialising Client and avoid confusing error
     messages (see #1162)
 - obspy.clients.filesystem.sds:
   * New client to read data from local SDS directory structure (see #1135).
   * Command line script `obspy-sds-report` to generate html page with
     information on latency, data availability percentage and number of gaps
     for a local SDS archive (see #1202)
 - obspy.clients.neries:
   * Removed the dedicated client. Data can still be accessed by using the FDSN
     client.
 - obspy.clients.syngine:
   * New client for the IRIS Syngine service to retrieve custom synthetic
     seismograms.
 - obspy.imaging:
   * Experimental support for Cartopy when plotting maps. Use the `method`
     argument to functions that plot maps to select between Basemap or Cartopy.
   * New default colormap for all plots. A backport of the new viridis colormap
     from matplotlib is available for those using older matplotlib releases.
   * Added plotting routines for farfield radiation patterns of moment tensors
 - obspy.io.kml:
   * New module for Google KML output of Inventory and Catalog objects
     (e.g. for use in Google Earth)
 - obspy.io.mseed:
   * Upgrade to libmseed 2.16
 - obspy.io.seiscomp.sc3ml:
   * New module reading SeisComP3 inventory files to ObsPy inventory objects
     (see #1182).
 - obspy.io.shapefile:
   * New module for ESRI shapefile write support (see #1066)
 - obspy.io.stationtxt:
   * New module reading the FDSN station files.
 - obspy.signal:
   * Switch to second-order sections for filters; backported from SciPy 0.16.0
     (see #1028)
   * New Lanczos interpolation/resampling (see #1101)
   * Higher order detrending methods (see #1173)
   * PPSD (see #931, #1108, #1130, #1187):
     - Algorithm for PSD computation was improved, especially affecting results
       at long periods (for detailed discussion see #931 and #1108).
     - Keywords `paz` and `parser` were removed in favor of new keyword
       `metadata`. PPSD now accepts `metadata` in a much wider range
       of formats:
          * Inventory objects (e.g. from StationXML or from FDSN webservice)
          * obspy.io.xseed Parser objects (e.g. from dataless SEED file)
          * filename of a RESP file
          * dictionary with poles and zeros information (like in
            prior versions)
       Most old codes should still work, issuing a deprecation warning, but
       old code that specifies *both* `paz` and `parser` keywords will raise
       an exception.
     - Whenever possible (i.e. when using for `metadata` an Inventory,
       a Parser or a RESP file), response calculation now takes into account
       the full response (all stages) as opposed to only using the poles and
       zeros response stage (as was done in previous versions when using a
       Parser object). When using a poles and zeros dictionary response
       calculation is unchanged (as no information on other stages is
       available, of course).
     - PPSD now stores the psd for each time segment that gets processed,
       instead of only storing the stacked histogram. That way, differing
       custom stacks with various selection criteria (e.g. time of day, by
       weekday, etc.) can now be made from the same processed data
       (see #1130).
     - New save/load mechanism using numpy .npz binary format that circumvents
       some problems with the old pickle mechanism:
       `PPSD.save_npz()` and `PPSD.load_npz()` (and `PPSD.add_npz()` to add
       data from additional npz files)
     - Change default colormap to new obspy default sequential colormap
       (matplotlibs new viridis colormap). The old PQLX colormap is provided by
       `obspy.imaging.cm.pqlx` and can be used with
       `PPSD.plot(..., cmap=...)`.
     - new option `PPSD.plot(..., cumulative=True)` for a cumulative plot of
       the histogram, i.e. a non-exceedence percentage visualization, similar
       to the `percentile` option.
     - x axis in `PPSD.plot()` can be switched to frequency in Hz with
       `PPSD.plot(..., xaxis_frequency=True)` (see #1130)
     - changes to special handling of rotational: now handled by kwarg
       `special_handling="ringlaser"` (kwarg `is_rotational_data` is
       deprecated, see #916)
     - special handling option for hydrophone data (no differentiation, see
       #916)
     - bin width on frequency axis can now be controlled using
       `PPSD(..., frequency_bin_width_octaves=...)` (in fractions of octaves,
       default is the old fixed setting of 1/8 octaves as in PQLX)
 - obspy.taup
   * Added support for nd file format for input velocity models. Allows for
     named discontinuities at arbitrary depths allowing for less Earth like
     models (see #1147).
   * Added three methods (`get_travel_times_geo()`, `get_pierce_points_geo()`
     and `get_ray_paths_geo()`) to `TauPyModel` to handle station and
     event location data as latitude and longitude, instead of the source to
     station distance in degrees. In addition `get_ray_paths_geo()` and
     `get_pierce_points_geo()` decorate the returned pierce points and ray
     paths with the latitude and longitude of each point. Some functionality
     needs the `geographiclib` module to be installed. (See #1164.)
   * ObsPy now ships with a bunch of new velocity models in addition to the
     existing ones: `prem`, `sp6`, `1066a,b`, `herrin` (See #1196).
   * Add support for buried receivers (see #1103.)
   * Port more accurate calculation of ray parameter from Java. The effect is
     stronger for longer phases, but also corrects issues with shorter body and
     surface waves (see #986.)
   * Fix incorrect branch splitting which also caused issues for extremely
     shallow phases (see #1057.)
   * Proper cache for model splits resulting in much faster calculations if
     the source depth is repeatedly the same (see #1248).

0.10.3:
  - obspy.core:
    * Fix reading of multiple catalog files using globs (see #1065).
    * Fixed a bug when using
      `Trace.remove_response(..., water_level=None)`.
      With that setting that is supposed to not use any water level
      stabilization in the inversion of the instrument response
      spectrum actually the instrument response was never inverted and
      thus instead of a deconvolution a convolution was performed
      (see #1104).
    * Fixing floating point precision/rounding issue with UTCDateTime when
      initializing with floating point seconds, i.e. with microseconds,
      that could lead to microseconds being off by 1 microsecond
      (see #1096)
    * Correct gap/overlap time returned by Stream.get_gaps() and printed
      by Stream.print_gaps() which was incorrect by one time the sampling
      interval (see #1151)
    * Stream.get_gaps(): return overlaps specified in units of samples
      as negative integers (see #1151)
  - obspy.fdsn:
    * More detailed error messages on failing requests (see #1079)
    * Follows redirects for POST requests (see #1143)
  - obspy.imaging:
    * fix some bugs in `obspy-scan` (see #1138)
  - obspy.mseed:
    * Blockette 100 is now only written for Traces that need it. Previously
      it was written or not for all Traces, depending on whether the last
      Trace needed it or not. (see #1069)
    * Fixed a bug that prevented microsecond accuracy for times before 1970
      (see #1102).
    * Updated to libmseed 2.17.
  - obspy.signal:
    * Bug fixed within rotate.rotate2zne(). Additionally it can now also
      perform the inverse rotation (see #1061).
    * Bug fixed in triggering. When using option `max_len_delete` and a trigger
      occurred right before the end of data, one trigger was potentially lost
      (see #1145 for details).
  - obspy.station:
    * Plotting responses across multiple channels is more robust now in
      presence of some strange channels (e.g. with zero sampling rate,
      happens e.g. for state of health channels, see #1115)
    * ObsPy no longer assumes that the StationXML namespace is the default
      namespace (see #1060).
    * Checking if a file is a StationXML file is less rigorous (and much
      faster) now (not checking strict validity against xsd schema but
      only looking for a FDSNStationXML root element, see #1114).
      This means that `read_inventory()` without explicitly specified
      format will correctly detect more files as StationXML that have very
      slight breaches of the schema but still can be interpreted as
      StationXML.
    * fix saving `xcorrPickCorrection()` results to an image file (see #1154)
  - obspy.taup:
    * Calculating arrival times for surface waves now works (see #1055)
    * Calculating arrivals for underside reflections now works (see #1089)
  - obspy.y:
    * correct misspelled name of a Y specific header field (see #1127)
  - obspy.zmap
    * Add support for time values with sub-second precision (see #1093)


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/geography/py-obspy/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/geography/py-obspy/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/geography/py-obspy/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/geography/py-obspy/Makefile
diff -u pkgsrc/geography/py-obspy/Makefile:1.4 pkgsrc/geography/py-obspy/Makefile:1.5
--- pkgsrc/geography/py-obspy/Makefile:1.4      Sat Jul  9 13:03:49 2016
+++ pkgsrc/geography/py-obspy/Makefile  Sat Jul 16 04:11:55 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2016/07/09 13:03:49 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2016/07/16 04:11:55 wen Exp $
 
-DISTNAME=      obspy-0.10.2
+DISTNAME=      obspy-1.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    geography python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=o/obspy/}
@@ -14,6 +14,10 @@ LICENSE=     gnu-lgpl-v3
 DEPENDS+=      ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy
 DEPENDS+=      ${PYPKGPREFIX}-suds>=0.4:../../net/py-suds
 DEPENDS+=      ${PYPKGPREFIX}-lxml>=3.2.3:../../textproc/py-lxml
+DEPENDS+=      ${PYPKGPREFIX}-future>=0.12.4:../../devel/py-future
+DEPENDS+=      ${PYPKGPREFIX}-requests>=0:../../devel/py-requests
+DEPENDS+=      ${PYPKGPREFIX}-decorator>=0:../../devel/py-decorator
+DEPENDS+=      ${PYPKGPREFIX}-sqlalchemy>=0:../../databases/py-sqlalchemy
 
 USE_LANGUAGES= c fortran
 USE_TOOLS+=    bash:run

Index: pkgsrc/geography/py-obspy/PLIST
diff -u pkgsrc/geography/py-obspy/PLIST:1.1 pkgsrc/geography/py-obspy/PLIST:1.2
--- pkgsrc/geography/py-obspy/PLIST:1.1 Sat May 30 03:27:52 2015
+++ pkgsrc/geography/py-obspy/PLIST     Sat Jul 16 04:11:55 2016
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2015/05/30 03:27:52 wen Exp $
+@comment $NetBSD: PLIST,v 1.2 2016/07/16 04:11:55 wen Exp $
 bin/obspy-dataless2resp
 bin/obspy-dataless2xseed
 bin/obspy-flinn-engdahl
@@ -10,6 +10,7 @@ bin/obspy-print
 bin/obspy-reftek-rescue
 bin/obspy-runtests
 bin/obspy-scan
+bin/obspy-sds-report
 bin/obspy-xseed2dataless
 ${PYSITELIB}/${EGG_FILE}/PKG-INFO
 ${PYSITELIB}/${EGG_FILE}/SOURCES.txt
@@ -17,6 +18,7 @@ ${PYSITELIB}/${EGG_FILE}/dependency_link
 ${PYSITELIB}/${EGG_FILE}/entry_points.txt
 ${PYSITELIB}/${EGG_FILE}/namespace_packages.txt
 ${PYSITELIB}/${EGG_FILE}/not-zip-safe
+${PYSITELIB}/${EGG_FILE}/pbr.json
 ${PYSITELIB}/${EGG_FILE}/requires.txt
 ${PYSITELIB}/${EGG_FILE}/top_level.txt
 ${PYSITELIB}/obspy/CONTRIBUTORS.txt
@@ -25,143 +27,331 @@ ${PYSITELIB}/obspy/RELEASE-VERSION
 ${PYSITELIB}/obspy/__init__.py
 ${PYSITELIB}/obspy/__init__.pyc
 ${PYSITELIB}/obspy/__init__.pyo
-${PYSITELIB}/obspy/ah/README.txt
-${PYSITELIB}/obspy/ah/__init__.py
-${PYSITELIB}/obspy/ah/__init__.pyc
-${PYSITELIB}/obspy/ah/__init__.pyo
-${PYSITELIB}/obspy/ah/core.py
-${PYSITELIB}/obspy/ah/core.pyc
-${PYSITELIB}/obspy/ah/core.pyo
-${PYSITELIB}/obspy/ah/tests/__init__.py
-${PYSITELIB}/obspy/ah/tests/__init__.pyc
-${PYSITELIB}/obspy/ah/tests/__init__.pyo
-${PYSITELIB}/obspy/ah/tests/data/TSG/BRV.TSG.DS.lE21.asc
-${PYSITELIB}/obspy/ah/tests/data/TSG/BRV.TSG.DS.lE21.resp
-${PYSITELIB}/obspy/ah/tests/data/TSG/BRV.TSG.KSM.sE12.asc
-${PYSITELIB}/obspy/ah/tests/data/TSG/BRV.TSG.KSM.sE12.resp
-${PYSITELIB}/obspy/ah/tests/data/TSG/Readme_TSG_response.txt
-${PYSITELIB}/obspy/ah/tests/data/ah1.c
-${PYSITELIB}/obspy/ah/tests/data/ah1.f
-${PYSITELIB}/obspy/ah/tests/data/ah1.t
-${PYSITELIB}/obspy/ah/tests/data/ah2.c
-${PYSITELIB}/obspy/ah/tests/data/ah2.f
-${PYSITELIB}/obspy/ah/tests/data/ah2.f-e
-${PYSITELIB}/obspy/ah/tests/data/ah2.t
-${PYSITELIB}/obspy/ah/tests/data/hrv.lh.zne
-${PYSITELIB}/obspy/ah/tests/test_core.py
-${PYSITELIB}/obspy/ah/tests/test_core.pyc
-${PYSITELIB}/obspy/ah/tests/test_core.pyo
-${PYSITELIB}/obspy/arclink/README.txt
-${PYSITELIB}/obspy/arclink/__init__.py
-${PYSITELIB}/obspy/arclink/__init__.pyc
-${PYSITELIB}/obspy/arclink/__init__.pyo
-${PYSITELIB}/obspy/arclink/client.py
-${PYSITELIB}/obspy/arclink/client.pyc
-${PYSITELIB}/obspy/arclink/client.pyo
-${PYSITELIB}/obspy/arclink/decrypt.py
-${PYSITELIB}/obspy/arclink/decrypt.pyc
-${PYSITELIB}/obspy/arclink/decrypt.pyo
-${PYSITELIB}/obspy/arclink/tests/__init__.py
-${PYSITELIB}/obspy/arclink/tests/__init__.pyc
-${PYSITELIB}/obspy/arclink/tests/__init__.pyo
-${PYSITELIB}/obspy/arclink/tests/test_client.py
-${PYSITELIB}/obspy/arclink/tests/test_client.pyc
-${PYSITELIB}/obspy/arclink/tests/test_client.pyo
-${PYSITELIB}/obspy/arclink/tests/test_decrypt.py
-${PYSITELIB}/obspy/arclink/tests/test_decrypt.pyc
-${PYSITELIB}/obspy/arclink/tests/test_decrypt.pyo
-${PYSITELIB}/obspy/cnv/README.txt
-${PYSITELIB}/obspy/cnv/__init__.py
-${PYSITELIB}/obspy/cnv/__init__.pyc
-${PYSITELIB}/obspy/cnv/__init__.pyo
-${PYSITELIB}/obspy/cnv/core.py
-${PYSITELIB}/obspy/cnv/core.pyc
-${PYSITELIB}/obspy/cnv/core.pyo
-${PYSITELIB}/obspy/cnv/tests/__init__.py
-${PYSITELIB}/obspy/cnv/tests/__init__.pyc
-${PYSITELIB}/obspy/cnv/tests/__init__.pyo
-${PYSITELIB}/obspy/cnv/tests/data/obspyck_20141020150701.cnv
-${PYSITELIB}/obspy/cnv/tests/data/obspyck_20141020150701.xml
-${PYSITELIB}/obspy/cnv/tests/test_core.py
-${PYSITELIB}/obspy/cnv/tests/test_core.pyc
-${PYSITELIB}/obspy/cnv/tests/test_core.pyo
+${PYSITELIB}/obspy/clients/__init__.py
+${PYSITELIB}/obspy/clients/__init__.pyc
+${PYSITELIB}/obspy/clients/__init__.pyo
+${PYSITELIB}/obspy/clients/arclink/README.txt
+${PYSITELIB}/obspy/clients/arclink/__init__.py
+${PYSITELIB}/obspy/clients/arclink/__init__.pyc
+${PYSITELIB}/obspy/clients/arclink/__init__.pyo
+${PYSITELIB}/obspy/clients/arclink/client.py
+${PYSITELIB}/obspy/clients/arclink/client.pyc
+${PYSITELIB}/obspy/clients/arclink/client.pyo
+${PYSITELIB}/obspy/clients/arclink/decrypt.py
+${PYSITELIB}/obspy/clients/arclink/decrypt.pyc
+${PYSITELIB}/obspy/clients/arclink/decrypt.pyo
+${PYSITELIB}/obspy/clients/arclink/tests/__init__.py
+${PYSITELIB}/obspy/clients/arclink/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/arclink/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/arclink/tests/test_client.py
+${PYSITELIB}/obspy/clients/arclink/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/arclink/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/arclink/tests/test_decrypt.py
+${PYSITELIB}/obspy/clients/arclink/tests/test_decrypt.pyc
+${PYSITELIB}/obspy/clients/arclink/tests/test_decrypt.pyo
+${PYSITELIB}/obspy/clients/base.py
+${PYSITELIB}/obspy/clients/base.pyc
+${PYSITELIB}/obspy/clients/base.pyo
+${PYSITELIB}/obspy/clients/earthworm/README.txt
+${PYSITELIB}/obspy/clients/earthworm/__init__.py
+${PYSITELIB}/obspy/clients/earthworm/__init__.pyc
+${PYSITELIB}/obspy/clients/earthworm/__init__.pyo
+${PYSITELIB}/obspy/clients/earthworm/client.py
+${PYSITELIB}/obspy/clients/earthworm/client.pyc
+${PYSITELIB}/obspy/clients/earthworm/client.pyo
+${PYSITELIB}/obspy/clients/earthworm/tests/__init__.py
+${PYSITELIB}/obspy/clients/earthworm/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/earthworm/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/earthworm/tests/test_client.py
+${PYSITELIB}/obspy/clients/earthworm/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/earthworm/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/earthworm/waveserver.py
+${PYSITELIB}/obspy/clients/earthworm/waveserver.pyc
+${PYSITELIB}/obspy/clients/earthworm/waveserver.pyo
+${PYSITELIB}/obspy/clients/fdsn/README.txt
+${PYSITELIB}/obspy/clients/fdsn/__init__.py
+${PYSITELIB}/obspy/clients/fdsn/__init__.pyc
+${PYSITELIB}/obspy/clients/fdsn/__init__.pyo
+${PYSITELIB}/obspy/clients/fdsn/client.py
+${PYSITELIB}/obspy/clients/fdsn/client.pyc
+${PYSITELIB}/obspy/clients/fdsn/client.pyo
+${PYSITELIB}/obspy/clients/fdsn/header.py
+${PYSITELIB}/obspy/clients/fdsn/header.pyc
+${PYSITELIB}/obspy/clients/fdsn/header.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/__init__.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/__init__.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/__init__.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/domain.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/domain.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/domain.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/download_helpers.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/download_helpers.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/download_helpers.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/mass_downloader.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/mass_downloader.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/mass_downloader.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/restrictions.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/restrictions.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/restrictions.pyo
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/utils.py
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/utils.pyc
+${PYSITELIB}/obspy/clients/fdsn/mass_downloader/utils.pyo
+${PYSITELIB}/obspy/clients/fdsn/tests/__init__.py
+${PYSITELIB}/obspy/clients/fdsn/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/fdsn/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ethz_dataselect.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ethz_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ethz_station.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_dataselect.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_iris_station.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_dataselect.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_ncedc_station.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_dataselect.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_resif_station.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-01-07_usgs_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/2014-02-16_seismicportal_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/AU.MEEK.xml
+${PYSITELIB}/obspy/clients/fdsn/tests/data/bulk.mseed
+${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn.txt
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example.mseed
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_mixed_wildcards.mseed
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_example_wildcards.mseed
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_helpstring.txt
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_missing_attributes.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/dataselect_no_types.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/event_helpstring.txt
+${PYSITELIB}/obspy/clients/fdsn/tests/data/event_missing_attributes.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/station.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/station_helpstring.txt
+${PYSITELIB}/obspy/clients/fdsn/tests/data/station_no_types.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/data/usgs_event.wadl
+${PYSITELIB}/obspy/clients/fdsn/tests/test_client.py
+${PYSITELIB}/obspy/clients/fdsn/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/fdsn/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.py
+${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyc
+${PYSITELIB}/obspy/clients/fdsn/tests/test_mass_downloader.pyo
+${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.py
+${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyc
+${PYSITELIB}/obspy/clients/fdsn/tests/test_wadl_parser.pyo
+${PYSITELIB}/obspy/clients/fdsn/wadl_parser.py
+${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyc
+${PYSITELIB}/obspy/clients/fdsn/wadl_parser.pyo
+${PYSITELIB}/obspy/clients/filesystem/__init__.py
+${PYSITELIB}/obspy/clients/filesystem/__init__.pyc
+${PYSITELIB}/obspy/clients/filesystem/__init__.pyo
+${PYSITELIB}/obspy/clients/filesystem/sds.py
+${PYSITELIB}/obspy/clients/filesystem/sds.pyc
+${PYSITELIB}/obspy/clients/filesystem/sds.pyo
+${PYSITELIB}/obspy/clients/filesystem/tests/__init__.py
+${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/filesystem/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/filesystem/tests/data/sds_report.regex
+${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.py
+${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyc
+${PYSITELIB}/obspy/clients/filesystem/tests/test_sds.pyo
+${PYSITELIB}/obspy/clients/iris/README.txt
+${PYSITELIB}/obspy/clients/iris/__init__.py
+${PYSITELIB}/obspy/clients/iris/__init__.pyc
+${PYSITELIB}/obspy/clients/iris/__init__.pyo
+${PYSITELIB}/obspy/clients/iris/client.py
+${PYSITELIB}/obspy/clients/iris/client.pyc
+${PYSITELIB}/obspy/clients/iris/client.pyo
+${PYSITELIB}/obspy/clients/iris/tests/__init__.py
+${PYSITELIB}/obspy/clients/iris/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/iris/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/iris/tests/data/IU.ANMO.00.BHZ.mseed
+${PYSITELIB}/obspy/clients/iris/tests/data/IU.ANMO.00.BHZ.sacpz
+${PYSITELIB}/obspy/clients/iris/tests/data/RESP.ANMO.IU.00.BHZ
+${PYSITELIB}/obspy/clients/iris/tests/data/RESP.ANMO.IU._.BH_
+${PYSITELIB}/obspy/clients/iris/tests/test_client.py
+${PYSITELIB}/obspy/clients/iris/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/iris/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/neic/README.txt
+${PYSITELIB}/obspy/clients/neic/__init__.py
+${PYSITELIB}/obspy/clients/neic/__init__.pyc
+${PYSITELIB}/obspy/clients/neic/__init__.pyo
+${PYSITELIB}/obspy/clients/neic/client.py
+${PYSITELIB}/obspy/clients/neic/client.pyc
+${PYSITELIB}/obspy/clients/neic/client.pyo
+${PYSITELIB}/obspy/clients/neic/tests/__init__.py
+${PYSITELIB}/obspy/clients/neic/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/neic/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/neic/tests/test_client.py
+${PYSITELIB}/obspy/clients/neic/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/neic/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/neic/util.py
+${PYSITELIB}/obspy/clients/neic/util.pyc
+${PYSITELIB}/obspy/clients/neic/util.pyo
+${PYSITELIB}/obspy/clients/seedlink/README.txt
+${PYSITELIB}/obspy/clients/seedlink/__init__.py
+${PYSITELIB}/obspy/clients/seedlink/__init__.pyc
+${PYSITELIB}/obspy/clients/seedlink/__init__.pyo
+${PYSITELIB}/obspy/clients/seedlink/basic_client.py
+${PYSITELIB}/obspy/clients/seedlink/basic_client.pyc
+${PYSITELIB}/obspy/clients/seedlink/basic_client.pyo
+${PYSITELIB}/obspy/clients/seedlink/client/__init__.py
+${PYSITELIB}/obspy/clients/seedlink/client/__init__.pyc
+${PYSITELIB}/obspy/clients/seedlink/client/__init__.pyo
+${PYSITELIB}/obspy/clients/seedlink/client/seedlinkconnection.py
+${PYSITELIB}/obspy/clients/seedlink/client/seedlinkconnection.pyc
+${PYSITELIB}/obspy/clients/seedlink/client/seedlinkconnection.pyo
+${PYSITELIB}/obspy/clients/seedlink/client/slnetstation.py
+${PYSITELIB}/obspy/clients/seedlink/client/slnetstation.pyc
+${PYSITELIB}/obspy/clients/seedlink/client/slnetstation.pyo
+${PYSITELIB}/obspy/clients/seedlink/client/slstate.py
+${PYSITELIB}/obspy/clients/seedlink/client/slstate.pyc
+${PYSITELIB}/obspy/clients/seedlink/client/slstate.pyo
+${PYSITELIB}/obspy/clients/seedlink/easyseedlink.py
+${PYSITELIB}/obspy/clients/seedlink/easyseedlink.pyc
+${PYSITELIB}/obspy/clients/seedlink/easyseedlink.pyo
+${PYSITELIB}/obspy/clients/seedlink/seedlinkexception.py
+${PYSITELIB}/obspy/clients/seedlink/seedlinkexception.pyc
+${PYSITELIB}/obspy/clients/seedlink/seedlinkexception.pyo
+${PYSITELIB}/obspy/clients/seedlink/slclient.py
+${PYSITELIB}/obspy/clients/seedlink/slclient.pyc
+${PYSITELIB}/obspy/clients/seedlink/slclient.pyo
+${PYSITELIB}/obspy/clients/seedlink/slpacket.py
+${PYSITELIB}/obspy/clients/seedlink/slpacket.pyc
+${PYSITELIB}/obspy/clients/seedlink/slpacket.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/__init__.py
+${PYSITELIB}/obspy/clients/seedlink/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/data/info_packet_geofon.slink
+${PYSITELIB}/obspy/clients/seedlink/tests/data/info_packet_iris.slink
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_Hello.py
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_Hello.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_Hello.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_RTTrace.py
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_RTTrace.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/example_SL_RTTrace.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_basic_client.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_basic_client.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_basic_client.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_seedlinkconnection.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_seedlinkconnection.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_seedlinkconnection.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slclient.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slclient.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slclient.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slnetstation.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slnetstation.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slnetstation.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slpacket.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slpacket.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slpacket.pyo
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slstate.py
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slstate.pyc
+${PYSITELIB}/obspy/clients/seedlink/tests/test_slstate.pyo
+${PYSITELIB}/obspy/clients/seishub/README.txt
+${PYSITELIB}/obspy/clients/seishub/__init__.py
+${PYSITELIB}/obspy/clients/seishub/__init__.pyc
+${PYSITELIB}/obspy/clients/seishub/__init__.pyo
+${PYSITELIB}/obspy/clients/seishub/client.py
+${PYSITELIB}/obspy/clients/seishub/client.pyc
+${PYSITELIB}/obspy/clients/seishub/client.pyo
+${PYSITELIB}/obspy/clients/seishub/tests/__init__.py
+${PYSITELIB}/obspy/clients/seishub/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/seishub/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/seishub/tests/test_client.py
+${PYSITELIB}/obspy/clients/seishub/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/seishub/tests/test_client.pyo
+${PYSITELIB}/obspy/clients/syngine/README.txt
+${PYSITELIB}/obspy/clients/syngine/__init__.py
+${PYSITELIB}/obspy/clients/syngine/__init__.pyc
+${PYSITELIB}/obspy/clients/syngine/__init__.pyo
+${PYSITELIB}/obspy/clients/syngine/client.py
+${PYSITELIB}/obspy/clients/syngine/client.pyc
+${PYSITELIB}/obspy/clients/syngine/client.pyo
+${PYSITELIB}/obspy/clients/syngine/tests/__init__.py
+${PYSITELIB}/obspy/clients/syngine/tests/__init__.pyc
+${PYSITELIB}/obspy/clients/syngine/tests/__init__.pyo
+${PYSITELIB}/obspy/clients/syngine/tests/test_client.py
+${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyc
+${PYSITELIB}/obspy/clients/syngine/tests/test_client.pyo
 ${PYSITELIB}/obspy/core/README.txt
 ${PYSITELIB}/obspy/core/__init__.py
 ${PYSITELIB}/obspy/core/__init__.pyc
 ${PYSITELIB}/obspy/core/__init__.pyo
-${PYSITELIB}/obspy/core/ascii.py
-${PYSITELIB}/obspy/core/ascii.pyc
-${PYSITELIB}/obspy/core/ascii.pyo
 ${PYSITELIB}/obspy/core/compatibility.py
 ${PYSITELIB}/obspy/core/compatibility.pyc
 ${PYSITELIB}/obspy/core/compatibility.pyo
+${PYSITELIB}/obspy/core/data/BW_GR_misc.xml
 ${PYSITELIB}/obspy/core/data/BW_RJOB.xml
-${PYSITELIB}/obspy/core/data/QuakeML-1.2.rng
-${PYSITELIB}/obspy/core/data/QuakeML-1.2.xsd
-${PYSITELIB}/obspy/core/data/QuakeML-BED-1.2.rng
-${PYSITELIB}/obspy/core/data/QuakeML-BED-1.2.xsd
 ${PYSITELIB}/obspy/core/data/example.npz
-${PYSITELIB}/obspy/core/event.py
-${PYSITELIB}/obspy/core/event.pyc
-${PYSITELIB}/obspy/core/event.pyo
-${PYSITELIB}/obspy/core/event_header.py
-${PYSITELIB}/obspy/core/event_header.pyc
-${PYSITELIB}/obspy/core/event_header.pyo
-${PYSITELIB}/obspy/core/json/__init__.py
-${PYSITELIB}/obspy/core/json/__init__.pyc
-${PYSITELIB}/obspy/core/json/__init__.pyo
-${PYSITELIB}/obspy/core/json/core.py
-${PYSITELIB}/obspy/core/json/core.pyc
-${PYSITELIB}/obspy/core/json/core.pyo
-${PYSITELIB}/obspy/core/json/default.py
-${PYSITELIB}/obspy/core/json/default.pyc
-${PYSITELIB}/obspy/core/json/default.pyo
+${PYSITELIB}/obspy/core/event/__init__.py
+${PYSITELIB}/obspy/core/event/__init__.pyc
+${PYSITELIB}/obspy/core/event/__init__.pyo
+${PYSITELIB}/obspy/core/event/base.py
+${PYSITELIB}/obspy/core/event/base.pyc
+${PYSITELIB}/obspy/core/event/base.pyo
+${PYSITELIB}/obspy/core/event/catalog.py
+${PYSITELIB}/obspy/core/event/catalog.pyc
+${PYSITELIB}/obspy/core/event/catalog.pyo
+${PYSITELIB}/obspy/core/event/event.py
+${PYSITELIB}/obspy/core/event/event.pyc
+${PYSITELIB}/obspy/core/event/event.pyo
+${PYSITELIB}/obspy/core/event/header.py
+${PYSITELIB}/obspy/core/event/header.pyc
+${PYSITELIB}/obspy/core/event/header.pyo
+${PYSITELIB}/obspy/core/event/magnitude.py
+${PYSITELIB}/obspy/core/event/magnitude.pyc
+${PYSITELIB}/obspy/core/event/magnitude.pyo
+${PYSITELIB}/obspy/core/event/origin.py
+${PYSITELIB}/obspy/core/event/origin.pyc
+${PYSITELIB}/obspy/core/event/origin.pyo
+${PYSITELIB}/obspy/core/event/source.py
+${PYSITELIB}/obspy/core/event/source.pyc
+${PYSITELIB}/obspy/core/event/source.pyo
+${PYSITELIB}/obspy/core/inventory/README.txt
+${PYSITELIB}/obspy/core/inventory/__init__.py
+${PYSITELIB}/obspy/core/inventory/__init__.pyc
+${PYSITELIB}/obspy/core/inventory/__init__.pyo
+${PYSITELIB}/obspy/core/inventory/channel.py
+${PYSITELIB}/obspy/core/inventory/channel.pyc
+${PYSITELIB}/obspy/core/inventory/channel.pyo
+${PYSITELIB}/obspy/core/inventory/inventory.py
+${PYSITELIB}/obspy/core/inventory/inventory.pyc
+${PYSITELIB}/obspy/core/inventory/inventory.pyo
+${PYSITELIB}/obspy/core/inventory/network.py
+${PYSITELIB}/obspy/core/inventory/network.pyc
+${PYSITELIB}/obspy/core/inventory/network.pyo
+${PYSITELIB}/obspy/core/inventory/response.py
+${PYSITELIB}/obspy/core/inventory/response.pyc
+${PYSITELIB}/obspy/core/inventory/response.pyo
+${PYSITELIB}/obspy/core/inventory/station.py
+${PYSITELIB}/obspy/core/inventory/station.pyc
+${PYSITELIB}/obspy/core/inventory/station.pyo
+${PYSITELIB}/obspy/core/inventory/util.py
+${PYSITELIB}/obspy/core/inventory/util.pyc
+${PYSITELIB}/obspy/core/inventory/util.pyo
 ${PYSITELIB}/obspy/core/preview.py
 ${PYSITELIB}/obspy/core/preview.pyc
 ${PYSITELIB}/obspy/core/preview.pyo
-${PYSITELIB}/obspy/core/quakeml.py
-${PYSITELIB}/obspy/core/quakeml.pyc
-${PYSITELIB}/obspy/core/quakeml.pyo
-${PYSITELIB}/obspy/core/scripts/__init__.py
-${PYSITELIB}/obspy/core/scripts/__init__.pyc
-${PYSITELIB}/obspy/core/scripts/__init__.pyo
-${PYSITELIB}/obspy/core/scripts/flinnengdahl.py
-${PYSITELIB}/obspy/core/scripts/flinnengdahl.pyc
-${PYSITELIB}/obspy/core/scripts/flinnengdahl.pyo
-${PYSITELIB}/obspy/core/scripts/print.py
-${PYSITELIB}/obspy/core/scripts/print.pyc
-${PYSITELIB}/obspy/core/scripts/print.pyo
-${PYSITELIB}/obspy/core/scripts/reftekrescue.py
-${PYSITELIB}/obspy/core/scripts/reftekrescue.pyc
-${PYSITELIB}/obspy/core/scripts/reftekrescue.pyo
-${PYSITELIB}/obspy/core/scripts/runtests.py
-${PYSITELIB}/obspy/core/scripts/runtests.pyc
-${PYSITELIB}/obspy/core/scripts/runtests.pyo
 ${PYSITELIB}/obspy/core/stream.py
 ${PYSITELIB}/obspy/core/stream.pyc
 ${PYSITELIB}/obspy/core/stream.pyo
 ${PYSITELIB}/obspy/core/tests/__init__.py
 ${PYSITELIB}/obspy/core/tests/__init__.pyc
 ${PYSITELIB}/obspy/core/tests/__init__.pyo
-${PYSITELIB}/obspy/core/tests/data/flinnengdahl.csv
+${PYSITELIB}/obspy/core/tests/data/AU.MEEK.seed
+${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml
+${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.seed
+${PYSITELIB}/obspy/core/tests/data/IRIS_single_channel_with_response.xml
+${PYSITELIB}/obspy/core/tests/data/IU_ANMO_00_BHZ.xml
+${PYSITELIB}/obspy/core/tests/data/IU_ANMO_BH.xml
+${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1.xml
+${PYSITELIB}/obspy/core/tests/data/IU_ULN_00_LH1_2015-07-18T02.mseed
+${PYSITELIB}/obspy/core/tests/data/Modified_IRIS_response_level_station.xml
+${PYSITELIB}/obspy/core/tests/data/TM.SKLT..BHZ_faulty_response.xml
+${PYSITELIB}/obspy/core/tests/data/XM.05.seed
+${PYSITELIB}/obspy/core/tests/data/XM.05.xml
 ${PYSITELIB}/obspy/core/tests/data/iris_events.xml
 ${PYSITELIB}/obspy/core/tests/data/neries_events.xml
-${PYSITELIB}/obspy/core/tests/data/preferred.xml
-${PYSITELIB}/obspy/core/tests/data/qml-example-1.2-RC3.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_arrival.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_data_used.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_event.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_focalmechanism.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_magnitude.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_origin.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_pick.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_stationmagnitude.xml
-${PYSITELIB}/obspy/core/tests/data/quakeml_1.2_stationmagnitudecontributions.xml
-${PYSITELIB}/obspy/core/tests/data/slist.ascii
-${PYSITELIB}/obspy/core/tests/data/slist.ascii.bz2
-${PYSITELIB}/obspy/core/tests/data/slist_2_traces.ascii
-${PYSITELIB}/obspy/core/tests/data/slist_float.ascii
-${PYSITELIB}/obspy/core/tests/data/slist_unknown.ascii
 ${PYSITELIB}/obspy/core/tests/data/stationxml_BK.CMB.__.LKS.xml
 ${PYSITELIB}/obspy/core/tests/data/stationxml_IU.ANTO.30.LDO.xml
 ${PYSITELIB}/obspy/core/tests/data/test.tar
@@ -169,39 +359,62 @@ ${PYSITELIB}/obspy/core/tests/data/test.
 ${PYSITELIB}/obspy/core/tests/data/test.tar.gz
 ${PYSITELIB}/obspy/core/tests/data/test.tgz
 ${PYSITELIB}/obspy/core/tests/data/test.zip
-${PYSITELIB}/obspy/core/tests/data/tspair.ascii
-${PYSITELIB}/obspy/core/tests/data/tspair.ascii.gz
-${PYSITELIB}/obspy/core/tests/data/tspair_2_traces.ascii
-${PYSITELIB}/obspy/core/tests/data/tspair_float.ascii
-${PYSITELIB}/obspy/core/tests/data/tspair_unknown.ascii
-${PYSITELIB}/obspy/core/tests/data/usgs_event.xml
-${PYSITELIB}/obspy/core/tests/images/catalog1.png
-${PYSITELIB}/obspy/core/tests/images/catalog2.png
-${PYSITELIB}/obspy/core/tests/images/catalog3.png
+${PYSITELIB}/obspy/core/tests/images/basemap_combined_stations-events.png
+${PYSITELIB}/obspy/core/tests/images/catalog-basemap1.png
+${PYSITELIB}/obspy/core/tests/images/catalog-basemap2.png
+${PYSITELIB}/obspy/core/tests/images/catalog-basemap3.png
+${PYSITELIB}/obspy/core/tests/images/catalog-cartopy1.png
+${PYSITELIB}/obspy/core/tests/images/catalog-cartopy2.png
+${PYSITELIB}/obspy/core/tests/images/catalog-cartopy3.png
+${PYSITELIB}/obspy/core/tests/images/channel_response.png
+${PYSITELIB}/obspy/core/tests/images/event.png
 ${PYSITELIB}/obspy/core/tests/images/image.png
 ${PYSITELIB}/obspy/core/tests/images/image_fail.png
 ${PYSITELIB}/obspy/core/tests/images/image_ok.png
-${PYSITELIB}/obspy/core/tests/test_ascii.py
-${PYSITELIB}/obspy/core/tests/test_ascii.pyc
-${PYSITELIB}/obspy/core/tests/test_ascii.pyo
+${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap1.png
+${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap2.png
+${PYSITELIB}/obspy/core/tests/images/inventory_location-basemap3.png
+${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy1.png
+${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy2.png
+${PYSITELIB}/obspy/core/tests/images/inventory_location-cartopy3.png
+${PYSITELIB}/obspy/core/tests/images/inventory_response.png
+${PYSITELIB}/obspy/core/tests/images/network_location-basemap1.png
+${PYSITELIB}/obspy/core/tests/images/network_location-basemap2.png
+${PYSITELIB}/obspy/core/tests/images/network_location-basemap3.png
+${PYSITELIB}/obspy/core/tests/images/network_location-cartopy1.png
+${PYSITELIB}/obspy/core/tests/images/network_location-cartopy2.png
+${PYSITELIB}/obspy/core/tests/images/network_location-cartopy3.png
+${PYSITELIB}/obspy/core/tests/images/network_response.png
+${PYSITELIB}/obspy/core/tests/images/response_response.png
+${PYSITELIB}/obspy/core/tests/images/station_response.png
+${PYSITELIB}/obspy/core/tests/images/trace_remove_response.png
+${PYSITELIB}/obspy/core/tests/test_channel.py
+${PYSITELIB}/obspy/core/tests/test_channel.pyc
+${PYSITELIB}/obspy/core/tests/test_channel.pyo
 ${PYSITELIB}/obspy/core/tests/test_code_formatting.py
 ${PYSITELIB}/obspy/core/tests/test_code_formatting.pyc
 ${PYSITELIB}/obspy/core/tests/test_code_formatting.pyo
+${PYSITELIB}/obspy/core/tests/test_deprecated_imports.py
+${PYSITELIB}/obspy/core/tests/test_deprecated_imports.pyc
+${PYSITELIB}/obspy/core/tests/test_deprecated_imports.pyo
 ${PYSITELIB}/obspy/core/tests/test_event.py
 ${PYSITELIB}/obspy/core/tests/test_event.pyc
 ${PYSITELIB}/obspy/core/tests/test_event.pyo
-${PYSITELIB}/obspy/core/tests/test_json.py
-${PYSITELIB}/obspy/core/tests/test_json.pyc
-${PYSITELIB}/obspy/core/tests/test_json.pyo
+${PYSITELIB}/obspy/core/tests/test_inventory.py
+${PYSITELIB}/obspy/core/tests/test_inventory.pyc
+${PYSITELIB}/obspy/core/tests/test_inventory.pyo
+${PYSITELIB}/obspy/core/tests/test_network.py
+${PYSITELIB}/obspy/core/tests/test_network.pyc
+${PYSITELIB}/obspy/core/tests/test_network.pyo
 ${PYSITELIB}/obspy/core/tests/test_preview.py
 ${PYSITELIB}/obspy/core/tests/test_preview.pyc
 ${PYSITELIB}/obspy/core/tests/test_preview.pyo
-${PYSITELIB}/obspy/core/tests/test_print.py
-${PYSITELIB}/obspy/core/tests/test_print.pyc
-${PYSITELIB}/obspy/core/tests/test_print.pyo
-${PYSITELIB}/obspy/core/tests/test_quakeml.py
-${PYSITELIB}/obspy/core/tests/test_quakeml.pyc
-${PYSITELIB}/obspy/core/tests/test_quakeml.pyo
+${PYSITELIB}/obspy/core/tests/test_response.py
+${PYSITELIB}/obspy/core/tests/test_response.pyc
+${PYSITELIB}/obspy/core/tests/test_response.pyo
+${PYSITELIB}/obspy/core/tests/test_station.py
+${PYSITELIB}/obspy/core/tests/test_station.pyc
+${PYSITELIB}/obspy/core/tests/test_station.pyo
 ${PYSITELIB}/obspy/core/tests/test_stats.py
 ${PYSITELIB}/obspy/core/tests/test_stats.pyc
 ${PYSITELIB}/obspy/core/tests/test_stats.pyo
@@ -223,12 +436,6 @@ ${PYSITELIB}/obspy/core/tests/test_util_
 ${PYSITELIB}/obspy/core/tests/test_util_decorator.py
 ${PYSITELIB}/obspy/core/tests/test_util_decorator.pyc
 ${PYSITELIB}/obspy/core/tests/test_util_decorator.pyo
-${PYSITELIB}/obspy/core/tests/test_util_flinnengdahl.py
-${PYSITELIB}/obspy/core/tests/test_util_flinnengdahl.pyc
-${PYSITELIB}/obspy/core/tests/test_util_flinnengdahl.pyo
-${PYSITELIB}/obspy/core/tests/test_util_geodetics.py
-${PYSITELIB}/obspy/core/tests/test_util_geodetics.pyc
-${PYSITELIB}/obspy/core/tests/test_util_geodetics.pyo
 ${PYSITELIB}/obspy/core/tests/test_util_misc.py
 ${PYSITELIB}/obspy/core/tests/test_util_misc.pyc
 ${PYSITELIB}/obspy/core/tests/test_util_misc.pyo
@@ -256,22 +463,9 @@ ${PYSITELIB}/obspy/core/util/base.pyo
 ${PYSITELIB}/obspy/core/util/decorator.py
 ${PYSITELIB}/obspy/core/util/decorator.pyc
 ${PYSITELIB}/obspy/core/util/decorator.pyo
-${PYSITELIB}/obspy/core/util/geodetics/__init__.py
-${PYSITELIB}/obspy/core/util/geodetics/__init__.pyc
-${PYSITELIB}/obspy/core/util/geodetics/__init__.pyo
-${PYSITELIB}/obspy/core/util/geodetics/base.py
-${PYSITELIB}/obspy/core/util/geodetics/base.pyc
-${PYSITELIB}/obspy/core/util/geodetics/base.pyo
-${PYSITELIB}/obspy/core/util/geodetics/data/Flinn-Engdahl.csv
-${PYSITELIB}/obspy/core/util/geodetics/data/names.asc
-${PYSITELIB}/obspy/core/util/geodetics/data/nesect.asc
-${PYSITELIB}/obspy/core/util/geodetics/data/nwsect.asc
-${PYSITELIB}/obspy/core/util/geodetics/data/quadsidx.asc
-${PYSITELIB}/obspy/core/util/geodetics/data/sesect.asc
-${PYSITELIB}/obspy/core/util/geodetics/data/swsect.asc
-${PYSITELIB}/obspy/core/util/geodetics/flinnengdahl.py
-${PYSITELIB}/obspy/core/util/geodetics/flinnengdahl.pyc
-${PYSITELIB}/obspy/core/util/geodetics/flinnengdahl.pyo
+${PYSITELIB}/obspy/core/util/deprecation_helpers.py
+${PYSITELIB}/obspy/core/util/deprecation_helpers.pyc
+${PYSITELIB}/obspy/core/util/deprecation_helpers.pyo
 ${PYSITELIB}/obspy/core/util/libnames.py
 ${PYSITELIB}/obspy/core/util/libnames.pyc
 ${PYSITELIB}/obspy/core/util/libnames.pyo
@@ -287,60 +481,6 @@ ${PYSITELIB}/obspy/core/util/testing.pyo
 ${PYSITELIB}/obspy/core/util/version.py
 ${PYSITELIB}/obspy/core/util/version.pyc
 ${PYSITELIB}/obspy/core/util/version.pyo
-${PYSITELIB}/obspy/css/README.txt
-${PYSITELIB}/obspy/css/__init__.py
-${PYSITELIB}/obspy/css/__init__.pyc
-${PYSITELIB}/obspy/css/__init__.pyo
-${PYSITELIB}/obspy/css/core.py
-${PYSITELIB}/obspy/css/core.pyc
-${PYSITELIB}/obspy/css/core.pyo
-${PYSITELIB}/obspy/css/station.py
-${PYSITELIB}/obspy/css/station.pyc
-${PYSITELIB}/obspy/css/station.pyo
-${PYSITELIB}/obspy/css/tests/__init__.py
-${PYSITELIB}/obspy/css/tests/__init__.pyc
-${PYSITELIB}/obspy/css/tests/__init__.pyo
-${PYSITELIB}/obspy/css/tests/data/201101311155.10.ascii.gz
-${PYSITELIB}/obspy/css/tests/data/201101311155.10.be.w
-${PYSITELIB}/obspy/css/tests/data/201101311155.10.le.w
-${PYSITELIB}/obspy/css/tests/data/README
-${PYSITELIB}/obspy/css/tests/data/css2ascii.c
-${PYSITELIB}/obspy/css/tests/data/station/default.affiliation
-${PYSITELIB}/obspy/css/tests/data/station/default.network
-${PYSITELIB}/obspy/css/tests/data/station/default.remark
-${PYSITELIB}/obspy/css/tests/data/station/default.site
-${PYSITELIB}/obspy/css/tests/data/station/default.sitechan
-${PYSITELIB}/obspy/css/tests/data/test.wfdisc
-${PYSITELIB}/obspy/css/tests/test_core.py
-${PYSITELIB}/obspy/css/tests/test_core.pyc
-${PYSITELIB}/obspy/css/tests/test_core.pyo
-${PYSITELIB}/obspy/css/tests/test_station.py
-${PYSITELIB}/obspy/css/tests/test_station.pyc
-${PYSITELIB}/obspy/css/tests/test_station.pyo
-${PYSITELIB}/obspy/datamark/README.txt
-${PYSITELIB}/obspy/datamark/__init__.py
-${PYSITELIB}/obspy/datamark/__init__.pyc
-${PYSITELIB}/obspy/datamark/__init__.pyo
-${PYSITELIB}/obspy/datamark/core.py
-${PYSITELIB}/obspy/datamark/core.pyc
-${PYSITELIB}/obspy/datamark/core.pyo
-${PYSITELIB}/obspy/datamark/tests/__init__.py
-${PYSITELIB}/obspy/datamark/tests/__init__.pyc
-${PYSITELIB}/obspy/datamark/tests/__init__.pyo
-${PYSITELIB}/obspy/datamark/tests/data/10030302.00
-${PYSITELIB}/obspy/datamark/tests/data/10030302.01
-${PYSITELIB}/obspy/datamark/tests/data/10030302.02
-${PYSITELIB}/obspy/datamark/tests/data/10030302.03
-${PYSITELIB}/obspy/datamark/tests/data/10030302.04
-${PYSITELIB}/obspy/datamark/tests/data/10030302.05
-${PYSITELIB}/obspy/datamark/tests/data/10030302.06
-${PYSITELIB}/obspy/datamark/tests/data/10030302.07
-${PYSITELIB}/obspy/datamark/tests/data/10030302.08
-${PYSITELIB}/obspy/datamark/tests/data/10030302.09
-${PYSITELIB}/obspy/datamark/tests/data/10030302.10
-${PYSITELIB}/obspy/datamark/tests/test_core.py
-${PYSITELIB}/obspy/datamark/tests/test_core.pyc
-${PYSITELIB}/obspy/datamark/tests/test_core.pyo
 ${PYSITELIB}/obspy/db/README.txt
 ${PYSITELIB}/obspy/db/__init__.py
 ${PYSITELIB}/obspy/db/__init__.pyc
@@ -375,123 +515,32 @@ ${PYSITELIB}/obspy/db/tests/test_util.py
 ${PYSITELIB}/obspy/db/util.py
 ${PYSITELIB}/obspy/db/util.pyc
 ${PYSITELIB}/obspy/db/util.pyo
-${PYSITELIB}/obspy/earthworm/README.txt
-${PYSITELIB}/obspy/earthworm/__init__.py
-${PYSITELIB}/obspy/earthworm/__init__.pyc
-${PYSITELIB}/obspy/earthworm/__init__.pyo
-${PYSITELIB}/obspy/earthworm/client.py
-${PYSITELIB}/obspy/earthworm/client.pyc
-${PYSITELIB}/obspy/earthworm/client.pyo
-${PYSITELIB}/obspy/earthworm/tests/__init__.py
-${PYSITELIB}/obspy/earthworm/tests/__init__.pyc
-${PYSITELIB}/obspy/earthworm/tests/__init__.pyo
-${PYSITELIB}/obspy/earthworm/tests/test_client.py
-${PYSITELIB}/obspy/earthworm/tests/test_client.pyc
-${PYSITELIB}/obspy/earthworm/tests/test_client.pyo
-${PYSITELIB}/obspy/earthworm/waveserver.py
-${PYSITELIB}/obspy/earthworm/waveserver.pyc
-${PYSITELIB}/obspy/earthworm/waveserver.pyo
-${PYSITELIB}/obspy/fdsn/README.txt
-${PYSITELIB}/obspy/fdsn/__init__.py
-${PYSITELIB}/obspy/fdsn/__init__.pyc
-${PYSITELIB}/obspy/fdsn/__init__.pyo
-${PYSITELIB}/obspy/fdsn/client.py
-${PYSITELIB}/obspy/fdsn/client.pyc
-${PYSITELIB}/obspy/fdsn/client.pyo
-${PYSITELIB}/obspy/fdsn/header.py
-${PYSITELIB}/obspy/fdsn/header.pyc
-${PYSITELIB}/obspy/fdsn/header.pyo
-${PYSITELIB}/obspy/fdsn/tests/__init__.py
-${PYSITELIB}/obspy/fdsn/tests/__init__.pyc
-${PYSITELIB}/obspy/fdsn/tests/__init__.pyo
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ethz_dataselect.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ethz_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ethz_station.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_iris_dataselect.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_iris_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_iris_station.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ncedc_dataselect.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ncedc_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_ncedc_station.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_resif_dataselect.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_resif_station.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-01-07_usgs_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/2014-02-16_seismicportal_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/bulk.mseed
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_example.mseed
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_example_mixed_wildcards.mseed
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_example_wildcards.mseed
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_helpstring.txt
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_missing_attributes.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/dataselect_no_types.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/event.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/event_helpstring.txt
-${PYSITELIB}/obspy/fdsn/tests/data/event_missing_attributes.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/events_by_eventid.xml
-${PYSITELIB}/obspy/fdsn/tests/data/events_by_misc.xml
-${PYSITELIB}/obspy/fdsn/tests/data/events_by_time.xml
-${PYSITELIB}/obspy/fdsn/tests/data/station.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/station_helpstring.txt
-${PYSITELIB}/obspy/fdsn/tests/data/station_no_types.wadl
-${PYSITELIB}/obspy/fdsn/tests/data/stations_by_latlon.xml
-${PYSITELIB}/obspy/fdsn/tests/data/stations_by_misc.xml
-${PYSITELIB}/obspy/fdsn/tests/data/stations_by_station.xml
-${PYSITELIB}/obspy/fdsn/tests/data/stations_by_station_wildcard.xml
-${PYSITELIB}/obspy/fdsn/tests/data/usgs_event.wadl
-${PYSITELIB}/obspy/fdsn/tests/test_client.py
-${PYSITELIB}/obspy/fdsn/tests/test_client.pyc
-${PYSITELIB}/obspy/fdsn/tests/test_client.pyo
-${PYSITELIB}/obspy/fdsn/tests/test_wadl_parser.py
-${PYSITELIB}/obspy/fdsn/tests/test_wadl_parser.pyc
-${PYSITELIB}/obspy/fdsn/tests/test_wadl_parser.pyo
-${PYSITELIB}/obspy/fdsn/wadl_parser.py
-${PYSITELIB}/obspy/fdsn/wadl_parser.pyc
-${PYSITELIB}/obspy/fdsn/wadl_parser.pyo
-${PYSITELIB}/obspy/gse2/README.txt
-${PYSITELIB}/obspy/gse2/__init__.py
-${PYSITELIB}/obspy/gse2/__init__.pyc
-${PYSITELIB}/obspy/gse2/__init__.pyo
-${PYSITELIB}/obspy/gse2/core.py
-${PYSITELIB}/obspy/gse2/core.pyc
-${PYSITELIB}/obspy/gse2/core.pyo
-${PYSITELIB}/obspy/gse2/libgse1.py
-${PYSITELIB}/obspy/gse2/libgse1.pyc
-${PYSITELIB}/obspy/gse2/libgse1.pyo
-${PYSITELIB}/obspy/gse2/libgse2.py
-${PYSITELIB}/obspy/gse2/libgse2.pyc
-${PYSITELIB}/obspy/gse2/libgse2.pyo
-${PYSITELIB}/obspy/gse2/paz.py
-${PYSITELIB}/obspy/gse2/paz.pyc
-${PYSITELIB}/obspy/gse2/paz.pyo
-${PYSITELIB}/obspy/gse2/tests/__init__.py
-${PYSITELIB}/obspy/gse2/tests/__init__.pyc
-${PYSITELIB}/obspy/gse2/tests/__init__.pyo
-${PYSITELIB}/obspy/gse2/tests/data/GRF_031102_0225.GSE.wrong_chksum
-${PYSITELIB}/obspy/gse2/tests/data/STA2.testlines
-${PYSITELIB}/obspy/gse2/tests/data/STA2.testlines_out
-${PYSITELIB}/obspy/gse2/tests/data/acc.gse
-${PYSITELIB}/obspy/gse2/tests/data/broken_head.gse2
-${PYSITELIB}/obspy/gse2/tests/data/loc_RJOB20050831023349.z
-${PYSITELIB}/obspy/gse2/tests/data/loc_RJOB20050831023349.z.wrong_chksum
-${PYSITELIB}/obspy/gse2/tests/data/loc_RJOB20050831023349_first100_dos.z
-${PYSITELIB}/obspy/gse2/tests/data/loc_RNON20040609200559.z
-${PYSITELIB}/obspy/gse2/tests/data/loc_STAU20031119011659.z
-${PYSITELIB}/obspy/gse2/tests/data/sta2.gse2
-${PYSITELIB}/obspy/gse2/tests/data/twiceCHK2.gse2
-${PYSITELIB}/obspy/gse2/tests/data/y2000.gse
-${PYSITELIB}/obspy/gse2/tests/test_core.py
-${PYSITELIB}/obspy/gse2/tests/test_core.pyc
-${PYSITELIB}/obspy/gse2/tests/test_core.pyo
-${PYSITELIB}/obspy/gse2/tests/test_libgse1.py
-${PYSITELIB}/obspy/gse2/tests/test_libgse1.pyc
-${PYSITELIB}/obspy/gse2/tests/test_libgse1.pyo
-${PYSITELIB}/obspy/gse2/tests/test_libgse2.py
-${PYSITELIB}/obspy/gse2/tests/test_libgse2.pyc
-${PYSITELIB}/obspy/gse2/tests/test_libgse2.pyo
-${PYSITELIB}/obspy/gse2/tests/test_paz.py
-${PYSITELIB}/obspy/gse2/tests/test_paz.pyc
-${PYSITELIB}/obspy/gse2/tests/test_paz.pyo
+${PYSITELIB}/obspy/geodetics/__init__.py
+${PYSITELIB}/obspy/geodetics/__init__.pyc
+${PYSITELIB}/obspy/geodetics/__init__.pyo
+${PYSITELIB}/obspy/geodetics/base.py
+${PYSITELIB}/obspy/geodetics/base.pyc
+${PYSITELIB}/obspy/geodetics/base.pyo
+${PYSITELIB}/obspy/geodetics/data/Flinn-Engdahl.csv
+${PYSITELIB}/obspy/geodetics/data/names.asc
+${PYSITELIB}/obspy/geodetics/data/nesect.asc
+${PYSITELIB}/obspy/geodetics/data/nwsect.asc
+${PYSITELIB}/obspy/geodetics/data/quadsidx.asc
+${PYSITELIB}/obspy/geodetics/data/sesect.asc
+${PYSITELIB}/obspy/geodetics/data/swsect.asc
+${PYSITELIB}/obspy/geodetics/flinnengdahl.py
+${PYSITELIB}/obspy/geodetics/flinnengdahl.pyc
+${PYSITELIB}/obspy/geodetics/flinnengdahl.pyo
+${PYSITELIB}/obspy/geodetics/tests/__init__.py
+${PYSITELIB}/obspy/geodetics/tests/__init__.pyc
+${PYSITELIB}/obspy/geodetics/tests/__init__.pyo
+${PYSITELIB}/obspy/geodetics/tests/data/flinnengdahl.csv
+${PYSITELIB}/obspy/geodetics/tests/test_util_flinnengdahl.py
+${PYSITELIB}/obspy/geodetics/tests/test_util_flinnengdahl.pyc
+${PYSITELIB}/obspy/geodetics/tests/test_util_flinnengdahl.pyo
+${PYSITELIB}/obspy/geodetics/tests/test_util_geodetics.py
+${PYSITELIB}/obspy/geodetics/tests/test_util_geodetics.pyc
+${PYSITELIB}/obspy/geodetics/tests/test_util_geodetics.pyo
 ${PYSITELIB}/obspy/imaging/README.txt
 ${PYSITELIB}/obspy/imaging/__init__.py
 ${PYSITELIB}/obspy/imaging/__init__.pyc
@@ -499,6 +548,11 @@ ${PYSITELIB}/obspy/imaging/__init__.pyo
 ${PYSITELIB}/obspy/imaging/beachball.py
 ${PYSITELIB}/obspy/imaging/beachball.pyc
 ${PYSITELIB}/obspy/imaging/beachball.pyo
+${PYSITELIB}/obspy/imaging/cm.py
+${PYSITELIB}/obspy/imaging/cm.pyc
+${PYSITELIB}/obspy/imaging/cm.pyo
+${PYSITELIB}/obspy/imaging/data/pqlx.npz
+${PYSITELIB}/obspy/imaging/data/viridis.npz
 ${PYSITELIB}/obspy/imaging/maps.py
 ${PYSITELIB}/obspy/imaging/maps.pyc
 ${PYSITELIB}/obspy/imaging/maps.pyo
@@ -517,6 +571,9 @@ ${PYSITELIB}/obspy/imaging/scripts/plot.
 ${PYSITELIB}/obspy/imaging/scripts/scan.py
 ${PYSITELIB}/obspy/imaging/scripts/scan.pyc
 ${PYSITELIB}/obspy/imaging/scripts/scan.pyo
+${PYSITELIB}/obspy/imaging/source.py
+${PYSITELIB}/obspy/imaging/source.pyc
+${PYSITELIB}/obspy/imaging/source.pyo
 ${PYSITELIB}/obspy/imaging/spectrogram.py
 ${PYSITELIB}/obspy/imaging/spectrogram.pyc
 ${PYSITELIB}/obspy/imaging/spectrogram.pyo
@@ -551,6 +608,7 @@ ${PYSITELIB}/obspy/imaging/tests/images/
 ${PYSITELIB}/obspy/imaging/tests/images/bb_tottori_np1.png
 ${PYSITELIB}/obspy/imaging/tests/images/mopad_collection.png
 ${PYSITELIB}/obspy/imaging/tests/images/mopad_ev.gmt
+${PYSITELIB}/obspy/imaging/tests/images/mopad_fallback.png
 ${PYSITELIB}/obspy/imaging/tests/images/mopad_fill.gmt
 ${PYSITELIB}/obspy/imaging/tests/images/mopad_lines.gmt
 ${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_lambo.gmt
@@ -559,6 +617,7 @@ ${PYSITELIB}/obspy/imaging/tests/images/
 ${PYSITELIB}/obspy/imaging/tests/images/plot.png
 ${PYSITELIB}/obspy/imaging/tests/images/plot_nomerge.png
 ${PYSITELIB}/obspy/imaging/tests/images/ppsd.png
+${PYSITELIB}/obspy/imaging/tests/images/ppsd_cumulative.png
 ${PYSITELIB}/obspy/imaging/tests/images/scan.png
 ${PYSITELIB}/obspy/imaging/tests/images/scan_mult_sampl.png
 ${PYSITELIB}/obspy/imaging/tests/images/scan_times.png
@@ -573,6 +632,7 @@ ${PYSITELIB}/obspy/imaging/tests/images/
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_azim_section.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_binning_error.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_binning_error_2.png
+${PYSITELIB}/obspy/imaging/tests/images/waveform_color_section.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_complex_gap_few_samples.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_complex_gap_many_samples.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_dayplot.png
@@ -580,6 +640,7 @@ ${PYSITELIB}/obspy/imaging/tests/images/
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_dayplot_event.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_default_relative.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_default_section.png
+${PYSITELIB}/obspy/imaging/tests/images/waveform_horiz_section.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_labels.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_one_hour_few_samples.png
 ${PYSITELIB}/obspy/imaging/tests/images/waveform_one_hour_many_samples.png
@@ -608,6 +669,9 @@ ${PYSITELIB}/obspy/imaging/tests/test_pp
 ${PYSITELIB}/obspy/imaging/tests/test_scan.py
 ${PYSITELIB}/obspy/imaging/tests/test_scan.pyc
 ${PYSITELIB}/obspy/imaging/tests/test_scan.pyo
+${PYSITELIB}/obspy/imaging/tests/test_source.py
+${PYSITELIB}/obspy/imaging/tests/test_source.pyc
+${PYSITELIB}/obspy/imaging/tests/test_source.pyo
 ${PYSITELIB}/obspy/imaging/tests/test_spectrogram.py
 ${PYSITELIB}/obspy/imaging/tests/test_spectrogram.pyc
 ${PYSITELIB}/obspy/imaging/tests/test_spectrogram.pyo
@@ -620,45 +684,919 @@ ${PYSITELIB}/obspy/imaging/util.pyo
 ${PYSITELIB}/obspy/imaging/waveform.py
 ${PYSITELIB}/obspy/imaging/waveform.pyc
 ${PYSITELIB}/obspy/imaging/waveform.pyo
-${PYSITELIB}/obspy/iris/README.txt
-${PYSITELIB}/obspy/iris/__init__.py
-${PYSITELIB}/obspy/iris/__init__.pyc
-${PYSITELIB}/obspy/iris/__init__.pyo
-${PYSITELIB}/obspy/iris/client.py
-${PYSITELIB}/obspy/iris/client.pyc
-${PYSITELIB}/obspy/iris/client.pyo
-${PYSITELIB}/obspy/iris/tests/__init__.py
-${PYSITELIB}/obspy/iris/tests/__init__.pyc
-${PYSITELIB}/obspy/iris/tests/__init__.pyo
-${PYSITELIB}/obspy/iris/tests/data/IU.ANMO.00.BHZ.mseed
-${PYSITELIB}/obspy/iris/tests/data/IU.ANMO.00.BHZ.sacpz
-${PYSITELIB}/obspy/iris/tests/data/RESP.ANMO.IU.00.BHZ
-${PYSITELIB}/obspy/iris/tests/data/RESP.ANMO.IU._.BH_
-${PYSITELIB}/obspy/iris/tests/test_client.py
-${PYSITELIB}/obspy/iris/tests/test_client.pyc
-${PYSITELIB}/obspy/iris/tests/test_client.pyo
-${PYSITELIB}/obspy/kinemetrics/README.txt
-${PYSITELIB}/obspy/kinemetrics/__init__.py
-${PYSITELIB}/obspy/kinemetrics/__init__.pyc
-${PYSITELIB}/obspy/kinemetrics/__init__.pyo
-${PYSITELIB}/obspy/kinemetrics/core.py
-${PYSITELIB}/obspy/kinemetrics/core.pyc
-${PYSITELIB}/obspy/kinemetrics/core.pyo
-${PYSITELIB}/obspy/kinemetrics/evt.py
-${PYSITELIB}/obspy/kinemetrics/evt.pyc
-${PYSITELIB}/obspy/kinemetrics/evt.pyo
-${PYSITELIB}/obspy/kinemetrics/evt_base.py
-${PYSITELIB}/obspy/kinemetrics/evt_base.pyc
-${PYSITELIB}/obspy/kinemetrics/evt_base.pyo
-${PYSITELIB}/obspy/kinemetrics/tests/__init__.py
-${PYSITELIB}/obspy/kinemetrics/tests/__init__.pyc
-${PYSITELIB}/obspy/kinemetrics/tests/__init__.pyo
-${PYSITELIB}/obspy/kinemetrics/tests/data/BI008_MEMA-04823.evt
-${PYSITELIB}/obspy/kinemetrics/tests/data/BX456_MOLA-02351.evt
-${PYSITELIB}/obspy/kinemetrics/tests/data/NOUTF8.evt
-${PYSITELIB}/obspy/kinemetrics/tests/test_core.py
-${PYSITELIB}/obspy/kinemetrics/tests/test_core.pyc
-${PYSITELIB}/obspy/kinemetrics/tests/test_core.pyo
+${PYSITELIB}/obspy/io/__init__.py
+${PYSITELIB}/obspy/io/__init__.pyc
+${PYSITELIB}/obspy/io/__init__.pyo
+${PYSITELIB}/obspy/io/ah/README.txt
+${PYSITELIB}/obspy/io/ah/__init__.py
+${PYSITELIB}/obspy/io/ah/__init__.pyc
+${PYSITELIB}/obspy/io/ah/__init__.pyo
+${PYSITELIB}/obspy/io/ah/core.py
+${PYSITELIB}/obspy/io/ah/core.pyc
+${PYSITELIB}/obspy/io/ah/core.pyo
+${PYSITELIB}/obspy/io/ah/tests/__init__.py
+${PYSITELIB}/obspy/io/ah/tests/__init__.pyc
+${PYSITELIB}/obspy/io/ah/tests/__init__.pyo
+${PYSITELIB}/obspy/io/ah/tests/data/TSG/BRV.TSG.DS.lE21.asc
+${PYSITELIB}/obspy/io/ah/tests/data/TSG/BRV.TSG.DS.lE21.resp
+${PYSITELIB}/obspy/io/ah/tests/data/TSG/BRV.TSG.KSM.sE12.asc
+${PYSITELIB}/obspy/io/ah/tests/data/TSG/BRV.TSG.KSM.sE12.resp
+${PYSITELIB}/obspy/io/ah/tests/data/TSG/Readme_TSG_response.txt
+${PYSITELIB}/obspy/io/ah/tests/data/ah1.c
+${PYSITELIB}/obspy/io/ah/tests/data/ah1.f
+${PYSITELIB}/obspy/io/ah/tests/data/ah1.t
+${PYSITELIB}/obspy/io/ah/tests/data/ah2.c
+${PYSITELIB}/obspy/io/ah/tests/data/ah2.f
+${PYSITELIB}/obspy/io/ah/tests/data/ah2.f-e
+${PYSITELIB}/obspy/io/ah/tests/data/ah2.t
+${PYSITELIB}/obspy/io/ah/tests/data/hrv.lh.zne
+${PYSITELIB}/obspy/io/ah/tests/test_core.py
+${PYSITELIB}/obspy/io/ah/tests/test_core.pyc
+${PYSITELIB}/obspy/io/ah/tests/test_core.pyo
+${PYSITELIB}/obspy/io/ascii/__init__.py
+${PYSITELIB}/obspy/io/ascii/__init__.pyc
+${PYSITELIB}/obspy/io/ascii/__init__.pyo
+${PYSITELIB}/obspy/io/ascii/core.py
+${PYSITELIB}/obspy/io/ascii/core.pyc
+${PYSITELIB}/obspy/io/ascii/core.pyo
+${PYSITELIB}/obspy/io/ascii/tests/__init__.py
+${PYSITELIB}/obspy/io/ascii/tests/__init__.pyc
+${PYSITELIB}/obspy/io/ascii/tests/__init__.pyo
+${PYSITELIB}/obspy/io/ascii/tests/data/slist.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/slist.ascii.bz2
+${PYSITELIB}/obspy/io/ascii/tests/data/slist_2_traces.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/slist_float.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/slist_unknown.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/tspair.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/tspair.ascii.gz
+${PYSITELIB}/obspy/io/ascii/tests/data/tspair_2_traces.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/tspair_float.ascii
+${PYSITELIB}/obspy/io/ascii/tests/data/tspair_unknown.ascii
+${PYSITELIB}/obspy/io/ascii/tests/test_ascii.py
+${PYSITELIB}/obspy/io/ascii/tests/test_ascii.pyc
+${PYSITELIB}/obspy/io/ascii/tests/test_ascii.pyo
+${PYSITELIB}/obspy/io/cmtsolution/README.txt
+${PYSITELIB}/obspy/io/cmtsolution/__init__.py
+${PYSITELIB}/obspy/io/cmtsolution/__init__.pyc
+${PYSITELIB}/obspy/io/cmtsolution/__init__.pyo
+${PYSITELIB}/obspy/io/cmtsolution/core.py
+${PYSITELIB}/obspy/io/cmtsolution/core.pyc
+${PYSITELIB}/obspy/io/cmtsolution/core.pyo
+${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.py
+${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyc
+${PYSITELIB}/obspy/io/cmtsolution/tests/__init__.pyo
+${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION
+${PYSITELIB}/obspy/io/cmtsolution/tests/data/CMTSOLUTION_EXPLOSION
+${PYSITELIB}/obspy/io/cmtsolution/tests/data/MULTIPLE_EVENTS
+${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.py
+${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyc
+${PYSITELIB}/obspy/io/cmtsolution/tests/test_core.pyo
+${PYSITELIB}/obspy/io/cnv/README.txt
+${PYSITELIB}/obspy/io/cnv/__init__.py
+${PYSITELIB}/obspy/io/cnv/__init__.pyc
+${PYSITELIB}/obspy/io/cnv/__init__.pyo
+${PYSITELIB}/obspy/io/cnv/core.py
+${PYSITELIB}/obspy/io/cnv/core.pyc
+${PYSITELIB}/obspy/io/cnv/core.pyo
+${PYSITELIB}/obspy/io/cnv/tests/__init__.py
+${PYSITELIB}/obspy/io/cnv/tests/__init__.pyc
+${PYSITELIB}/obspy/io/cnv/tests/__init__.pyo
+${PYSITELIB}/obspy/io/cnv/tests/data/obspyck_20141020150701.cnv
+${PYSITELIB}/obspy/io/cnv/tests/data/obspyck_20141020150701.xml
+${PYSITELIB}/obspy/io/cnv/tests/test_core.py
+${PYSITELIB}/obspy/io/cnv/tests/test_core.pyc
+${PYSITELIB}/obspy/io/cnv/tests/test_core.pyo
+${PYSITELIB}/obspy/io/css/README.txt
+${PYSITELIB}/obspy/io/css/__init__.py
+${PYSITELIB}/obspy/io/css/__init__.pyc
+${PYSITELIB}/obspy/io/css/__init__.pyo
+${PYSITELIB}/obspy/io/css/core.py
+${PYSITELIB}/obspy/io/css/core.pyc
+${PYSITELIB}/obspy/io/css/core.pyo
+${PYSITELIB}/obspy/io/css/station.py
+${PYSITELIB}/obspy/io/css/station.pyc
+${PYSITELIB}/obspy/io/css/station.pyo
+${PYSITELIB}/obspy/io/css/tests/__init__.py
+${PYSITELIB}/obspy/io/css/tests/__init__.pyc
+${PYSITELIB}/obspy/io/css/tests/__init__.pyo
+${PYSITELIB}/obspy/io/css/tests/data/201101311155.10.ascii.gz
+${PYSITELIB}/obspy/io/css/tests/data/201101311155.10.be.w
+${PYSITELIB}/obspy/io/css/tests/data/201101311155.10.le.w
+${PYSITELIB}/obspy/io/css/tests/data/README
+${PYSITELIB}/obspy/io/css/tests/data/css2ascii.c
+${PYSITELIB}/obspy/io/css/tests/data/station/default.affiliation
+${PYSITELIB}/obspy/io/css/tests/data/station/default.network
+${PYSITELIB}/obspy/io/css/tests/data/station/default.remark
+${PYSITELIB}/obspy/io/css/tests/data/station/default.site
+${PYSITELIB}/obspy/io/css/tests/data/station/default.sitechan
+${PYSITELIB}/obspy/io/css/tests/data/test.wfdisc
+${PYSITELIB}/obspy/io/css/tests/test_core.py
+${PYSITELIB}/obspy/io/css/tests/test_core.pyc
+${PYSITELIB}/obspy/io/css/tests/test_core.pyo
+${PYSITELIB}/obspy/io/css/tests/test_station.py
+${PYSITELIB}/obspy/io/css/tests/test_station.pyc
+${PYSITELIB}/obspy/io/css/tests/test_station.pyo
+${PYSITELIB}/obspy/io/datamark/README.txt
+${PYSITELIB}/obspy/io/datamark/__init__.py
+${PYSITELIB}/obspy/io/datamark/__init__.pyc
+${PYSITELIB}/obspy/io/datamark/__init__.pyo
+${PYSITELIB}/obspy/io/datamark/core.py
+${PYSITELIB}/obspy/io/datamark/core.pyc
+${PYSITELIB}/obspy/io/datamark/core.pyo
+${PYSITELIB}/obspy/io/datamark/tests/__init__.py
+${PYSITELIB}/obspy/io/datamark/tests/__init__.pyc
+${PYSITELIB}/obspy/io/datamark/tests/__init__.pyo
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.00
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.01
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.02
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.03
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.04
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.05
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.06
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.07
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.08
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.09
+${PYSITELIB}/obspy/io/datamark/tests/data/10030302.10
+${PYSITELIB}/obspy/io/datamark/tests/test_core.py
+${PYSITELIB}/obspy/io/datamark/tests/test_core.pyc
+${PYSITELIB}/obspy/io/datamark/tests/test_core.pyo
+${PYSITELIB}/obspy/io/gse2/README.txt
+${PYSITELIB}/obspy/io/gse2/__init__.py
+${PYSITELIB}/obspy/io/gse2/__init__.pyc
+${PYSITELIB}/obspy/io/gse2/__init__.pyo
+${PYSITELIB}/obspy/io/gse2/core.py
+${PYSITELIB}/obspy/io/gse2/core.pyc
+${PYSITELIB}/obspy/io/gse2/core.pyo
+${PYSITELIB}/obspy/io/gse2/libgse1.py
+${PYSITELIB}/obspy/io/gse2/libgse1.pyc
+${PYSITELIB}/obspy/io/gse2/libgse1.pyo
+${PYSITELIB}/obspy/io/gse2/libgse2.py
+${PYSITELIB}/obspy/io/gse2/libgse2.pyc
+${PYSITELIB}/obspy/io/gse2/libgse2.pyo
+${PYSITELIB}/obspy/io/gse2/paz.py
+${PYSITELIB}/obspy/io/gse2/paz.pyc
+${PYSITELIB}/obspy/io/gse2/paz.pyo
+${PYSITELIB}/obspy/io/gse2/tests/__init__.py
+${PYSITELIB}/obspy/io/gse2/tests/__init__.pyc
+${PYSITELIB}/obspy/io/gse2/tests/__init__.pyo
+${PYSITELIB}/obspy/io/gse2/tests/data/GRF_031102_0225.GSE.wrong_chksum
+${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines
+${PYSITELIB}/obspy/io/gse2/tests/data/STA2.testlines_out
+${PYSITELIB}/obspy/io/gse2/tests/data/acc.gse
+${PYSITELIB}/obspy/io/gse2/tests/data/broken_head.gse2
+${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z
+${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349.z.wrong_chksum
+${PYSITELIB}/obspy/io/gse2/tests/data/loc_RJOB20050831023349_first100_dos.z
+${PYSITELIB}/obspy/io/gse2/tests/data/loc_RNON20040609200559.z
+${PYSITELIB}/obspy/io/gse2/tests/data/loc_STAU20031119011659.z
+${PYSITELIB}/obspy/io/gse2/tests/data/sta2.gse2
+${PYSITELIB}/obspy/io/gse2/tests/data/twiceCHK2.gse2
+${PYSITELIB}/obspy/io/gse2/tests/data/y2000.gse
+${PYSITELIB}/obspy/io/gse2/tests/test_core.py
+${PYSITELIB}/obspy/io/gse2/tests/test_core.pyc
+${PYSITELIB}/obspy/io/gse2/tests/test_core.pyo
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.py
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyc
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse1.pyo
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.py
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyc
+${PYSITELIB}/obspy/io/gse2/tests/test_libgse2.pyo
+${PYSITELIB}/obspy/io/gse2/tests/test_paz.py
+${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyc
+${PYSITELIB}/obspy/io/gse2/tests/test_paz.pyo
+${PYSITELIB}/obspy/io/json/__init__.py
+${PYSITELIB}/obspy/io/json/__init__.pyc
+${PYSITELIB}/obspy/io/json/__init__.pyo
+${PYSITELIB}/obspy/io/json/core.py
+${PYSITELIB}/obspy/io/json/core.pyc
+${PYSITELIB}/obspy/io/json/core.pyo
+${PYSITELIB}/obspy/io/json/default.py
+${PYSITELIB}/obspy/io/json/default.pyc
+${PYSITELIB}/obspy/io/json/default.pyo
+${PYSITELIB}/obspy/io/json/tests/__init__.py
+${PYSITELIB}/obspy/io/json/tests/__init__.pyc
+${PYSITELIB}/obspy/io/json/tests/__init__.pyo
+${PYSITELIB}/obspy/io/json/tests/test_json.py
+${PYSITELIB}/obspy/io/json/tests/test_json.pyc
+${PYSITELIB}/obspy/io/json/tests/test_json.pyo
+${PYSITELIB}/obspy/io/kinemetrics/README.txt
+${PYSITELIB}/obspy/io/kinemetrics/__init__.py
+${PYSITELIB}/obspy/io/kinemetrics/__init__.pyc
+${PYSITELIB}/obspy/io/kinemetrics/__init__.pyo
+${PYSITELIB}/obspy/io/kinemetrics/core.py
+${PYSITELIB}/obspy/io/kinemetrics/core.pyc
+${PYSITELIB}/obspy/io/kinemetrics/core.pyo
+${PYSITELIB}/obspy/io/kinemetrics/evt.py
+${PYSITELIB}/obspy/io/kinemetrics/evt.pyc
+${PYSITELIB}/obspy/io/kinemetrics/evt.pyo
+${PYSITELIB}/obspy/io/kinemetrics/evt_base.py
+${PYSITELIB}/obspy/io/kinemetrics/evt_base.pyc
+${PYSITELIB}/obspy/io/kinemetrics/evt_base.pyo
+${PYSITELIB}/obspy/io/kinemetrics/tests/__init__.py
+${PYSITELIB}/obspy/io/kinemetrics/tests/__init__.pyc
+${PYSITELIB}/obspy/io/kinemetrics/tests/__init__.pyo
+${PYSITELIB}/obspy/io/kinemetrics/tests/data/BI008_MEMA-04823.evt
+${PYSITELIB}/obspy/io/kinemetrics/tests/data/BX456_MOLA-02351.evt
+${PYSITELIB}/obspy/io/kinemetrics/tests/data/NOUTF8.evt
+${PYSITELIB}/obspy/io/kinemetrics/tests/test_core.py
+${PYSITELIB}/obspy/io/kinemetrics/tests/test_core.pyc
+${PYSITELIB}/obspy/io/kinemetrics/tests/test_core.pyo
+${PYSITELIB}/obspy/io/kml/__init__.py
+${PYSITELIB}/obspy/io/kml/__init__.pyc
+${PYSITELIB}/obspy/io/kml/__init__.pyo
+${PYSITELIB}/obspy/io/kml/core.py
+${PYSITELIB}/obspy/io/kml/core.pyc
+${PYSITELIB}/obspy/io/kml/core.pyo
+${PYSITELIB}/obspy/io/kml/tests/__init__.py
+${PYSITELIB}/obspy/io/kml/tests/__init__.pyc
+${PYSITELIB}/obspy/io/kml/tests/__init__.pyo
+${PYSITELIB}/obspy/io/kml/tests/data/catalog.kml
+${PYSITELIB}/obspy/io/kml/tests/data/inventory.kml
+${PYSITELIB}/obspy/io/kml/tests/test_kml.py
+${PYSITELIB}/obspy/io/kml/tests/test_kml.pyc
+${PYSITELIB}/obspy/io/kml/tests/test_kml.pyo
+${PYSITELIB}/obspy/io/mseed/README.txt
+${PYSITELIB}/obspy/io/mseed/__init__.py
+${PYSITELIB}/obspy/io/mseed/__init__.pyc
+${PYSITELIB}/obspy/io/mseed/__init__.pyo
+${PYSITELIB}/obspy/io/mseed/core.py
+${PYSITELIB}/obspy/io/mseed/core.pyc
+${PYSITELIB}/obspy/io/mseed/core.pyo
+${PYSITELIB}/obspy/io/mseed/headers.py
+${PYSITELIB}/obspy/io/mseed/headers.pyc
+${PYSITELIB}/obspy/io/mseed/headers.pyo
+${PYSITELIB}/obspy/io/mseed/msstruct.py
+${PYSITELIB}/obspy/io/mseed/msstruct.pyc
+${PYSITELIB}/obspy/io/mseed/msstruct.pyo
+${PYSITELIB}/obspy/io/mseed/scripts/__init__.py
+${PYSITELIB}/obspy/io/mseed/scripts/__init__.pyc
+${PYSITELIB}/obspy/io/mseed/scripts/__init__.pyo
+${PYSITELIB}/obspy/io/mseed/scripts/recordanalyzer.py
+${PYSITELIB}/obspy/io/mseed/scripts/recordanalyzer.pyc
+${PYSITELIB}/obspy/io/mseed/scripts/recordanalyzer.pyo
+${PYSITELIB}/obspy/io/mseed/tests/__init__.py
+${PYSITELIB}/obspy/io/mseed/tests/__init__.pyc
+${PYSITELIB}/obspy/io/mseed/tests/__init__.pyo
+${PYSITELIB}/obspy/io/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.first_10_records
+${PYSITELIB}/obspy/io/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.first_record
+${PYSITELIB}/obspy/io/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.second_record
+${PYSITELIB}/obspy/io/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.third_record
+${PYSITELIB}/obspy/io/mseed/tests/data/BW.UH3.__.EHZ.D.2010.171.first_record
+${PYSITELIB}/obspy/io/mseed/tests/data/CDSN_encoding.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/DWWSSN_encoding.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/GEOSCOPE16_4_encoding.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/RJOB.BW.EHZ.D.300806.0000.fullseed
+${PYSITELIB}/obspy/io/mseed/tests/data/SRO_encoding.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/WUQ.XJ.HHN.D.2008.285.first_record
+${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.be-data.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.be-header.le-data.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.be-data.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/endiantest.le-header.le-data.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/blockette008.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/brokenlastrecord.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/constructedFileToTestReadViaRecords.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/corrupt_one_extra_byte_at_end.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/dataquality-m.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float32_Float32_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/float64_Float64_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/fullASCII_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int16_INT16_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_INT32_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_INT32_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_Steim1_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_Steim1_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_Steim2_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/int32_Steim2_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/nan_float32.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/nan_float64.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/smallASCII_bigEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/encoding/smallASCII_littleEndian.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/fullseed.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/fullseed_dataquality_M.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/fullseed_dataquality_Q.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/fullseed_dataquality_R.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/gaps.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/infinite-loop.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/not.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/not2.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/not3.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/not4.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/one_record_already_applied_time_correction.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/one_record_time_corr_applied_but_time_corr_is_zero.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/qualityflags.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/reclen_1024_without_sequence_numbers.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/steim2.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/test.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/timingquality.mseed
+${PYSITELIB}/obspy/io/mseed/tests/data/two_channels.mseed
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_reading_and_writing.py
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_reading_and_writing.pyc
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_reading_and_writing.pyo
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_special_issues.py
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_special_issues.pyc
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_special_issues.pyo
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_util.py
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_util.pyc
+${PYSITELIB}/obspy/io/mseed/tests/test_mseed_util.pyo
+${PYSITELIB}/obspy/io/mseed/tests/test_recordanalyzer.py
+${PYSITELIB}/obspy/io/mseed/tests/test_recordanalyzer.pyc
+${PYSITELIB}/obspy/io/mseed/tests/test_recordanalyzer.pyo
+${PYSITELIB}/obspy/io/mseed/util.py
+${PYSITELIB}/obspy/io/mseed/util.pyc
+${PYSITELIB}/obspy/io/mseed/util.pyo
+${PYSITELIB}/obspy/io/ndk/README.txt
+${PYSITELIB}/obspy/io/ndk/__init__.py
+${PYSITELIB}/obspy/io/ndk/__init__.pyc
+${PYSITELIB}/obspy/io/ndk/__init__.pyo
+${PYSITELIB}/obspy/io/ndk/core.py
+${PYSITELIB}/obspy/io/ndk/core.pyc
+${PYSITELIB}/obspy/io/ndk/core.pyo
+${PYSITELIB}/obspy/io/ndk/tests/__init__.py
+${PYSITELIB}/obspy/io/ndk/tests/__init__.pyc
+${PYSITELIB}/obspy/io/ndk/tests/__init__.pyo
+${PYSITELIB}/obspy/io/ndk/tests/data/C200604092050A.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/C200604092050A.xml
+${PYSITELIB}/obspy/io/ndk/tests/data/faulty_cmt_timestamp.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/faulty_infeasible_latitude.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/faulty_invalid_date.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/faulty_invalid_latitude.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/faulty_multiple_events.ndk
+${PYSITELIB}/obspy/io/ndk/tests/data/multiple_events.ndk
+${PYSITELIB}/obspy/io/ndk/tests/test_ndk.py
+${PYSITELIB}/obspy/io/ndk/tests/test_ndk.pyc
+${PYSITELIB}/obspy/io/ndk/tests/test_ndk.pyo
+${PYSITELIB}/obspy/io/nied/__init__.py
+${PYSITELIB}/obspy/io/nied/__init__.pyc
+${PYSITELIB}/obspy/io/nied/__init__.pyo
+${PYSITELIB}/obspy/io/nied/fnetmt.py
+${PYSITELIB}/obspy/io/nied/fnetmt.pyc
+${PYSITELIB}/obspy/io/nied/fnetmt.pyo
+${PYSITELIB}/obspy/io/nied/knet.py
+${PYSITELIB}/obspy/io/nied/knet.pyc
+${PYSITELIB}/obspy/io/nied/knet.pyo
+${PYSITELIB}/obspy/io/nied/tests/__init__.py
+${PYSITELIB}/obspy/io/nied/tests/__init__.pyc
+${PYSITELIB}/obspy/io/nied/tests/__init__.pyo
+${PYSITELIB}/obspy/io/nied/tests/data/FNETMTCATALOG
+${PYSITELIB}/obspy/io/nied/tests/data/test.knet
+${PYSITELIB}/obspy/io/nied/tests/test_fnetmt_reading.py
+${PYSITELIB}/obspy/io/nied/tests/test_fnetmt_reading.pyc
+${PYSITELIB}/obspy/io/nied/tests/test_fnetmt_reading.pyo
+${PYSITELIB}/obspy/io/nied/tests/test_knet_reading.py
+${PYSITELIB}/obspy/io/nied/tests/test_knet_reading.pyc
+${PYSITELIB}/obspy/io/nied/tests/test_knet_reading.pyo
+${PYSITELIB}/obspy/io/nied/util.py
+${PYSITELIB}/obspy/io/nied/util.pyc
+${PYSITELIB}/obspy/io/nied/util.pyo
+${PYSITELIB}/obspy/io/nlloc/README.txt
+${PYSITELIB}/obspy/io/nlloc/__init__.py
+${PYSITELIB}/obspy/io/nlloc/__init__.pyc
+${PYSITELIB}/obspy/io/nlloc/__init__.pyo
+${PYSITELIB}/obspy/io/nlloc/core.py
+${PYSITELIB}/obspy/io/nlloc/core.pyc
+${PYSITELIB}/obspy/io/nlloc/core.pyo
+${PYSITELIB}/obspy/io/nlloc/tests/__init__.py
+${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyc
+${PYSITELIB}/obspy/io/nlloc/tests/__init__.pyo
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.hyp
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.obs
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.qml
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc.scat
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat.npy
+${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat_converted.npy
+${PYSITELIB}/obspy/io/nlloc/tests/test_core.py
+${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyc
+${PYSITELIB}/obspy/io/nlloc/tests/test_core.pyo
+${PYSITELIB}/obspy/io/nlloc/tests/test_util.py
+${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyc
+${PYSITELIB}/obspy/io/nlloc/tests/test_util.pyo
+${PYSITELIB}/obspy/io/nlloc/util.py
+${PYSITELIB}/obspy/io/nlloc/util.pyc
+${PYSITELIB}/obspy/io/nlloc/util.pyo
+${PYSITELIB}/obspy/io/pdas/__init__.py
+${PYSITELIB}/obspy/io/pdas/__init__.pyc
+${PYSITELIB}/obspy/io/pdas/__init__.pyo
+${PYSITELIB}/obspy/io/pdas/core.py
+${PYSITELIB}/obspy/io/pdas/core.pyc
+${PYSITELIB}/obspy/io/pdas/core.pyo
+${PYSITELIB}/obspy/io/pdas/tests/__init__.py
+${PYSITELIB}/obspy/io/pdas/tests/__init__.pyc
+${PYSITELIB}/obspy/io/pdas/tests/__init__.pyo
+${PYSITELIB}/obspy/io/pdas/tests/data/p1246001.108
+${PYSITELIB}/obspy/io/pdas/tests/test_core.py
+${PYSITELIB}/obspy/io/pdas/tests/test_core.pyc
+${PYSITELIB}/obspy/io/pdas/tests/test_core.pyo
+${PYSITELIB}/obspy/io/pde/README.txt
+${PYSITELIB}/obspy/io/pde/__init__.py
+${PYSITELIB}/obspy/io/pde/__init__.pyc
+${PYSITELIB}/obspy/io/pde/__init__.pyo
+${PYSITELIB}/obspy/io/pde/mchedr.py
+${PYSITELIB}/obspy/io/pde/mchedr.pyc
+${PYSITELIB}/obspy/io/pde/mchedr.pyo
+${PYSITELIB}/obspy/io/pde/tests/__init__.py
+${PYSITELIB}/obspy/io/pde/tests/__init__.pyc
+${PYSITELIB}/obspy/io/pde/tests/__init__.pyo
+${PYSITELIB}/obspy/io/pde/tests/data/mchedr.dat
+${PYSITELIB}/obspy/io/pde/tests/test_mchedr.py
+${PYSITELIB}/obspy/io/pde/tests/test_mchedr.pyc
+${PYSITELIB}/obspy/io/pde/tests/test_mchedr.pyo
+${PYSITELIB}/obspy/io/quakeml/__init__.py
+${PYSITELIB}/obspy/io/quakeml/__init__.pyc
+${PYSITELIB}/obspy/io/quakeml/__init__.pyo
+${PYSITELIB}/obspy/io/quakeml/core.py
+${PYSITELIB}/obspy/io/quakeml/core.pyc
+${PYSITELIB}/obspy/io/quakeml/core.pyo
+${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.rng
+${PYSITELIB}/obspy/io/quakeml/data/QuakeML-1.2.xsd
+${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.rng
+${PYSITELIB}/obspy/io/quakeml/data/QuakeML-BED-1.2.xsd
+${PYSITELIB}/obspy/io/quakeml/tests/__init__.py
+${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyc
+${PYSITELIB}/obspy/io/quakeml/tests/__init__.pyo
+${PYSITELIB}/obspy/io/quakeml/tests/data/iris_events.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/neries_events.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/preferred.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/qml-example-1.2-RC3.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_arrival.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_data_used.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_event.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_focalmechanism.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_magnitude.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_origin.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_pick.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitude.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/quakeml_1.2_stationmagnitudecontributions.xml
+${PYSITELIB}/obspy/io/quakeml/tests/data/usgs_event.xml
+${PYSITELIB}/obspy/io/quakeml/tests/test_quakeml.py
+${PYSITELIB}/obspy/io/quakeml/tests/test_quakeml.pyc
+${PYSITELIB}/obspy/io/quakeml/tests/test_quakeml.pyo
+${PYSITELIB}/obspy/io/sac/README.txt
+${PYSITELIB}/obspy/io/sac/__init__.py
+${PYSITELIB}/obspy/io/sac/__init__.pyc
+${PYSITELIB}/obspy/io/sac/__init__.pyo
+${PYSITELIB}/obspy/io/sac/arrayio.py
+${PYSITELIB}/obspy/io/sac/arrayio.pyc
+${PYSITELIB}/obspy/io/sac/arrayio.pyo
+${PYSITELIB}/obspy/io/sac/core.py
+${PYSITELIB}/obspy/io/sac/core.pyc
+${PYSITELIB}/obspy/io/sac/core.pyo
+${PYSITELIB}/obspy/io/sac/header.py
+${PYSITELIB}/obspy/io/sac/header.pyc
+${PYSITELIB}/obspy/io/sac/header.pyo
+${PYSITELIB}/obspy/io/sac/sacpz.py
+${PYSITELIB}/obspy/io/sac/sacpz.pyc
+${PYSITELIB}/obspy/io/sac/sacpz.pyo
+${PYSITELIB}/obspy/io/sac/sactrace.py
+${PYSITELIB}/obspy/io/sac/sactrace.pyc
+${PYSITELIB}/obspy/io/sac/sactrace.pyo
+${PYSITELIB}/obspy/io/sac/tests/__init__.py
+${PYSITELIB}/obspy/io/sac/tests/__init__.pyc
+${PYSITELIB}/obspy/io/sac/tests/__init__.pyo
+${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_00_BHZ.sacpz
+${PYSITELIB}/obspy/io/sac/tests/data/IU_ANMO_BH.sacpz
+${PYSITELIB}/obspy/io/sac/tests/data/LMOW.BHE.SAC
+${PYSITELIB}/obspy/io/sac/tests/data/NZCRLZ_HHZ10.pz
+${PYSITELIB}/obspy/io/sac/tests/data/RESP.NZ.CRLZ.10.HHZ
+${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_CRLZ_HHZ
+${PYSITELIB}/obspy/io/sac/tests/data/SAC_PZs_NZ_HHZ_10
+${PYSITELIB}/obspy/io/sac/tests/data/dis.G.SCZ.__.BHE_short
+${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.003.sac
+${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_interpolated_delta_0.077.sac
+${PYSITELIB}/obspy/io/sac/tests/data/interpolation_test_random_waveform_delta_0.01_npts_50.sac
+${PYSITELIB}/obspy/io/sac/tests/data/null_terminated.sac
+${PYSITELIB}/obspy/io/sac/tests/data/seism-longer.sac
+${PYSITELIB}/obspy/io/sac/tests/data/seism-shorter.sac
+${PYSITELIB}/obspy/io/sac/tests/data/seism.sac
+${PYSITELIB}/obspy/io/sac/tests/data/test.sac
+${PYSITELIB}/obspy/io/sac/tests/data/test.sac.swap
+${PYSITELIB}/obspy/io/sac/tests/data/testxy.sac
+${PYSITELIB}/obspy/io/sac/tests/test_core.py
+${PYSITELIB}/obspy/io/sac/tests/test_core.pyc
+${PYSITELIB}/obspy/io/sac/tests/test_core.pyo
+${PYSITELIB}/obspy/io/sac/tests/test_sacpz.py
+${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyc
+${PYSITELIB}/obspy/io/sac/tests/test_sacpz.pyo
+${PYSITELIB}/obspy/io/sac/tests/test_sactrace.py
+${PYSITELIB}/obspy/io/sac/tests/test_sactrace.pyc
+${PYSITELIB}/obspy/io/sac/tests/test_sactrace.pyo
+${PYSITELIB}/obspy/io/sac/util.py
+${PYSITELIB}/obspy/io/sac/util.pyc
+${PYSITELIB}/obspy/io/sac/util.pyo
+${PYSITELIB}/obspy/io/seg2/README.txt
+${PYSITELIB}/obspy/io/seg2/__init__.py
+${PYSITELIB}/obspy/io/seg2/__init__.pyc
+${PYSITELIB}/obspy/io/seg2/__init__.pyo
+${PYSITELIB}/obspy/io/seg2/header.py
+${PYSITELIB}/obspy/io/seg2/header.pyc
+${PYSITELIB}/obspy/io/seg2/header.pyo
+${PYSITELIB}/obspy/io/seg2/seg2.py
+${PYSITELIB}/obspy/io/seg2/seg2.pyc
+${PYSITELIB}/obspy/io/seg2/seg2.pyo
+${PYSITELIB}/obspy/io/seg2/tests/__init__.py
+${PYSITELIB}/obspy/io/seg2/tests/__init__.pyc
+${PYSITELIB}/obspy/io/seg2/tests/__init__.pyo
+${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.DAT.gz
+${PYSITELIB}/obspy/io/seg2/tests/data/20130107_103041000.CET.3c.cont.0.seg2.gz
+${PYSITELIB}/obspy/io/seg2/tests/test_seg2.py
+${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyc
+${PYSITELIB}/obspy/io/seg2/tests/test_seg2.pyo
+${PYSITELIB}/obspy/io/segy/README.txt
+${PYSITELIB}/obspy/io/segy/__init__.py
+${PYSITELIB}/obspy/io/segy/__init__.pyc
+${PYSITELIB}/obspy/io/segy/__init__.pyo
+${PYSITELIB}/obspy/io/segy/core.py
+${PYSITELIB}/obspy/io/segy/core.pyc
+${PYSITELIB}/obspy/io/segy/core.pyo
+${PYSITELIB}/obspy/io/segy/header.py
+${PYSITELIB}/obspy/io/segy/header.pyc
+${PYSITELIB}/obspy/io/segy/header.pyo
+${PYSITELIB}/obspy/io/segy/pack.py
+${PYSITELIB}/obspy/io/segy/pack.pyc
+${PYSITELIB}/obspy/io/segy/pack.pyo
+${PYSITELIB}/obspy/io/segy/segy.py
+${PYSITELIB}/obspy/io/segy/segy.pyc
+${PYSITELIB}/obspy/io/segy/segy.pyo
+${PYSITELIB}/obspy/io/segy/tests/__init__.py
+${PYSITELIB}/obspy/io/segy/tests/__init__.pyc
+${PYSITELIB}/obspy/io/segy/tests/__init__.pyo
+${PYSITELIB}/obspy/io/segy/tests/data/00001034.sgy_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/00001034.sgy_first_trace.npy
+${PYSITELIB}/obspy/io/segy/tests/data/1.sgy_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/1.sgy_first_trace.npy
+${PYSITELIB}/obspy/io/segy/tests/data/1.su_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/example.y_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/example.y_first_trace.npy
+${PYSITELIB}/obspy/io/segy/tests/data/ld0042_file_00018.sgy_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/ld0042_file_00018.sgy_first_trace.npy
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_11.sgy
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_11.sgy.npy
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_11.su
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_99.sgy
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_99.sgy.npy
+${PYSITELIB}/obspy/io/segy/tests/data/one_trace_year_99.su
+${PYSITELIB}/obspy/io/segy/tests/data/planes.segy_first_trace
+${PYSITELIB}/obspy/io/segy/tests/data/planes.segy_first_trace.npy
+${PYSITELIB}/obspy/io/segy/tests/data/readme.txt
+${PYSITELIB}/obspy/io/segy/tests/header.py
+${PYSITELIB}/obspy/io/segy/tests/header.pyc
+${PYSITELIB}/obspy/io/segy/tests/header.pyo
+${PYSITELIB}/obspy/io/segy/tests/test_core.py
+${PYSITELIB}/obspy/io/segy/tests/test_core.pyc
+${PYSITELIB}/obspy/io/segy/tests/test_core.pyo
+${PYSITELIB}/obspy/io/segy/tests/test_segy.py
+${PYSITELIB}/obspy/io/segy/tests/test_segy.pyc
+${PYSITELIB}/obspy/io/segy/tests/test_segy.pyo
+${PYSITELIB}/obspy/io/segy/tests/test_su.py
+${PYSITELIB}/obspy/io/segy/tests/test_su.pyc
+${PYSITELIB}/obspy/io/segy/tests/test_su.pyo
+${PYSITELIB}/obspy/io/segy/unpack.py
+${PYSITELIB}/obspy/io/segy/unpack.pyc
+${PYSITELIB}/obspy/io/segy/unpack.pyo
+${PYSITELIB}/obspy/io/segy/util.py
+${PYSITELIB}/obspy/io/segy/util.pyc
+${PYSITELIB}/obspy/io/segy/util.pyo
+${PYSITELIB}/obspy/io/seisan/README.txt
+${PYSITELIB}/obspy/io/seisan/__init__.py
+${PYSITELIB}/obspy/io/seisan/__init__.pyc
+${PYSITELIB}/obspy/io/seisan/__init__.pyo
+${PYSITELIB}/obspy/io/seisan/core.py
+${PYSITELIB}/obspy/io/seisan/core.pyc
+${PYSITELIB}/obspy/io/seisan/core.pyo
+${PYSITELIB}/obspy/io/seisan/tests/__init__.py
+${PYSITELIB}/obspy/io/seisan/tests/__init__.pyc
+${PYSITELIB}/obspy/io/seisan/tests/__init__.pyo
+${PYSITELIB}/obspy/io/seisan/tests/data/1996-06-03-1917-52S.TEST__002
+${PYSITELIB}/obspy/io/seisan/tests/data/2001-01-13-1742-24S.KONO__004
+${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1
+${PYSITELIB}/obspy/io/seisan/tests/data/MBGBSBJE
+${PYSITELIB}/obspy/io/seisan/tests/data/SEISAN_Bug/2011-09-06-1311-36S.A1032_001BH_Z
+${PYSITELIB}/obspy/io/seisan/tests/data/SEISAN_Bug/2011-09-06-1311-36S.A1032_001BH_Z_MSEED
+${PYSITELIB}/obspy/io/seisan/tests/test_core.py
+${PYSITELIB}/obspy/io/seisan/tests/test_core.pyc
+${PYSITELIB}/obspy/io/seisan/tests/test_core.pyo
+${PYSITELIB}/obspy/io/seiscomp/__init__.py
+${PYSITELIB}/obspy/io/seiscomp/__init__.pyc
+${PYSITELIB}/obspy/io/seiscomp/__init__.pyo
+${PYSITELIB}/obspy/io/seiscomp/data/quakeml_types.xsd
+${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7.xsd
+${PYSITELIB}/obspy/io/seiscomp/sc3ml.py
+${PYSITELIB}/obspy/io/seiscomp/sc3ml.pyc
+${PYSITELIB}/obspy/io/seiscomp/sc3ml.pyo
+${PYSITELIB}/obspy/io/seiscomp/tests/__init__.py
+${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyc
+${PYSITELIB}/obspy/io/seiscomp/tests/__init__.pyo
+${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_sc3ml
+${PYSITELIB}/obspy/io/seiscomp/tests/data/EB_response_stationXML
+${PYSITELIB}/obspy/io/seiscomp/tests/test_sc3ml.py
+${PYSITELIB}/obspy/io/seiscomp/tests/test_sc3ml.pyc
+${PYSITELIB}/obspy/io/seiscomp/tests/test_sc3ml.pyo
+${PYSITELIB}/obspy/io/sh/README.txt
+${PYSITELIB}/obspy/io/sh/__init__.py
+${PYSITELIB}/obspy/io/sh/__init__.pyc
+${PYSITELIB}/obspy/io/sh/__init__.pyo
+${PYSITELIB}/obspy/io/sh/core.py
+${PYSITELIB}/obspy/io/sh/core.pyc
+${PYSITELIB}/obspy/io/sh/core.pyo
+${PYSITELIB}/obspy/io/sh/tests/__init__.py
+${PYSITELIB}/obspy/io/sh/tests/__init__.pyc
+${PYSITELIB}/obspy/io/sh/tests/__init__.pyo
+${PYSITELIB}/obspy/io/sh/tests/data/101.QBN
+${PYSITELIB}/obspy/io/sh/tests/data/101.QHD
+${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-ASC.ASC
+${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QBN
+${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST-SUN.QHD
+${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QBN
+${PYSITELIB}/obspy/io/sh/tests/data/QFILE-TEST.QHD
+${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.ASC
+${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QBN
+${PYSITELIB}/obspy/io/sh/tests/data/TEST_090101_0101.QHD
+${PYSITELIB}/obspy/io/sh/tests/test_core.py
+${PYSITELIB}/obspy/io/sh/tests/test_core.pyc
+${PYSITELIB}/obspy/io/sh/tests/test_core.pyo
+${PYSITELIB}/obspy/io/shapefile/__init__.py
+${PYSITELIB}/obspy/io/shapefile/__init__.pyc
+${PYSITELIB}/obspy/io/shapefile/__init__.pyo
+${PYSITELIB}/obspy/io/shapefile/core.py
+${PYSITELIB}/obspy/io/shapefile/core.pyc
+${PYSITELIB}/obspy/io/shapefile/core.pyo
+${PYSITELIB}/obspy/io/shapefile/tests/__init__.py
+${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyc
+${PYSITELIB}/obspy/io/shapefile/tests/__init__.pyo
+${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.dbf
+${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.prj
+${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shp
+${PYSITELIB}/obspy/io/shapefile/tests/data/catalog.shx
+${PYSITELIB}/obspy/io/shapefile/tests/data/inventory.dbf
+${PYSITELIB}/obspy/io/shapefile/tests/data/inventory.prj
+${PYSITELIB}/obspy/io/shapefile/tests/data/inventory.shp
+${PYSITELIB}/obspy/io/shapefile/tests/data/inventory.shx
+${PYSITELIB}/obspy/io/shapefile/tests/test_core.py
+${PYSITELIB}/obspy/io/shapefile/tests/test_core.pyc
+${PYSITELIB}/obspy/io/shapefile/tests/test_core.pyo
+${PYSITELIB}/obspy/io/stationtxt/__init__.py
+${PYSITELIB}/obspy/io/stationtxt/__init__.pyc
+${PYSITELIB}/obspy/io/stationtxt/__init__.pyo
+${PYSITELIB}/obspy/io/stationtxt/core.py
+${PYSITELIB}/obspy/io/stationtxt/core.pyc
+${PYSITELIB}/obspy/io/stationtxt/core.pyo
+${PYSITELIB}/obspy/io/stationtxt/tests/__init__.py
+${PYSITELIB}/obspy/io/stationtxt/tests/__init__.pyc
+${PYSITELIB}/obspy/io/stationtxt/tests/__init__.pyo
+${PYSITELIB}/obspy/io/stationtxt/tests/data/BW_RJOB.xml
+${PYSITELIB}/obspy/io/stationtxt/tests/data/XM.05.seed
+${PYSITELIB}/obspy/io/stationtxt/tests/data/channel_level_fdsn.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/channel_level_fdsn_faulty_header.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/channel_level_fdsn_no_endtime.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/log_channel_fdsn.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/network_level_fdsn.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/network_level_fdsn_no_endtime.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/station_level_fdsn.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/station_level_fdsn_no_endtime.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/data/unicode_example_fdsn.txt
+${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.py
+${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyc
+${PYSITELIB}/obspy/io/stationtxt/tests/test_station_text_parsing.pyo
+${PYSITELIB}/obspy/io/stationxml/__init__.py
+${PYSITELIB}/obspy/io/stationxml/__init__.pyc
+${PYSITELIB}/obspy/io/stationxml/__init__.pyo
+${PYSITELIB}/obspy/io/stationxml/core.py
+${PYSITELIB}/obspy/io/stationxml/core.pyc
+${PYSITELIB}/obspy/io/stationxml/core.pyo
+${PYSITELIB}/obspy/io/stationxml/data/Variations-FDSNSXML-SEED.txt
+${PYSITELIB}/obspy/io/stationxml/data/fdsn-station+availability-1.0.xsd
+${PYSITELIB}/obspy/io/stationxml/data/fdsn-station-1.0.xsd
+${PYSITELIB}/obspy/io/stationxml/tests/__init__.py
+${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyc
+${PYSITELIB}/obspy/io/stationxml/tests/__init__.pyo
+${PYSITELIB}/obspy/io/stationxml/tests/data/IRIS_single_channel_with_response.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/full_network_field_station.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/full_random_stationxml.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/full_station_field_station.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_station.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/minimal_with_non_obspy_module_and_sender_tags_station.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/no_default_namespace.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_BK.CMB.__.LKS.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_IU.ANTO.30.LDO.xml
+${PYSITELIB}/obspy/io/stationxml/tests/data/stationxml_with_availability.xml
+${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.py
+${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyc
+${PYSITELIB}/obspy/io/stationxml/tests/test_stationxml.pyo
+${PYSITELIB}/obspy/io/wav/README.txt
+${PYSITELIB}/obspy/io/wav/__init__.py
+${PYSITELIB}/obspy/io/wav/__init__.pyc
+${PYSITELIB}/obspy/io/wav/__init__.pyo
+${PYSITELIB}/obspy/io/wav/core.py
+${PYSITELIB}/obspy/io/wav/core.pyc
+${PYSITELIB}/obspy/io/wav/core.pyo
+${PYSITELIB}/obspy/io/wav/tests/__init__.py
+${PYSITELIB}/obspy/io/wav/tests/__init__.pyc
+${PYSITELIB}/obspy/io/wav/tests/__init__.pyo
+${PYSITELIB}/obspy/io/wav/tests/data/3cssan.near.8.1.RNON.wav
+${PYSITELIB}/obspy/io/wav/tests/data/3cssan.reg.8.1.RNON.wav
+${PYSITELIB}/obspy/io/wav/tests/test_core.py
+${PYSITELIB}/obspy/io/wav/tests/test_core.pyc
+${PYSITELIB}/obspy/io/wav/tests/test_core.pyo
+${PYSITELIB}/obspy/io/xseed/README.txt
+${PYSITELIB}/obspy/io/xseed/__init__.py
+${PYSITELIB}/obspy/io/xseed/__init__.pyc
+${PYSITELIB}/obspy/io/xseed/__init__.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/__init__.py
+${PYSITELIB}/obspy/io/xseed/blockette/__init__.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/__init__.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette010.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette010.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette010.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette011.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette011.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette011.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette012.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette012.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette012.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette030.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette030.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette030.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette031.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette031.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette031.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette032.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette032.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette032.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette033.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette033.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette033.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette034.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette034.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette034.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette041.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette041.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette041.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette043.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette043.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette043.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette044.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette044.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette044.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette047.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette047.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette047.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette048.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette048.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette048.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette050.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette050.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette050.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette051.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette051.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette051.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette052.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette052.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette052.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette053.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette053.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette053.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette054.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette054.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette054.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette055.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette055.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette055.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette057.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette057.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette057.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette058.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette058.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette058.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette059.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette059.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette059.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette060.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette060.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette060.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette061.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette061.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette061.pyo
+${PYSITELIB}/obspy/io/xseed/blockette/blockette062.py
+${PYSITELIB}/obspy/io/xseed/blockette/blockette062.pyc
+${PYSITELIB}/obspy/io/xseed/blockette/blockette062.pyo
+${PYSITELIB}/obspy/io/xseed/fields.py
+${PYSITELIB}/obspy/io/xseed/fields.pyc
+${PYSITELIB}/obspy/io/xseed/fields.pyo
+${PYSITELIB}/obspy/io/xseed/parser.py
+${PYSITELIB}/obspy/io/xseed/parser.pyc
+${PYSITELIB}/obspy/io/xseed/parser.pyo
+${PYSITELIB}/obspy/io/xseed/scripts/__init__.py
+${PYSITELIB}/obspy/io/xseed/scripts/__init__.pyc
+${PYSITELIB}/obspy/io/xseed/scripts/__init__.pyo
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2resp.py
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2resp.pyc
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2resp.pyo
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2xseed.py
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2xseed.pyc
+${PYSITELIB}/obspy/io/xseed/scripts/dataless2xseed.pyo
+${PYSITELIB}/obspy/io/xseed/scripts/xseed2dataless.py
+${PYSITELIB}/obspy/io/xseed/scripts/xseed2dataless.pyc
+${PYSITELIB}/obspy/io/xseed/scripts/xseed2dataless.pyo
+${PYSITELIB}/obspy/io/xseed/tests/__init__.py
+${PYSITELIB}/obspy/io/xseed/tests/__init__.pyc
+${PYSITELIB}/obspy/io/xseed/tests/__init__.pyo
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/README.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette010.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette011.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette012.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette030.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette031.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette032.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette033.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette034.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette041.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette043.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette044.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette047.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette050.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette051.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette052.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette053.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette054.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette055.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette057.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette058.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette059.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette060.txt
+${PYSITELIB}/obspy/io/xseed/tests/blockette-tests/blockette061.txt
+${PYSITELIB}/obspy/io/xseed/tests/data/AI.ESPZ._.BHE.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/AI.ESPZ._.BH_.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/BN.LPW._.BHE.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/CL.AIO.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/G.SPB.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/II_COCO_three_channel_borehole.mseed
+${PYSITELIB}/obspy/io/xseed/tests/data/arclink_full.seed
+${PYSITELIB}/obspy/io/xseed/tests/data/bug165.dataless
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_DHFO
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_FURT.xml
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_MANZ
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_RJOB
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ROTZ
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.BW_ZUGS
+${PYSITELIB}/obspy/io/xseed/tests/data/dataless.seed.II_COCO
+${PYSITELIB}/obspy/io/xseed/tests/data/nied.dataless.gz
+${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.0.xsd
+${PYSITELIB}/obspy/io/xseed/tests/data/xml-seed-1.1.xsd
+${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.py
+${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyc
+${PYSITELIB}/obspy/io/xseed/tests/test_blockettes.pyo
+${PYSITELIB}/obspy/io/xseed/tests/test_fields.py
+${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyc
+${PYSITELIB}/obspy/io/xseed/tests/test_fields.pyo
+${PYSITELIB}/obspy/io/xseed/tests/test_parser.py
+${PYSITELIB}/obspy/io/xseed/tests/test_parser.pyc
+${PYSITELIB}/obspy/io/xseed/tests/test_parser.pyo
+${PYSITELIB}/obspy/io/xseed/tests/test_scripts.py
+${PYSITELIB}/obspy/io/xseed/tests/test_scripts.pyc
+${PYSITELIB}/obspy/io/xseed/tests/test_scripts.pyo
+${PYSITELIB}/obspy/io/xseed/tests/test_utils.py
+${PYSITELIB}/obspy/io/xseed/tests/test_utils.pyc
+${PYSITELIB}/obspy/io/xseed/tests/test_utils.pyo
+${PYSITELIB}/obspy/io/xseed/utils.py
+${PYSITELIB}/obspy/io/xseed/utils.pyc
+${PYSITELIB}/obspy/io/xseed/utils.pyo
+${PYSITELIB}/obspy/io/y/README.txt
+${PYSITELIB}/obspy/io/y/__init__.py
+${PYSITELIB}/obspy/io/y/__init__.pyc
+${PYSITELIB}/obspy/io/y/__init__.pyo
+${PYSITELIB}/obspy/io/y/core.py
+${PYSITELIB}/obspy/io/y/core.pyc
+${PYSITELIB}/obspy/io/y/core.pyo
+${PYSITELIB}/obspy/io/y/tests/__init__.py
+${PYSITELIB}/obspy/io/y/tests/__init__.pyc
+${PYSITELIB}/obspy/io/y/tests/__init__.pyo
+${PYSITELIB}/obspy/io/y/tests/data/YAYT_BHZ_20021223.124800
+${PYSITELIB}/obspy/io/y/tests/data/YAZRSPE.20100119.060433
+${PYSITELIB}/obspy/io/y/tests/test_core.py
+${PYSITELIB}/obspy/io/y/tests/test_core.pyc
+${PYSITELIB}/obspy/io/y/tests/test_core.pyo
+${PYSITELIB}/obspy/io/zmap/README.txt
+${PYSITELIB}/obspy/io/zmap/__init__.py
+${PYSITELIB}/obspy/io/zmap/__init__.pyc
+${PYSITELIB}/obspy/io/zmap/__init__.pyo
+${PYSITELIB}/obspy/io/zmap/core.py
+${PYSITELIB}/obspy/io/zmap/core.pyc
+${PYSITELIB}/obspy/io/zmap/core.pyo
+${PYSITELIB}/obspy/io/zmap/tests/__init__.py
+${PYSITELIB}/obspy/io/zmap/tests/__init__.pyc
+${PYSITELIB}/obspy/io/zmap/tests/__init__.pyo
+${PYSITELIB}/obspy/io/zmap/tests/data/neries_events.xml
+${PYSITELIB}/obspy/io/zmap/tests/data/zmap_events.txt
+${PYSITELIB}/obspy/io/zmap/tests/test_zmap.py
+${PYSITELIB}/obspy/io/zmap/tests/test_zmap.pyc
+${PYSITELIB}/obspy/io/zmap/tests/test_zmap.pyo
 ${PYSITELIB}/obspy/lib/__init__.py
 ${PYSITELIB}/obspy/lib/__init__.pyc
 ${PYSITELIB}/obspy/lib/__init__.pyo
@@ -668,192 +1606,6 @@ ${PYSITELIB}/obspy/lib/libmseed_NetBSD_6
 ${PYSITELIB}/obspy/lib/libsegy_NetBSD_64bit_py27.so
 ${PYSITELIB}/obspy/lib/libsignal_NetBSD_64bit_py27.so
 ${PYSITELIB}/obspy/lib/libtau_NetBSD_64bit_py27.so
-${PYSITELIB}/obspy/mseed/README.txt
-${PYSITELIB}/obspy/mseed/__init__.py
-${PYSITELIB}/obspy/mseed/__init__.pyc
-${PYSITELIB}/obspy/mseed/__init__.pyo
-${PYSITELIB}/obspy/mseed/core.py
-${PYSITELIB}/obspy/mseed/core.pyc
-${PYSITELIB}/obspy/mseed/core.pyo
-${PYSITELIB}/obspy/mseed/headers.py
-${PYSITELIB}/obspy/mseed/headers.pyc
-${PYSITELIB}/obspy/mseed/headers.pyo
-${PYSITELIB}/obspy/mseed/msstruct.py
-${PYSITELIB}/obspy/mseed/msstruct.pyc
-${PYSITELIB}/obspy/mseed/msstruct.pyo
-${PYSITELIB}/obspy/mseed/scripts/__init__.py
-${PYSITELIB}/obspy/mseed/scripts/__init__.pyc
-${PYSITELIB}/obspy/mseed/scripts/__init__.pyo
-${PYSITELIB}/obspy/mseed/scripts/recordanalyzer.py
-${PYSITELIB}/obspy/mseed/scripts/recordanalyzer.pyc
-${PYSITELIB}/obspy/mseed/scripts/recordanalyzer.pyo
-${PYSITELIB}/obspy/mseed/tests/__init__.py
-${PYSITELIB}/obspy/mseed/tests/__init__.pyc
-${PYSITELIB}/obspy/mseed/tests/__init__.pyo
-${PYSITELIB}/obspy/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.first_10_records
-${PYSITELIB}/obspy/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.first_record
-${PYSITELIB}/obspy/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.second_record
-${PYSITELIB}/obspy/mseed/tests/data/BW.BGLD.__.EHE.D.2008.001.third_record
-${PYSITELIB}/obspy/mseed/tests/data/BW.UH3.__.EHZ.D.2010.171.first_record
-${PYSITELIB}/obspy/mseed/tests/data/CDSN_encoding.mseed
-${PYSITELIB}/obspy/mseed/tests/data/DWWSSN_encoding.mseed
-${PYSITELIB}/obspy/mseed/tests/data/GEOSCOPE16_4_encoding.mseed
-${PYSITELIB}/obspy/mseed/tests/data/RJOB.BW.EHZ.D.300806.0000.fullseed
-${PYSITELIB}/obspy/mseed/tests/data/SRO_encoding.mseed
-${PYSITELIB}/obspy/mseed/tests/data/WUQ.XJ.HHN.D.2008.285.first_record
-${PYSITELIB}/obspy/mseed/tests/data/bizarre/endiantest.be-header.be-data.mseed
-${PYSITELIB}/obspy/mseed/tests/data/bizarre/endiantest.be-header.le-data.mseed
-${PYSITELIB}/obspy/mseed/tests/data/bizarre/endiantest.le-header.be-data.mseed
-${PYSITELIB}/obspy/mseed/tests/data/bizarre/endiantest.le-header.le-data.mseed
-${PYSITELIB}/obspy/mseed/tests/data/blockette008.mseed
-${PYSITELIB}/obspy/mseed/tests/data/brokenlastrecord.mseed
-${PYSITELIB}/obspy/mseed/tests/data/constructedFileToTestReadViaRecords.mseed
-${PYSITELIB}/obspy/mseed/tests/data/corrupt_one_extra_byte_at_end.mseed
-${PYSITELIB}/obspy/mseed/tests/data/dataquality-m.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/float32_Float32_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/float32_Float32_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/float64_Float64_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/float64_Float64_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/fullASCII_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/fullASCII_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int16_INT16_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int16_INT16_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_INT32_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_INT32_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_Steim1_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_Steim1_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_Steim2_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/int32_Steim2_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/nan_float32.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/nan_float64.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/smallASCII_bigEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/encoding/smallASCII_littleEndian.mseed
-${PYSITELIB}/obspy/mseed/tests/data/fullseed.mseed
-${PYSITELIB}/obspy/mseed/tests/data/fullseed_dataquality_M.mseed
-${PYSITELIB}/obspy/mseed/tests/data/fullseed_dataquality_Q.mseed
-${PYSITELIB}/obspy/mseed/tests/data/fullseed_dataquality_R.mseed
-${PYSITELIB}/obspy/mseed/tests/data/gaps.mseed
-${PYSITELIB}/obspy/mseed/tests/data/infinite-loop.mseed
-${PYSITELIB}/obspy/mseed/tests/data/not.mseed
-${PYSITELIB}/obspy/mseed/tests/data/not2.mseed
-${PYSITELIB}/obspy/mseed/tests/data/not3.mseed
-${PYSITELIB}/obspy/mseed/tests/data/not4.mseed
-${PYSITELIB}/obspy/mseed/tests/data/one_record_already_applied_time_correction.mseed
-${PYSITELIB}/obspy/mseed/tests/data/one_record_time_corr_applied_but_time_corr_is_zero.mseed
-${PYSITELIB}/obspy/mseed/tests/data/qualityflags.mseed
-${PYSITELIB}/obspy/mseed/tests/data/reclen_1024_without_sequence_numbers.mseed
-${PYSITELIB}/obspy/mseed/tests/data/steim2.mseed
-${PYSITELIB}/obspy/mseed/tests/data/test.mseed
-${PYSITELIB}/obspy/mseed/tests/data/timingquality.mseed
-${PYSITELIB}/obspy/mseed/tests/data/two_channels.mseed
-${PYSITELIB}/obspy/mseed/tests/test_mseed_reading_and_writing.py
-${PYSITELIB}/obspy/mseed/tests/test_mseed_reading_and_writing.pyc
-${PYSITELIB}/obspy/mseed/tests/test_mseed_reading_and_writing.pyo
-${PYSITELIB}/obspy/mseed/tests/test_mseed_special_issues.py
-${PYSITELIB}/obspy/mseed/tests/test_mseed_special_issues.pyc
-${PYSITELIB}/obspy/mseed/tests/test_mseed_special_issues.pyo
-${PYSITELIB}/obspy/mseed/tests/test_mseed_util.py
-${PYSITELIB}/obspy/mseed/tests/test_mseed_util.pyc
-${PYSITELIB}/obspy/mseed/tests/test_mseed_util.pyo
-${PYSITELIB}/obspy/mseed/tests/test_recordanalyzer.py
-${PYSITELIB}/obspy/mseed/tests/test_recordanalyzer.pyc
-${PYSITELIB}/obspy/mseed/tests/test_recordanalyzer.pyo
-${PYSITELIB}/obspy/mseed/util.py
-${PYSITELIB}/obspy/mseed/util.pyc
-${PYSITELIB}/obspy/mseed/util.pyo
-${PYSITELIB}/obspy/ndk/README.txt
-${PYSITELIB}/obspy/ndk/__init__.py
-${PYSITELIB}/obspy/ndk/__init__.pyc
-${PYSITELIB}/obspy/ndk/__init__.pyo
-${PYSITELIB}/obspy/ndk/core.py
-${PYSITELIB}/obspy/ndk/core.pyc
-${PYSITELIB}/obspy/ndk/core.pyo
-${PYSITELIB}/obspy/ndk/tests/__init__.py
-${PYSITELIB}/obspy/ndk/tests/__init__.pyc
-${PYSITELIB}/obspy/ndk/tests/__init__.pyo
-${PYSITELIB}/obspy/ndk/tests/data/C200604092050A.ndk
-${PYSITELIB}/obspy/ndk/tests/data/C200604092050A.xml
-${PYSITELIB}/obspy/ndk/tests/data/faulty_cmt_timestamp.ndk
-${PYSITELIB}/obspy/ndk/tests/data/faulty_infeasible_latitude.ndk
-${PYSITELIB}/obspy/ndk/tests/data/faulty_invalid_date.ndk
-${PYSITELIB}/obspy/ndk/tests/data/faulty_invalid_latitude.ndk
-${PYSITELIB}/obspy/ndk/tests/data/faulty_multiple_events.ndk
-${PYSITELIB}/obspy/ndk/tests/data/multiple_events.ndk
-${PYSITELIB}/obspy/ndk/tests/test_ndk.py
-${PYSITELIB}/obspy/ndk/tests/test_ndk.pyc
-${PYSITELIB}/obspy/ndk/tests/test_ndk.pyo
-${PYSITELIB}/obspy/neic/README.txt
-${PYSITELIB}/obspy/neic/__init__.py
-${PYSITELIB}/obspy/neic/__init__.pyc
-${PYSITELIB}/obspy/neic/__init__.pyo
-${PYSITELIB}/obspy/neic/client.py
-${PYSITELIB}/obspy/neic/client.pyc
-${PYSITELIB}/obspy/neic/client.pyo
-${PYSITELIB}/obspy/neic/tests/__init__.py
-${PYSITELIB}/obspy/neic/tests/__init__.pyc
-${PYSITELIB}/obspy/neic/tests/__init__.pyo
-${PYSITELIB}/obspy/neic/tests/test_client.py
-${PYSITELIB}/obspy/neic/tests/test_client.pyc
-${PYSITELIB}/obspy/neic/tests/test_client.pyo
-${PYSITELIB}/obspy/neic/util.py
-${PYSITELIB}/obspy/neic/util.pyc
-${PYSITELIB}/obspy/neic/util.pyo
-${PYSITELIB}/obspy/neries/README.txt
-${PYSITELIB}/obspy/neries/__init__.py
-${PYSITELIB}/obspy/neries/__init__.pyc
-${PYSITELIB}/obspy/neries/__init__.pyo
-${PYSITELIB}/obspy/neries/client.py
-${PYSITELIB}/obspy/neries/client.pyc
-${PYSITELIB}/obspy/neries/client.pyo
-${PYSITELIB}/obspy/neries/tests/__init__.py
-${PYSITELIB}/obspy/neries/tests/__init__.pyc
-${PYSITELIB}/obspy/neries/tests/__init__.pyo
-${PYSITELIB}/obspy/neries/tests/test_client.py
-${PYSITELIB}/obspy/neries/tests/test_client.pyc
-${PYSITELIB}/obspy/neries/tests/test_client.pyo
-${PYSITELIB}/obspy/nlloc/README.txt
-${PYSITELIB}/obspy/nlloc/__init__.py
-${PYSITELIB}/obspy/nlloc/__init__.pyc
-${PYSITELIB}/obspy/nlloc/__init__.pyo
-${PYSITELIB}/obspy/nlloc/core.py
-${PYSITELIB}/obspy/nlloc/core.pyc
-${PYSITELIB}/obspy/nlloc/core.pyo
-${PYSITELIB}/obspy/nlloc/tests/__init__.py
-${PYSITELIB}/obspy/nlloc/tests/__init__.pyc
-${PYSITELIB}/obspy/nlloc/tests/__init__.pyo
-${PYSITELIB}/obspy/nlloc/tests/data/nlloc.hyp
-${PYSITELIB}/obspy/nlloc/tests/data/nlloc.obs
-${PYSITELIB}/obspy/nlloc/tests/data/nlloc.qml
-${PYSITELIB}/obspy/nlloc/tests/test_core.py
-${PYSITELIB}/obspy/nlloc/tests/test_core.pyc
-${PYSITELIB}/obspy/nlloc/tests/test_core.pyo
-${PYSITELIB}/obspy/pdas/__init__.py
-${PYSITELIB}/obspy/pdas/__init__.pyc
-${PYSITELIB}/obspy/pdas/__init__.pyo
-${PYSITELIB}/obspy/pdas/core.py
-${PYSITELIB}/obspy/pdas/core.pyc
-${PYSITELIB}/obspy/pdas/core.pyo
-${PYSITELIB}/obspy/pdas/tests/__init__.py
-${PYSITELIB}/obspy/pdas/tests/__init__.pyc
-${PYSITELIB}/obspy/pdas/tests/__init__.pyo
-${PYSITELIB}/obspy/pdas/tests/data/p1246001.108
-${PYSITELIB}/obspy/pdas/tests/test_core.py
-${PYSITELIB}/obspy/pdas/tests/test_core.pyc
-${PYSITELIB}/obspy/pdas/tests/test_core.pyo
-${PYSITELIB}/obspy/pde/README.txt
-${PYSITELIB}/obspy/pde/__init__.py
-${PYSITELIB}/obspy/pde/__init__.pyc
-${PYSITELIB}/obspy/pde/__init__.pyo
-${PYSITELIB}/obspy/pde/mchedr.py
-${PYSITELIB}/obspy/pde/mchedr.pyc
-${PYSITELIB}/obspy/pde/mchedr.pyo
-${PYSITELIB}/obspy/pde/tests/__init__.py
-${PYSITELIB}/obspy/pde/tests/__init__.pyc
-${PYSITELIB}/obspy/pde/tests/__init__.pyo
-${PYSITELIB}/obspy/pde/tests/data/mchedr.dat
-${PYSITELIB}/obspy/pde/tests/test_mchedr.py
-${PYSITELIB}/obspy/pde/tests/test_mchedr.pyc
-${PYSITELIB}/obspy/pde/tests/test_mchedr.pyo
 ${PYSITELIB}/obspy/realtime/README.txt
 ${PYSITELIB}/obspy/realtime/__init__.py
 ${PYSITELIB}/obspy/realtime/__init__.pyc
@@ -877,241 +1629,37 @@ ${PYSITELIB}/obspy/realtime/tests/test_r
 ${PYSITELIB}/obspy/realtime/tests/test_signal.py
 ${PYSITELIB}/obspy/realtime/tests/test_signal.pyc
 ${PYSITELIB}/obspy/realtime/tests/test_signal.pyo
-${PYSITELIB}/obspy/sac/README.txt
-${PYSITELIB}/obspy/sac/__init__.py
-${PYSITELIB}/obspy/sac/__init__.pyc
-${PYSITELIB}/obspy/sac/__init__.pyo
-${PYSITELIB}/obspy/sac/core.py
-${PYSITELIB}/obspy/sac/core.pyc
-${PYSITELIB}/obspy/sac/core.pyo
-${PYSITELIB}/obspy/sac/sacio.py
-${PYSITELIB}/obspy/sac/sacio.pyc
-${PYSITELIB}/obspy/sac/sacio.pyo
-${PYSITELIB}/obspy/sac/sacpz.py
-${PYSITELIB}/obspy/sac/sacpz.pyc
-${PYSITELIB}/obspy/sac/sacpz.pyo
-${PYSITELIB}/obspy/sac/tests/__init__.py
-${PYSITELIB}/obspy/sac/tests/__init__.pyc
-${PYSITELIB}/obspy/sac/tests/__init__.pyo
-${PYSITELIB}/obspy/sac/tests/data/IU_ANMO_00_BHZ.sacpz
-${PYSITELIB}/obspy/sac/tests/data/IU_ANMO_BH.sacpz
-${PYSITELIB}/obspy/sac/tests/data/LMOW.BHE.SAC
-${PYSITELIB}/obspy/sac/tests/data/NZCRLZ_HHZ10.pz
-${PYSITELIB}/obspy/sac/tests/data/RESP.NZ.CRLZ.10.HHZ
-${PYSITELIB}/obspy/sac/tests/data/SAC_PZs_NZ_CRLZ_HHZ
-${PYSITELIB}/obspy/sac/tests/data/SAC_PZs_NZ_HHZ_10
-${PYSITELIB}/obspy/sac/tests/data/dis.G.SCZ.__.BHE_short
-${PYSITELIB}/obspy/sac/tests/data/interpolation_test_interpolated_delta_0.003.sac
-${PYSITELIB}/obspy/sac/tests/data/interpolation_test_interpolated_delta_0.077.sac
-${PYSITELIB}/obspy/sac/tests/data/interpolation_test_random_waveform_delta_0.01_npts_50.sac
-${PYSITELIB}/obspy/sac/tests/data/null_terminated.sac
-${PYSITELIB}/obspy/sac/tests/data/seism-longer.sac
-${PYSITELIB}/obspy/sac/tests/data/seism-shorter.sac
-${PYSITELIB}/obspy/sac/tests/data/seism.sac
-${PYSITELIB}/obspy/sac/tests/data/test.sac
-${PYSITELIB}/obspy/sac/tests/data/test.sac.swap
-${PYSITELIB}/obspy/sac/tests/data/testxy.sac
-${PYSITELIB}/obspy/sac/tests/test_core.py
-${PYSITELIB}/obspy/sac/tests/test_core.pyc
-${PYSITELIB}/obspy/sac/tests/test_core.pyo
-${PYSITELIB}/obspy/sac/tests/test_sacio.py
-${PYSITELIB}/obspy/sac/tests/test_sacio.pyc
-${PYSITELIB}/obspy/sac/tests/test_sacio.pyo
-${PYSITELIB}/obspy/sac/tests/test_sacpz.py
-${PYSITELIB}/obspy/sac/tests/test_sacpz.pyc
-${PYSITELIB}/obspy/sac/tests/test_sacpz.pyo
-${PYSITELIB}/obspy/seedlink/README.txt
-${PYSITELIB}/obspy/seedlink/__init__.py
-${PYSITELIB}/obspy/seedlink/__init__.pyc
-${PYSITELIB}/obspy/seedlink/__init__.pyo
-${PYSITELIB}/obspy/seedlink/basic_client.py
-${PYSITELIB}/obspy/seedlink/basic_client.pyc
-${PYSITELIB}/obspy/seedlink/basic_client.pyo
-${PYSITELIB}/obspy/seedlink/client/__init__.py
-${PYSITELIB}/obspy/seedlink/client/__init__.pyc
-${PYSITELIB}/obspy/seedlink/client/__init__.pyo
-${PYSITELIB}/obspy/seedlink/client/seedlinkconnection.py
-${PYSITELIB}/obspy/seedlink/client/seedlinkconnection.pyc
-${PYSITELIB}/obspy/seedlink/client/seedlinkconnection.pyo
-${PYSITELIB}/obspy/seedlink/client/slnetstation.py
-${PYSITELIB}/obspy/seedlink/client/slnetstation.pyc
-${PYSITELIB}/obspy/seedlink/client/slnetstation.pyo
-${PYSITELIB}/obspy/seedlink/client/slstate.py
-${PYSITELIB}/obspy/seedlink/client/slstate.pyc
-${PYSITELIB}/obspy/seedlink/client/slstate.pyo
-${PYSITELIB}/obspy/seedlink/easyseedlink.py
-${PYSITELIB}/obspy/seedlink/easyseedlink.pyc
-${PYSITELIB}/obspy/seedlink/easyseedlink.pyo
-${PYSITELIB}/obspy/seedlink/seedlinkexception.py
-${PYSITELIB}/obspy/seedlink/seedlinkexception.pyc
-${PYSITELIB}/obspy/seedlink/seedlinkexception.pyo
-${PYSITELIB}/obspy/seedlink/slclient.py
-${PYSITELIB}/obspy/seedlink/slclient.pyc
-${PYSITELIB}/obspy/seedlink/slclient.pyo
-${PYSITELIB}/obspy/seedlink/slpacket.py
-${PYSITELIB}/obspy/seedlink/slpacket.pyc
-${PYSITELIB}/obspy/seedlink/slpacket.pyo
-${PYSITELIB}/obspy/seedlink/tests/__init__.py
-${PYSITELIB}/obspy/seedlink/tests/__init__.pyc
-${PYSITELIB}/obspy/seedlink/tests/__init__.pyo
-${PYSITELIB}/obspy/seedlink/tests/data/info_packet_geofon.slink
-${PYSITELIB}/obspy/seedlink/tests/data/info_packet_iris.slink
-${PYSITELIB}/obspy/seedlink/tests/example_SL_Hello.py
-${PYSITELIB}/obspy/seedlink/tests/example_SL_Hello.pyc
-${PYSITELIB}/obspy/seedlink/tests/example_SL_Hello.pyo
-${PYSITELIB}/obspy/seedlink/tests/example_SL_RTTrace.py
-${PYSITELIB}/obspy/seedlink/tests/example_SL_RTTrace.pyc
-${PYSITELIB}/obspy/seedlink/tests/example_SL_RTTrace.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_basic_client.py
-${PYSITELIB}/obspy/seedlink/tests/test_basic_client.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_basic_client.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_seedlinkconnection.py
-${PYSITELIB}/obspy/seedlink/tests/test_seedlinkconnection.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_seedlinkconnection.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_slclient.py
-${PYSITELIB}/obspy/seedlink/tests/test_slclient.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_slclient.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_slnetstation.py
-${PYSITELIB}/obspy/seedlink/tests/test_slnetstation.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_slnetstation.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_slpacket.py
-${PYSITELIB}/obspy/seedlink/tests/test_slpacket.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_slpacket.pyo
-${PYSITELIB}/obspy/seedlink/tests/test_slstate.py
-${PYSITELIB}/obspy/seedlink/tests/test_slstate.pyc
-${PYSITELIB}/obspy/seedlink/tests/test_slstate.pyo
-${PYSITELIB}/obspy/seg2/README.txt
-${PYSITELIB}/obspy/seg2/__init__.py
-${PYSITELIB}/obspy/seg2/__init__.pyc
-${PYSITELIB}/obspy/seg2/__init__.pyo
-${PYSITELIB}/obspy/seg2/header.py
-${PYSITELIB}/obspy/seg2/header.pyc
-${PYSITELIB}/obspy/seg2/header.pyo
-${PYSITELIB}/obspy/seg2/seg2.py
-${PYSITELIB}/obspy/seg2/seg2.pyc
-${PYSITELIB}/obspy/seg2/seg2.pyo
-${PYSITELIB}/obspy/seg2/tests/__init__.py
-${PYSITELIB}/obspy/seg2/tests/__init__.pyc
-${PYSITELIB}/obspy/seg2/tests/__init__.pyo
-${PYSITELIB}/obspy/seg2/tests/data/20130107_103041000.CET.3c.cont.0.DAT.gz
-${PYSITELIB}/obspy/seg2/tests/data/20130107_103041000.CET.3c.cont.0.seg2.gz
-${PYSITELIB}/obspy/seg2/tests/test_seg2.py
-${PYSITELIB}/obspy/seg2/tests/test_seg2.pyc
-${PYSITELIB}/obspy/seg2/tests/test_seg2.pyo
-${PYSITELIB}/obspy/segy/README.txt
-${PYSITELIB}/obspy/segy/__init__.py
-${PYSITELIB}/obspy/segy/__init__.pyc
-${PYSITELIB}/obspy/segy/__init__.pyo
-${PYSITELIB}/obspy/segy/core.py
-${PYSITELIB}/obspy/segy/core.pyc
-${PYSITELIB}/obspy/segy/core.pyo
-${PYSITELIB}/obspy/segy/header.py
-${PYSITELIB}/obspy/segy/header.pyc
-${PYSITELIB}/obspy/segy/header.pyo
-${PYSITELIB}/obspy/segy/pack.py
-${PYSITELIB}/obspy/segy/pack.pyc
-${PYSITELIB}/obspy/segy/pack.pyo
-${PYSITELIB}/obspy/segy/segy.py
-${PYSITELIB}/obspy/segy/segy.pyc
-${PYSITELIB}/obspy/segy/segy.pyo
-${PYSITELIB}/obspy/segy/tests/__init__.py
-${PYSITELIB}/obspy/segy/tests/__init__.pyc
-${PYSITELIB}/obspy/segy/tests/__init__.pyo
-${PYSITELIB}/obspy/segy/tests/data/00001034.sgy_first_trace
-${PYSITELIB}/obspy/segy/tests/data/00001034.sgy_first_trace.npy
-${PYSITELIB}/obspy/segy/tests/data/1.sgy_first_trace
-${PYSITELIB}/obspy/segy/tests/data/1.sgy_first_trace.npy
-${PYSITELIB}/obspy/segy/tests/data/1.su_first_trace
-${PYSITELIB}/obspy/segy/tests/data/example.y_first_trace
-${PYSITELIB}/obspy/segy/tests/data/example.y_first_trace.npy
-${PYSITELIB}/obspy/segy/tests/data/ld0042_file_00018.sgy_first_trace
-${PYSITELIB}/obspy/segy/tests/data/ld0042_file_00018.sgy_first_trace.npy
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_11.sgy
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_11.sgy.npy
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_11.su
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_99.sgy
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_99.sgy.npy
-${PYSITELIB}/obspy/segy/tests/data/one_trace_year_99.su
-${PYSITELIB}/obspy/segy/tests/data/planes.segy_first_trace
-${PYSITELIB}/obspy/segy/tests/data/planes.segy_first_trace.npy
-${PYSITELIB}/obspy/segy/tests/data/readme.txt
-${PYSITELIB}/obspy/segy/tests/header.py
-${PYSITELIB}/obspy/segy/tests/header.pyc
-${PYSITELIB}/obspy/segy/tests/header.pyo
-${PYSITELIB}/obspy/segy/tests/test_core.py
-${PYSITELIB}/obspy/segy/tests/test_core.pyc
-${PYSITELIB}/obspy/segy/tests/test_core.pyo
-${PYSITELIB}/obspy/segy/tests/test_segy.py
-${PYSITELIB}/obspy/segy/tests/test_segy.pyc
-${PYSITELIB}/obspy/segy/tests/test_segy.pyo
-${PYSITELIB}/obspy/segy/tests/test_su.py
-${PYSITELIB}/obspy/segy/tests/test_su.pyc
-${PYSITELIB}/obspy/segy/tests/test_su.pyo
-${PYSITELIB}/obspy/segy/unpack.py
-${PYSITELIB}/obspy/segy/unpack.pyc
-${PYSITELIB}/obspy/segy/unpack.pyo
-${PYSITELIB}/obspy/segy/util.py
-${PYSITELIB}/obspy/segy/util.pyc
-${PYSITELIB}/obspy/segy/util.pyo
-${PYSITELIB}/obspy/seisan/README.txt
-${PYSITELIB}/obspy/seisan/__init__.py
-${PYSITELIB}/obspy/seisan/__init__.pyc
-${PYSITELIB}/obspy/seisan/__init__.pyo
-${PYSITELIB}/obspy/seisan/core.py
-${PYSITELIB}/obspy/seisan/core.pyc
-${PYSITELIB}/obspy/seisan/core.pyo
-${PYSITELIB}/obspy/seisan/tests/__init__.py
-${PYSITELIB}/obspy/seisan/tests/__init__.pyc
-${PYSITELIB}/obspy/seisan/tests/__init__.pyo
-${PYSITELIB}/obspy/seisan/tests/data/1996-06-03-1917-52S.TEST__002
-${PYSITELIB}/obspy/seisan/tests/data/2001-01-13-1742-24S.KONO__004
-${PYSITELIB}/obspy/seisan/tests/data/9701-30-1048-54S.MVO_21_1
-${PYSITELIB}/obspy/seisan/tests/data/MBGBSBJE
-${PYSITELIB}/obspy/seisan/tests/data/SEISAN_Bug/2011-09-06-1311-36S.A1032_001BH_Z
-${PYSITELIB}/obspy/seisan/tests/data/SEISAN_Bug/2011-09-06-1311-36S.A1032_001BH_Z_MSEED
-${PYSITELIB}/obspy/seisan/tests/test_core.py
-${PYSITELIB}/obspy/seisan/tests/test_core.pyc
-${PYSITELIB}/obspy/seisan/tests/test_core.pyo
-${PYSITELIB}/obspy/seishub/README.txt
-${PYSITELIB}/obspy/seishub/__init__.py
-${PYSITELIB}/obspy/seishub/__init__.pyc
-${PYSITELIB}/obspy/seishub/__init__.pyo
-${PYSITELIB}/obspy/seishub/client.py
-${PYSITELIB}/obspy/seishub/client.pyc
-${PYSITELIB}/obspy/seishub/client.pyo
-${PYSITELIB}/obspy/seishub/tests/__init__.py
-${PYSITELIB}/obspy/seishub/tests/__init__.pyc
-${PYSITELIB}/obspy/seishub/tests/__init__.pyo
-${PYSITELIB}/obspy/seishub/tests/test_client.py
-${PYSITELIB}/obspy/seishub/tests/test_client.pyc
-${PYSITELIB}/obspy/seishub/tests/test_client.pyo
-${PYSITELIB}/obspy/sh/README.txt
-${PYSITELIB}/obspy/sh/__init__.py
-${PYSITELIB}/obspy/sh/__init__.pyc
-${PYSITELIB}/obspy/sh/__init__.pyo
-${PYSITELIB}/obspy/sh/core.py
-${PYSITELIB}/obspy/sh/core.pyc
-${PYSITELIB}/obspy/sh/core.pyo
-${PYSITELIB}/obspy/sh/tests/__init__.py
-${PYSITELIB}/obspy/sh/tests/__init__.pyc
-${PYSITELIB}/obspy/sh/tests/__init__.pyo
-${PYSITELIB}/obspy/sh/tests/data/101.QBN
-${PYSITELIB}/obspy/sh/tests/data/101.QHD
-${PYSITELIB}/obspy/sh/tests/data/QFILE-TEST-ASC.ASC
-${PYSITELIB}/obspy/sh/tests/data/QFILE-TEST-SUN.QBN
-${PYSITELIB}/obspy/sh/tests/data/QFILE-TEST-SUN.QHD
-${PYSITELIB}/obspy/sh/tests/data/QFILE-TEST.QBN
-${PYSITELIB}/obspy/sh/tests/data/QFILE-TEST.QHD
-${PYSITELIB}/obspy/sh/tests/data/TEST_090101_0101.ASC
-${PYSITELIB}/obspy/sh/tests/data/TEST_090101_0101.QBN
-${PYSITELIB}/obspy/sh/tests/data/TEST_090101_0101.QHD
-${PYSITELIB}/obspy/sh/tests/test_core.py
-${PYSITELIB}/obspy/sh/tests/test_core.pyc
-${PYSITELIB}/obspy/sh/tests/test_core.pyo
+${PYSITELIB}/obspy/scripts/__init__.py
+${PYSITELIB}/obspy/scripts/__init__.pyc
+${PYSITELIB}/obspy/scripts/__init__.pyo
+${PYSITELIB}/obspy/scripts/flinnengdahl.py
+${PYSITELIB}/obspy/scripts/flinnengdahl.pyc
+${PYSITELIB}/obspy/scripts/flinnengdahl.pyo
+${PYSITELIB}/obspy/scripts/print.py
+${PYSITELIB}/obspy/scripts/print.pyc
+${PYSITELIB}/obspy/scripts/print.pyo
+${PYSITELIB}/obspy/scripts/reftekrescue.py
+${PYSITELIB}/obspy/scripts/reftekrescue.pyc
+${PYSITELIB}/obspy/scripts/reftekrescue.pyo
+${PYSITELIB}/obspy/scripts/runtests.py
+${PYSITELIB}/obspy/scripts/runtests.pyc
+${PYSITELIB}/obspy/scripts/runtests.pyo
+${PYSITELIB}/obspy/scripts/sds_html_report.py
+${PYSITELIB}/obspy/scripts/sds_html_report.pyc
+${PYSITELIB}/obspy/scripts/sds_html_report.pyo
+${PYSITELIB}/obspy/scripts/tests/__init__.py
+${PYSITELIB}/obspy/scripts/tests/__init__.pyc
+${PYSITELIB}/obspy/scripts/tests/__init__.pyo
+${PYSITELIB}/obspy/scripts/tests/test_print.py
+${PYSITELIB}/obspy/scripts/tests/test_print.pyc
+${PYSITELIB}/obspy/scripts/tests/test_print.pyo
 ${PYSITELIB}/obspy/signal/README.txt
 ${PYSITELIB}/obspy/signal/__init__.py
 ${PYSITELIB}/obspy/signal/__init__.pyc
 ${PYSITELIB}/obspy/signal/__init__.pyo
+${PYSITELIB}/obspy/signal/_sosfilt.py
+${PYSITELIB}/obspy/signal/_sosfilt.pyc
+${PYSITELIB}/obspy/signal/_sosfilt.pyo
 ${PYSITELIB}/obspy/signal/array_analysis.py
 ${PYSITELIB}/obspy/signal/array_analysis.pyc
 ${PYSITELIB}/obspy/signal/array_analysis.pyo
@@ -1190,6 +1738,13 @@ ${PYSITELIB}/obspy/signal/tests/data/FEM
 ${PYSITELIB}/obspy/signal/tests/data/FEM_11p.dat
 ${PYSITELIB}/obspy/signal/tests/data/FPM_11a.dat
 ${PYSITELIB}/obspy/signal/tests/data/FPM_11p.dat
+${PYSITELIB}/obspy/signal/tests/data/IRISpdfExample
+${PYSITELIB}/obspy/signal/tests/data/IUANMO.dataless
+${PYSITELIB}/obspy/signal/tests/data/IUANMO.resp
+${PYSITELIB}/obspy/signal/tests/data/IUANMO.seed
+${PYSITELIB}/obspy/signal/tests/data/IUANMO.xml
+${PYSITELIB}/obspy/signal/tests/data/IUANMO_ppsd_fullresponse.npz
+${PYSITELIB}/obspy/signal/tests/data/IUANMO_ppsd_paz.npz
 ${PYSITELIB}/obspy/signal/tests/data/KARC.LHZ.SAC.asc.gz
 ${PYSITELIB}/obspy/signal/tests/data/KARC_corrected.sac.asc.gz
 ${PYSITELIB}/obspy/signal/tests/data/MBGA_E.ASC
@@ -1213,6 +1768,7 @@ ${PYSITELIB}/obspy/signal/tests/data/TFP
 ${PYSITELIB}/obspy/signal/tests/data/TFPM_11p.dat
 ${PYSITELIB}/obspy/signal/tests/data/TPM_11a.dat
 ${PYSITELIB}/obspy/signal/tests/data/TPM_11p.dat
+${PYSITELIB}/obspy/signal/tests/data/images/time_frequency_representation.png
 ${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.e
 ${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.e.polfilt.gz
 ${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.n
@@ -1226,6 +1782,8 @@ ${PYSITELIB}/obspy/signal/tests/data/pit
 ${PYSITELIB}/obspy/signal/tests/data/pitsa_noise_psd_samprate_100_nfft_512_noverlap_0.npy
 ${PYSITELIB}/obspy/signal/tests/data/pitsa_welch_window_512.npy
 ${PYSITELIB}/obspy/signal/tests/data/pitsa_welch_window_513.npy
+${PYSITELIB}/obspy/signal/tests/data/ppsd_stack_selections.npy
+${PYSITELIB}/obspy/signal/tests/data/ppsd_times_processed.npy
 ${PYSITELIB}/obspy/signal/tests/data/ref_STS2
 ${PYSITELIB}/obspy/signal/tests/data/ref_unknown
 ${PYSITELIB}/obspy/signal/tests/data/rjob_20051006.gz
@@ -1267,6 +1825,11 @@ ${PYSITELIB}/obspy/signal/tests/data/seg
 ${PYSITELIB}/obspy/signal/tests/data/srl.data.gz
 ${PYSITELIB}/obspy/signal/tests/data/srl.res.gz
 ${PYSITELIB}/obspy/signal/tests/data/unknown.resp
+${PYSITELIB}/obspy/signal/tests/images/degree_1_spline_detrend.png
+${PYSITELIB}/obspy/signal/tests/images/plot_lanczos_window.png
+${PYSITELIB}/obspy/signal/tests/images/polynomial_detrend.png
+${PYSITELIB}/obspy/signal/tests/images/ppsd_restricted_stack.png
+${PYSITELIB}/obspy/signal/tests/images/xcorr_pick_corr.png
 ${PYSITELIB}/obspy/signal/tests/test_array_analysis.py
 ${PYSITELIB}/obspy/signal/tests/test_array_analysis.pyc
 ${PYSITELIB}/obspy/signal/tests/test_array_analysis.pyo
@@ -1279,6 +1842,12 @@ ${PYSITELIB}/obspy/signal/tests/test_cpx
 ${PYSITELIB}/obspy/signal/tests/test_cross_correlation.py
 ${PYSITELIB}/obspy/signal/tests/test_cross_correlation.pyc
 ${PYSITELIB}/obspy/signal/tests/test_cross_correlation.pyo
+${PYSITELIB}/obspy/signal/tests/test_detrend.py
+${PYSITELIB}/obspy/signal/tests/test_detrend.pyc
+${PYSITELIB}/obspy/signal/tests/test_detrend.pyo
+${PYSITELIB}/obspy/signal/tests/test_differentiate_and_integrate.py
+${PYSITELIB}/obspy/signal/tests/test_differentiate_and_integrate.pyc
+${PYSITELIB}/obspy/signal/tests/test_differentiate_and_integrate.pyo
 ${PYSITELIB}/obspy/signal/tests/test_filter.py
 ${PYSITELIB}/obspy/signal/tests/test_filter.pyc
 ${PYSITELIB}/obspy/signal/tests/test_filter.pyo
@@ -1288,6 +1857,9 @@ ${PYSITELIB}/obspy/signal/tests/test_fre
 ${PYSITELIB}/obspy/signal/tests/test_hoctavbands.py
 ${PYSITELIB}/obspy/signal/tests/test_hoctavbands.pyc
 ${PYSITELIB}/obspy/signal/tests/test_hoctavbands.pyo
+${PYSITELIB}/obspy/signal/tests/test_interpolation.py
+${PYSITELIB}/obspy/signal/tests/test_interpolation.pyc
+${PYSITELIB}/obspy/signal/tests/test_interpolation.pyo
 ${PYSITELIB}/obspy/signal/tests/test_invsim.py
 ${PYSITELIB}/obspy/signal/tests/test_invsim.pyc
 ${PYSITELIB}/obspy/signal/tests/test_invsim.pyo
@@ -1330,83 +1902,6 @@ ${PYSITELIB}/obspy/signal/trigger.pyo
 ${PYSITELIB}/obspy/signal/util.py
 ${PYSITELIB}/obspy/signal/util.pyc
 ${PYSITELIB}/obspy/signal/util.pyo
-${PYSITELIB}/obspy/station/README.txt
-${PYSITELIB}/obspy/station/__init__.py
-${PYSITELIB}/obspy/station/__init__.pyc
-${PYSITELIB}/obspy/station/__init__.pyo
-${PYSITELIB}/obspy/station/channel.py
-${PYSITELIB}/obspy/station/channel.pyc
-${PYSITELIB}/obspy/station/channel.pyo
-${PYSITELIB}/obspy/station/data/Variations-FDSNSXML-SEED.txt
-${PYSITELIB}/obspy/station/data/fdsn-station+availability-1.0.xsd
-${PYSITELIB}/obspy/station/data/fdsn-station-1.0.xsd
-${PYSITELIB}/obspy/station/inventory.py
-${PYSITELIB}/obspy/station/inventory.pyc
-${PYSITELIB}/obspy/station/inventory.pyo
-${PYSITELIB}/obspy/station/network.py
-${PYSITELIB}/obspy/station/network.pyc
-${PYSITELIB}/obspy/station/network.pyo
-${PYSITELIB}/obspy/station/response.py
-${PYSITELIB}/obspy/station/response.pyc
-${PYSITELIB}/obspy/station/response.pyo
-${PYSITELIB}/obspy/station/station.py
-${PYSITELIB}/obspy/station/station.pyc
-${PYSITELIB}/obspy/station/station.pyo
-${PYSITELIB}/obspy/station/stationxml.py
-${PYSITELIB}/obspy/station/stationxml.pyc
-${PYSITELIB}/obspy/station/stationxml.pyo
-${PYSITELIB}/obspy/station/tests/__init__.py
-${PYSITELIB}/obspy/station/tests/__init__.pyc
-${PYSITELIB}/obspy/station/tests/__init__.pyo
-${PYSITELIB}/obspy/station/tests/data/AU.MEEK.seed
-${PYSITELIB}/obspy/station/tests/data/AU.MEEK.xml
-${PYSITELIB}/obspy/station/tests/data/BW_GR_misc.xml.gz
-${PYSITELIB}/obspy/station/tests/data/IRIS_single_channel_with_response.seed
-${PYSITELIB}/obspy/station/tests/data/IRIS_single_channel_with_response.xml
-${PYSITELIB}/obspy/station/tests/data/IU_ANMO_00_BHZ.xml
-${PYSITELIB}/obspy/station/tests/data/IU_ANMO_BH.xml
-${PYSITELIB}/obspy/station/tests/data/Modified_IRIS_response_level_station.xml
-${PYSITELIB}/obspy/station/tests/data/TM.SKLT..BHZ_faulty_response.xml
-${PYSITELIB}/obspy/station/tests/data/XM.05.seed
-${PYSITELIB}/obspy/station/tests/data/XM.05.xml
-${PYSITELIB}/obspy/station/tests/data/full_network_field_station.xml
-${PYSITELIB}/obspy/station/tests/data/full_random_stationxml.xml
-${PYSITELIB}/obspy/station/tests/data/full_station_field_station.xml
-${PYSITELIB}/obspy/station/tests/data/minimal_station.xml
-${PYSITELIB}/obspy/station/tests/data/minimal_with_non_obspy_module_and_sender_tags_station.xml
-${PYSITELIB}/obspy/station/tests/data/stationxml_with_availability.xml
-${PYSITELIB}/obspy/station/tests/images/channel_response.png
-${PYSITELIB}/obspy/station/tests/images/inventory_location1.png
-${PYSITELIB}/obspy/station/tests/images/inventory_location2.png
-${PYSITELIB}/obspy/station/tests/images/inventory_location3.png
-${PYSITELIB}/obspy/station/tests/images/inventory_response.png
-${PYSITELIB}/obspy/station/tests/images/network_location1.png
-${PYSITELIB}/obspy/station/tests/images/network_location2.png
-${PYSITELIB}/obspy/station/tests/images/network_location3.png
-${PYSITELIB}/obspy/station/tests/images/network_response.png
-${PYSITELIB}/obspy/station/tests/images/response_response.png
-${PYSITELIB}/obspy/station/tests/images/station_response.png
-${PYSITELIB}/obspy/station/tests/test_channel.py
-${PYSITELIB}/obspy/station/tests/test_channel.pyc
-${PYSITELIB}/obspy/station/tests/test_channel.pyo
-${PYSITELIB}/obspy/station/tests/test_inventory.py
-${PYSITELIB}/obspy/station/tests/test_inventory.pyc
-${PYSITELIB}/obspy/station/tests/test_inventory.pyo
-${PYSITELIB}/obspy/station/tests/test_network.py
-${PYSITELIB}/obspy/station/tests/test_network.pyc
-${PYSITELIB}/obspy/station/tests/test_network.pyo
-${PYSITELIB}/obspy/station/tests/test_response.py
-${PYSITELIB}/obspy/station/tests/test_response.pyc
-${PYSITELIB}/obspy/station/tests/test_response.pyo
-${PYSITELIB}/obspy/station/tests/test_station.py
-${PYSITELIB}/obspy/station/tests/test_station.pyc
-${PYSITELIB}/obspy/station/tests/test_station.pyo
-${PYSITELIB}/obspy/station/tests/test_stationxml.py
-${PYSITELIB}/obspy/station/tests/test_stationxml.pyc
-${PYSITELIB}/obspy/station/tests/test_stationxml.pyo
-${PYSITELIB}/obspy/station/util.py
-${PYSITELIB}/obspy/station/util.pyc
-${PYSITELIB}/obspy/station/util.pyo
 ${PYSITELIB}/obspy/taup/README.txt
 ${PYSITELIB}/obspy/taup/__init__.py
 ${PYSITELIB}/obspy/taup/__init__.pyc
@@ -1414,17 +1909,31 @@ ${PYSITELIB}/obspy/taup/__init__.pyo
 ${PYSITELIB}/obspy/taup/c_wrappers.py
 ${PYSITELIB}/obspy/taup/c_wrappers.pyc
 ${PYSITELIB}/obspy/taup/c_wrappers.pyo
+${PYSITELIB}/obspy/taup/data/1066a.nd
+${PYSITELIB}/obspy/taup/data/1066a.npz
+${PYSITELIB}/obspy/taup/data/1066b.nd
+${PYSITELIB}/obspy/taup/data/1066b.npz
 ${PYSITELIB}/obspy/taup/data/README.txt
 ${PYSITELIB}/obspy/taup/data/ak135.npz
 ${PYSITELIB}/obspy/taup/data/ak135.tvel
+${PYSITELIB}/obspy/taup/data/ak135f._nd
+${PYSITELIB}/obspy/taup/data/ak135f_no_mud.nd
+${PYSITELIB}/obspy/taup/data/ak135f_no_mud.npz
+${PYSITELIB}/obspy/taup/data/herrin.nd
+${PYSITELIB}/obspy/taup/data/herrin.npz
 ${PYSITELIB}/obspy/taup/data/iasp91.npz
 ${PYSITELIB}/obspy/taup/data/iasp91.tvel
+${PYSITELIB}/obspy/taup/data/jb.nd
+${PYSITELIB}/obspy/taup/data/jb.npz
+${PYSITELIB}/obspy/taup/data/prem.nd
+${PYSITELIB}/obspy/taup/data/prem.npz
+${PYSITELIB}/obspy/taup/data/pwdk.nd
+${PYSITELIB}/obspy/taup/data/pwdk.npz
+${PYSITELIB}/obspy/taup/data/sp6.nd
+${PYSITELIB}/obspy/taup/data/sp6.npz
 ${PYSITELIB}/obspy/taup/helper_classes.py
 ${PYSITELIB}/obspy/taup/helper_classes.pyc
 ${PYSITELIB}/obspy/taup/helper_classes.pyo
-${PYSITELIB}/obspy/taup/matplotlib_compat.py
-${PYSITELIB}/obspy/taup/matplotlib_compat.pyc
-${PYSITELIB}/obspy/taup/matplotlib_compat.pyo
 ${PYSITELIB}/obspy/taup/seismic_phase.py
 ${PYSITELIB}/obspy/taup/seismic_phase.pyc
 ${PYSITELIB}/obspy/taup/seismic_phase.pyo
@@ -1449,6 +1958,9 @@ ${PYSITELIB}/obspy/taup/taup.pyo
 ${PYSITELIB}/obspy/taup/taup_create.py
 ${PYSITELIB}/obspy/taup/taup_create.pyc
 ${PYSITELIB}/obspy/taup/taup_create.pyo
+${PYSITELIB}/obspy/taup/taup_geo.py
+${PYSITELIB}/obspy/taup/taup_geo.pyc
+${PYSITELIB}/obspy/taup/taup_geo.pyo
 ${PYSITELIB}/obspy/taup/taup_path.py
 ${PYSITELIB}/obspy/taup/taup_path.pyc
 ${PYSITELIB}/obspy/taup/taup_path.pyo
@@ -1469,26 +1981,39 @@ ${PYSITELIB}/obspy/taup/tests/data/TauP_
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_S_shallow.txt
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_ScP.txt
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_ScS.txt
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_surface_waves_table.txt
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/buried_receivers.txt
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/gendata.sh
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/iasp91_surface_waves_table.txt
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/java_taup_pierce_h10_deg35_ttall
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/java_tauptime_pnsn
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/java_tauptime_testoutput
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_path_-mod_iasp91_-o_stdout_-h_10_-ph_P_-sta_-45_-60_evt_-80_-60
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_path_-o_stdout_-h_10_-ph_P_-deg_35
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_path_-o_stdout_-h_10_-ph_P_-deg_35_-mod_ak135
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_pierce_-h_10_-ph_P_-deg_35
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_pierce_-mod_isp91_ph_P_-h_10_-evt_-45_-50_-sta_-80_-50
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_P_-deg_35
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_P_-deg_35_-mod_ak135
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_P_-deg_35_-mod_ak135f_no_mud
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_P_-deg_35_-mod_jb
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_P_-deg_35_-mod_pwdk
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_ttall_-deg_35
 ${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/taup_time_-h_10_-ph_ttall_-deg_35_-mod_ak135
+${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/underside_reflections.txt
+${PYSITELIB}/obspy/taup/tests/data/iasp91.nd
 ${PYSITELIB}/obspy/taup/tests/data/iasp91.tvel
+${PYSITELIB}/obspy/taup/tests/data/iasp91_w_comment.nd
 ${PYSITELIB}/obspy/taup/tests/data/iasp91_w_comment.tvel
 ${PYSITELIB}/obspy/taup/tests/data/sample_ttimes_ak135.lst
 ${PYSITELIB}/obspy/taup/tests/data/sample_ttimes_iasp91.lst
 ${PYSITELIB}/obspy/taup/tests/images/cartesian_many_phases.png
+${PYSITELIB}/obspy/taup/tests/images/cartesian_many_phases_buried_station.png
 ${PYSITELIB}/obspy/taup/tests/images/cartesian_many_phases_single_way.png
 ${PYSITELIB}/obspy/taup/tests/images/cartesian_multiple_stations.png
 ${PYSITELIB}/obspy/taup/tests/images/spherical_diff_phases.png
 ${PYSITELIB}/obspy/taup/tests/images/spherical_many_phases.png
+${PYSITELIB}/obspy/taup/tests/images/spherical_many_phases_buried_station.png
 ${PYSITELIB}/obspy/taup/tests/images/spherical_many_phases_single_way.png
 ${PYSITELIB}/obspy/taup/tests/images/spherical_more_then_360.png
 ${PYSITELIB}/obspy/taup/tests/test_misc.py
@@ -1500,12 +2025,21 @@ ${PYSITELIB}/obspy/taup/tests/test_obspy
 ${PYSITELIB}/obspy/taup/tests/test_plotting.py
 ${PYSITELIB}/obspy/taup/tests/test_plotting.pyc
 ${PYSITELIB}/obspy/taup/tests/test_plotting.pyo
-${PYSITELIB}/obspy/taup/tests/test_slownessmodel.py
-${PYSITELIB}/obspy/taup/tests/test_slownessmodel.pyc
-${PYSITELIB}/obspy/taup/tests/test_slownessmodel.pyo
+${PYSITELIB}/obspy/taup/tests/test_seismic_phase.py
+${PYSITELIB}/obspy/taup/tests/test_seismic_phase.pyc
+${PYSITELIB}/obspy/taup/tests/test_seismic_phase.pyo
+${PYSITELIB}/obspy/taup/tests/test_slowness_model.py
+${PYSITELIB}/obspy/taup/tests/test_slowness_model.pyc
+${PYSITELIB}/obspy/taup/tests/test_slowness_model.pyo
+${PYSITELIB}/obspy/taup/tests/test_split_model.py
+${PYSITELIB}/obspy/taup/tests/test_split_model.pyc
+${PYSITELIB}/obspy/taup/tests/test_split_model.pyo
 ${PYSITELIB}/obspy/taup/tests/test_tau.py
 ${PYSITELIB}/obspy/taup/tests/test_tau.pyc
 ${PYSITELIB}/obspy/taup/tests/test_tau.pyo
+${PYSITELIB}/obspy/taup/tests/test_taup_geo.py
+${PYSITELIB}/obspy/taup/tests/test_taup_geo.pyc
+${PYSITELIB}/obspy/taup/tests/test_taup_geo.pyo
 ${PYSITELIB}/obspy/taup/tests/test_velocity_model.py
 ${PYSITELIB}/obspy/taup/tests/test_velocity_model.pyc
 ${PYSITELIB}/obspy/taup/tests/test_velocity_model.pyo
@@ -1518,216 +2052,3 @@ ${PYSITELIB}/obspy/taup/velocity_layer.p
 ${PYSITELIB}/obspy/taup/velocity_model.py
 ${PYSITELIB}/obspy/taup/velocity_model.pyc
 ${PYSITELIB}/obspy/taup/velocity_model.pyo
-${PYSITELIB}/obspy/wav/README.txt
-${PYSITELIB}/obspy/wav/__init__.py
-${PYSITELIB}/obspy/wav/__init__.pyc
-${PYSITELIB}/obspy/wav/__init__.pyo
-${PYSITELIB}/obspy/wav/core.py
-${PYSITELIB}/obspy/wav/core.pyc
-${PYSITELIB}/obspy/wav/core.pyo
-${PYSITELIB}/obspy/wav/tests/__init__.py
-${PYSITELIB}/obspy/wav/tests/__init__.pyc
-${PYSITELIB}/obspy/wav/tests/__init__.pyo
-${PYSITELIB}/obspy/wav/tests/data/3cssan.near.8.1.RNON.wav
-${PYSITELIB}/obspy/wav/tests/data/3cssan.reg.8.1.RNON.wav
-${PYSITELIB}/obspy/wav/tests/test_core.py
-${PYSITELIB}/obspy/wav/tests/test_core.pyc
-${PYSITELIB}/obspy/wav/tests/test_core.pyo
-${PYSITELIB}/obspy/xseed/README.txt
-${PYSITELIB}/obspy/xseed/__init__.py
-${PYSITELIB}/obspy/xseed/__init__.pyc
-${PYSITELIB}/obspy/xseed/__init__.pyo
-${PYSITELIB}/obspy/xseed/blockette/__init__.py
-${PYSITELIB}/obspy/xseed/blockette/__init__.pyc
-${PYSITELIB}/obspy/xseed/blockette/__init__.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette.py
-${PYSITELIB}/obspy/xseed/blockette/blockette.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette010.py
-${PYSITELIB}/obspy/xseed/blockette/blockette010.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette010.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette011.py
-${PYSITELIB}/obspy/xseed/blockette/blockette011.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette011.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette012.py
-${PYSITELIB}/obspy/xseed/blockette/blockette012.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette012.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette030.py
-${PYSITELIB}/obspy/xseed/blockette/blockette030.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette030.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette031.py
-${PYSITELIB}/obspy/xseed/blockette/blockette031.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette031.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette032.py
-${PYSITELIB}/obspy/xseed/blockette/blockette032.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette032.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette033.py
-${PYSITELIB}/obspy/xseed/blockette/blockette033.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette033.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette034.py
-${PYSITELIB}/obspy/xseed/blockette/blockette034.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette034.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette041.py
-${PYSITELIB}/obspy/xseed/blockette/blockette041.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette041.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette043.py
-${PYSITELIB}/obspy/xseed/blockette/blockette043.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette043.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette044.py
-${PYSITELIB}/obspy/xseed/blockette/blockette044.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette044.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette047.py
-${PYSITELIB}/obspy/xseed/blockette/blockette047.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette047.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette048.py
-${PYSITELIB}/obspy/xseed/blockette/blockette048.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette048.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette050.py
-${PYSITELIB}/obspy/xseed/blockette/blockette050.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette050.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette051.py
-${PYSITELIB}/obspy/xseed/blockette/blockette051.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette051.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette052.py
-${PYSITELIB}/obspy/xseed/blockette/blockette052.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette052.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette053.py
-${PYSITELIB}/obspy/xseed/blockette/blockette053.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette053.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette054.py
-${PYSITELIB}/obspy/xseed/blockette/blockette054.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette054.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette055.py
-${PYSITELIB}/obspy/xseed/blockette/blockette055.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette055.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette057.py
-${PYSITELIB}/obspy/xseed/blockette/blockette057.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette057.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette058.py
-${PYSITELIB}/obspy/xseed/blockette/blockette058.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette058.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette059.py
-${PYSITELIB}/obspy/xseed/blockette/blockette059.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette059.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette060.py
-${PYSITELIB}/obspy/xseed/blockette/blockette060.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette060.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette061.py
-${PYSITELIB}/obspy/xseed/blockette/blockette061.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette061.pyo
-${PYSITELIB}/obspy/xseed/blockette/blockette062.py
-${PYSITELIB}/obspy/xseed/blockette/blockette062.pyc
-${PYSITELIB}/obspy/xseed/blockette/blockette062.pyo
-${PYSITELIB}/obspy/xseed/data/xml-seed-1.0.xsd
-${PYSITELIB}/obspy/xseed/data/xml-seed-1.1.xsd
-${PYSITELIB}/obspy/xseed/fields.py
-${PYSITELIB}/obspy/xseed/fields.pyc
-${PYSITELIB}/obspy/xseed/fields.pyo
-${PYSITELIB}/obspy/xseed/parser.py
-${PYSITELIB}/obspy/xseed/parser.pyc
-${PYSITELIB}/obspy/xseed/parser.pyo
-${PYSITELIB}/obspy/xseed/scripts/__init__.py
-${PYSITELIB}/obspy/xseed/scripts/__init__.pyc
-${PYSITELIB}/obspy/xseed/scripts/__init__.pyo
-${PYSITELIB}/obspy/xseed/scripts/dataless2resp.py
-${PYSITELIB}/obspy/xseed/scripts/dataless2resp.pyc
-${PYSITELIB}/obspy/xseed/scripts/dataless2resp.pyo
-${PYSITELIB}/obspy/xseed/scripts/dataless2xseed.py
-${PYSITELIB}/obspy/xseed/scripts/dataless2xseed.pyc
-${PYSITELIB}/obspy/xseed/scripts/dataless2xseed.pyo
-${PYSITELIB}/obspy/xseed/scripts/xseed2dataless.py
-${PYSITELIB}/obspy/xseed/scripts/xseed2dataless.pyc
-${PYSITELIB}/obspy/xseed/scripts/xseed2dataless.pyo
-${PYSITELIB}/obspy/xseed/tests/__init__.py
-${PYSITELIB}/obspy/xseed/tests/__init__.pyc
-${PYSITELIB}/obspy/xseed/tests/__init__.pyo
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/README.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette010.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette011.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette012.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette030.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette031.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette032.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette033.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette034.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette041.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette043.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette044.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette047.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette050.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette051.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette052.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette053.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette054.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette055.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette057.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette058.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette059.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette060.txt
-${PYSITELIB}/obspy/xseed/tests/blockette-tests/blockette061.txt
-${PYSITELIB}/obspy/xseed/tests/data/AI.ESPZ._.BHE.dataless
-${PYSITELIB}/obspy/xseed/tests/data/AI.ESPZ._.BH_.dataless
-${PYSITELIB}/obspy/xseed/tests/data/BN.LPW._.BHE.dataless
-${PYSITELIB}/obspy/xseed/tests/data/CL.AIO.dataless
-${PYSITELIB}/obspy/xseed/tests/data/G.SPB.dataless
-${PYSITELIB}/obspy/xseed/tests/data/II_COCO_three_channel_borehole.mseed
-${PYSITELIB}/obspy/xseed/tests/data/arclink_full.seed
-${PYSITELIB}/obspy/xseed/tests/data/bug165.dataless
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_DHFO
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_FURT
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_FURT.xml
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_MANZ
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_RJOB
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_ROTZ
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.BW_ZUGS
-${PYSITELIB}/obspy/xseed/tests/data/dataless.seed.II_COCO
-${PYSITELIB}/obspy/xseed/tests/data/nied.dataless.gz
-${PYSITELIB}/obspy/xseed/tests/data/xml-seed-1.0.xsd
-${PYSITELIB}/obspy/xseed/tests/data/xml-seed-1.1.xsd
-${PYSITELIB}/obspy/xseed/tests/test_blockettes.py
-${PYSITELIB}/obspy/xseed/tests/test_blockettes.pyc
-${PYSITELIB}/obspy/xseed/tests/test_blockettes.pyo
-${PYSITELIB}/obspy/xseed/tests/test_fields.py
-${PYSITELIB}/obspy/xseed/tests/test_fields.pyc
-${PYSITELIB}/obspy/xseed/tests/test_fields.pyo
-${PYSITELIB}/obspy/xseed/tests/test_parser.py
-${PYSITELIB}/obspy/xseed/tests/test_parser.pyc
-${PYSITELIB}/obspy/xseed/tests/test_parser.pyo
-${PYSITELIB}/obspy/xseed/tests/test_scripts.py
-${PYSITELIB}/obspy/xseed/tests/test_scripts.pyc
-${PYSITELIB}/obspy/xseed/tests/test_scripts.pyo
-${PYSITELIB}/obspy/xseed/tests/test_utils.py
-${PYSITELIB}/obspy/xseed/tests/test_utils.pyc
-${PYSITELIB}/obspy/xseed/tests/test_utils.pyo
-${PYSITELIB}/obspy/xseed/utils.py
-${PYSITELIB}/obspy/xseed/utils.pyc
-${PYSITELIB}/obspy/xseed/utils.pyo
-${PYSITELIB}/obspy/y/README.txt
-${PYSITELIB}/obspy/y/__init__.py
-${PYSITELIB}/obspy/y/__init__.pyc
-${PYSITELIB}/obspy/y/__init__.pyo
-${PYSITELIB}/obspy/y/core.py
-${PYSITELIB}/obspy/y/core.pyc
-${PYSITELIB}/obspy/y/core.pyo
-${PYSITELIB}/obspy/y/tests/__init__.py
-${PYSITELIB}/obspy/y/tests/__init__.pyc
-${PYSITELIB}/obspy/y/tests/__init__.pyo
-${PYSITELIB}/obspy/y/tests/data/YAYT_BHZ_20021223.124800
-${PYSITELIB}/obspy/y/tests/test_core.py
-${PYSITELIB}/obspy/y/tests/test_core.pyc
-${PYSITELIB}/obspy/y/tests/test_core.pyo
-${PYSITELIB}/obspy/zmap/README.txt
-${PYSITELIB}/obspy/zmap/__init__.py
-${PYSITELIB}/obspy/zmap/__init__.pyc
-${PYSITELIB}/obspy/zmap/__init__.pyo
-${PYSITELIB}/obspy/zmap/core.py
-${PYSITELIB}/obspy/zmap/core.pyc
-${PYSITELIB}/obspy/zmap/core.pyo
-${PYSITELIB}/obspy/zmap/tests/__init__.py
-${PYSITELIB}/obspy/zmap/tests/__init__.pyc
-${PYSITELIB}/obspy/zmap/tests/__init__.pyo
-${PYSITELIB}/obspy/zmap/tests/data/neries_events.xml
-${PYSITELIB}/obspy/zmap/tests/data/zmap_events.txt
-${PYSITELIB}/obspy/zmap/tests/test_zmap.py
-${PYSITELIB}/obspy/zmap/tests/test_zmap.pyc
-${PYSITELIB}/obspy/zmap/tests/test_zmap.pyo

Index: pkgsrc/geography/py-obspy/distinfo
diff -u pkgsrc/geography/py-obspy/distinfo:1.2 pkgsrc/geography/py-obspy/distinfo:1.3
--- pkgsrc/geography/py-obspy/distinfo:1.2      Tue Nov  3 00:08:44 2015
+++ pkgsrc/geography/py-obspy/distinfo  Sat Jul 16 04:11:55 2016
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2015/11/03 00:08:44 agc Exp $
+$NetBSD: distinfo,v 1.3 2016/07/16 04:11:55 wen Exp $
 
-SHA1 (obspy-0.10.2.zip) = 0cf5552265dc1ac72499d5b090d3f00e26d4a295
-RMD160 (obspy-0.10.2.zip) = 17d7cfd97472fc1fce34fe36b90f98da6c3d2c0b
-SHA512 (obspy-0.10.2.zip) = e43fd426a6913038d12722bdc2b29bcb2df9285ca0a22081a60231fe50644433aad0bc3e35c7452edc527bde47324f94069f946f8a77068b68d581576a8a9ef9
-Size (obspy-0.10.2.zip) = 15847912 bytes
+SHA1 (obspy-1.0.1.zip) = 7f27dadc9725f01a10f4f3f4e447f92f61aac0d5
+RMD160 (obspy-1.0.1.zip) = 84d961c24a6445d0438200f3c3bbf8b9614eefbc
+SHA512 (obspy-1.0.1.zip) = 0c530fb33b293aa7647d4adbfc1f3139afbc7d7d761062b077b8ff038bb1cefcad1c668c2d4385f8455feb641b518fa2ad7f54d95066d6e4c412abc7359401d2
+Size (obspy-1.0.1.zip) = 20118442 bytes



Home | Main Index | Thread Index | Old Index