[BACK]Return to PLIST CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / geography / py-obspy

File: [cvs.NetBSD.org] / pkgsrc / geography / py-obspy / PLIST (download)

Revision 1.11, Sat Jan 2 10:06:04 2021 UTC (3 years, 3 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1
Changes since 1.10: +154 -3 lines

(geography/py-obspy) Updated 1.1.1 to 1.2.2 (build fix, too)


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

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

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

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

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

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

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

@comment $NetBSD: PLIST,v 1.11 2021/01/02 10:06:04 mef Exp $
bin/obspy-dataless2resp
bin/obspy-dataless2xseed
bin/obspy-flinn-engdahl
bin/obspy-indexer
bin/obspy-mopad
bin/obspy-mseed-recordanalyzer
bin/obspy-plot
bin/obspy-print
bin/obspy-reftek-rescue
bin/obspy-runtests
bin/obspy-scan
bin/obspy-sds-report
bin/obspy-xseed2dataless
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/obspy/CONTRIBUTORS.txt
${PYSITELIB}/obspy/LICENSE.txt
${PYSITELIB}/obspy/RELEASE-VERSION
${PYSITELIB}/obspy/__init__.py
${PYSITELIB}/obspy/__init__.pyc
${PYSITELIB}/obspy/__init__.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/routing/__init__.py
${PYSITELIB}/obspy/clients/fdsn/routing/__init__.pyc
${PYSITELIB}/obspy/clients/fdsn/routing/__init__.pyo
${PYSITELIB}/obspy/clients/fdsn/routing/eidaws_routing_client.py
${PYSITELIB}/obspy/clients/fdsn/routing/eidaws_routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/routing/eidaws_routing_client.pyo
${PYSITELIB}/obspy/clients/fdsn/routing/federator_routing_client.py
${PYSITELIB}/obspy/clients/fdsn/routing/federator_routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/routing/federator_routing_client.pyo
${PYSITELIB}/obspy/clients/fdsn/routing/routing_client.py
${PYSITELIB}/obspy/clients/fdsn/routing/routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/routing/routing_client.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/channel_level_fdsn_obscure_location_code.txt
${PYSITELIB}/obspy/clients/fdsn/tests/data/channel_level_fdsn_with_multiple_epochs.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/eida_token.txt
${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/uncommon_channel_location.txt
${PYSITELIB}/obspy/clients/fdsn/tests/data/usgs_event.wadl
${PYSITELIB}/obspy/clients/fdsn/tests/test_base_routing_client.py
${PYSITELIB}/obspy/clients/fdsn/tests/test_base_routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/tests/test_base_routing_client.pyo
${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_eidaws_routing_client.py
${PYSITELIB}/obspy/clients/fdsn/tests/test_eidaws_routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/tests/test_eidaws_routing_client.pyo
${PYSITELIB}/obspy/clients/fdsn/tests/test_federator_routing_client.py
${PYSITELIB}/obspy/clients/fdsn/tests/test_federator_routing_client.pyc
${PYSITELIB}/obspy/clients/fdsn/tests/test_federator_routing_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/db.py
${PYSITELIB}/obspy/clients/filesystem/db.pyc
${PYSITELIB}/obspy/clients/filesystem/db.pyo
${PYSITELIB}/obspy/clients/filesystem/miniseed.py
${PYSITELIB}/obspy/clients/filesystem/miniseed.pyc
${PYSITELIB}/obspy/clients/filesystem/miniseed.pyo
${PYSITELIB}/obspy/clients/filesystem/msriterator.py
${PYSITELIB}/obspy/clients/filesystem/msriterator.pyc
${PYSITELIB}/obspy/clients/filesystem/msriterator.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/data/tsindex_data/CU/2018/001/CU.TGUH.00.BHZ.2018.001_first_minute.mseed
${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/IU/2018/001/IU.ANMO.10.BHZ.2018.001_first_minute.mseed
${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/IU/2018/001/IU.COLA.10.BHZ.2018.001_first_minute.mseed
${PYSITELIB}/obspy/clients/filesystem/tests/data/tsindex_data/timeseries.sqlite
${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/filesystem/tests/test_tsindex.py
${PYSITELIB}/obspy/clients/filesystem/tests/test_tsindex.pyc
${PYSITELIB}/obspy/clients/filesystem/tests/test_tsindex.pyo
${PYSITELIB}/obspy/clients/filesystem/tsindex.py
${PYSITELIB}/obspy/clients/filesystem/tsindex.pyc
${PYSITELIB}/obspy/clients/filesystem/tsindex.pyo
${PYSITELIB}/obspy/clients/httpproxy.py
${PYSITELIB}/obspy/clients/httpproxy.pyc
${PYSITELIB}/obspy/clients/httpproxy.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/nrl/__init__.py
${PYSITELIB}/obspy/clients/nrl/__init__.pyc
${PYSITELIB}/obspy/clients/nrl/__init__.pyo
${PYSITELIB}/obspy/clients/nrl/client.py
${PYSITELIB}/obspy/clients/nrl/client.pyc
${PYSITELIB}/obspy/clients/nrl/client.pyo
${PYSITELIB}/obspy/clients/nrl/tests/__init__.py
${PYSITELIB}/obspy/clients/nrl/tests/__init__.pyc
${PYSITELIB}/obspy/clients/nrl/tests/__init__.pyo
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/dataloggers/index.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/dataloggers/reftek/RESP.XX.NR001..LHZ.130.1.1
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/dataloggers/reftek/index.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/dataloggers/reftek/rt130.1.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/dataloggers/reftek/rt130.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/index.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/guralp/RESP.XX.NS007..BHZ.CMG3T.120.1500
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/guralp/cmg-3t.120.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/guralp/cmg-3t.120_50.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/guralp/cmg-3t.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/guralp/index.txt
${PYSITELIB}/obspy/clients/nrl/tests/data/IRIS/sensors/index.txt
${PYSITELIB}/obspy/clients/nrl/tests/test_nrl.py
${PYSITELIB}/obspy/clients/nrl/tests/test_nrl.pyc
${PYSITELIB}/obspy/clients/nrl/tests/test_nrl.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/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/BW_RJOB__EHZ.xml
${PYSITELIB}/obspy/core/data/example.npz
${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/resourceid.py
${PYSITELIB}/obspy/core/event/resourceid.pyc
${PYSITELIB}/obspy/core/event/resourceid.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/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/AU.MEEK.seed
${PYSITELIB}/obspy/core/tests/data/AU.MEEK.xml
${PYSITELIB}/obspy/core/tests/data/DK.BSD..BHZ.xml
${PYSITELIB}/obspy/core/tests/data/IM_I53H1_BDF.xml
${PYSITELIB}/obspy/core/tests/data/IM_IL31__BHZ.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/RESP.XX.NS306..SHZ.GS13.1.2180
${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/events_longitude_wrap.zmap
${PYSITELIB}/obspy/core/tests/data/example_py2.pickle
${PYSITELIB}/obspy/core/tests/data/example_py3.pickle
${PYSITELIB}/obspy/core/tests/data/expected_response_IM_IL31__BHZ.txt
${PYSITELIB}/obspy/core/tests/data/ffbx.dataless
${PYSITELIB}/obspy/core/tests/data/ffbx.stationxml
${PYSITELIB}/obspy/core/tests/data/ffbx_rotated.slist
${PYSITELIB}/obspy/core/tests/data/ffbx_unrotated_gaps.mseed
${PYSITELIB}/obspy/core/tests/data/iris_events.xml
${PYSITELIB}/obspy/core/tests/data/neries_events.xml
${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/stationxml_no_units_in_stage_1.xml
${PYSITELIB}/obspy/core/tests/data/tarfile_impostor.mseed
${PYSITELIB}/obspy/core/tests/data/test.tar
${PYSITELIB}/obspy/core/tests/data/test.tar.bz2
${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/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-basemap_long-wrap.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/catalog-cartopy_long-wrap.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/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/response_response_degrees.png
${PYSITELIB}/obspy/core/tests/images/station_response.png
${PYSITELIB}/obspy/core/tests/images/station_response_degrees.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_compatibility.py
${PYSITELIB}/obspy/core/tests/test_compatibility.pyc
${PYSITELIB}/obspy/core/tests/test_compatibility.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_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_resource_identifier.py
${PYSITELIB}/obspy/core/tests/test_resource_identifier.pyc
${PYSITELIB}/obspy/core/tests/test_resource_identifier.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
${PYSITELIB}/obspy/core/tests/test_stream.py
${PYSITELIB}/obspy/core/tests/test_stream.pyc
${PYSITELIB}/obspy/core/tests/test_stream.pyo
${PYSITELIB}/obspy/core/tests/test_trace.py
${PYSITELIB}/obspy/core/tests/test_trace.pyc
${PYSITELIB}/obspy/core/tests/test_trace.pyo
${PYSITELIB}/obspy/core/tests/test_utcdatetime.py
${PYSITELIB}/obspy/core/tests/test_utcdatetime.pyc
${PYSITELIB}/obspy/core/tests/test_utcdatetime.pyo
${PYSITELIB}/obspy/core/tests/test_util_attribdict.py
${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyc
${PYSITELIB}/obspy/core/tests/test_util_attribdict.pyo
${PYSITELIB}/obspy/core/tests/test_util_base.py
${PYSITELIB}/obspy/core/tests/test_util_base.pyc
${PYSITELIB}/obspy/core/tests/test_util_base.pyo
${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_misc.py
${PYSITELIB}/obspy/core/tests/test_util_misc.pyc
${PYSITELIB}/obspy/core/tests/test_util_misc.pyo
${PYSITELIB}/obspy/core/tests/test_util_testing.py
${PYSITELIB}/obspy/core/tests/test_util_testing.pyc
${PYSITELIB}/obspy/core/tests/test_util_testing.pyo
${PYSITELIB}/obspy/core/tests/test_util_types.py
${PYSITELIB}/obspy/core/tests/test_util_types.pyc
${PYSITELIB}/obspy/core/tests/test_util_types.pyo
${PYSITELIB}/obspy/core/tests/test_waveform_plugins.py
${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyc
${PYSITELIB}/obspy/core/tests/test_waveform_plugins.pyo
${PYSITELIB}/obspy/core/trace.py
${PYSITELIB}/obspy/core/trace.pyc
${PYSITELIB}/obspy/core/trace.pyo
${PYSITELIB}/obspy/core/utcdatetime.py
${PYSITELIB}/obspy/core/utcdatetime.pyc
${PYSITELIB}/obspy/core/utcdatetime.pyo
${PYSITELIB}/obspy/core/util/__init__.py
${PYSITELIB}/obspy/core/util/__init__.pyc
${PYSITELIB}/obspy/core/util/__init__.pyo
${PYSITELIB}/obspy/core/util/attribdict.py
${PYSITELIB}/obspy/core/util/attribdict.pyc
${PYSITELIB}/obspy/core/util/attribdict.pyo
${PYSITELIB}/obspy/core/util/base.py
${PYSITELIB}/obspy/core/util/base.pyc
${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/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
${PYSITELIB}/obspy/core/util/misc.py
${PYSITELIB}/obspy/core/util/misc.pyc
${PYSITELIB}/obspy/core/util/misc.pyo
${PYSITELIB}/obspy/core/util/obspy_types.py
${PYSITELIB}/obspy/core/util/obspy_types.pyc
${PYSITELIB}/obspy/core/util/obspy_types.pyo
${PYSITELIB}/obspy/core/util/testing.py
${PYSITELIB}/obspy/core/util/testing.pyc
${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/db/README.txt
${PYSITELIB}/obspy/db/__init__.py
${PYSITELIB}/obspy/db/__init__.pyc
${PYSITELIB}/obspy/db/__init__.pyo
${PYSITELIB}/obspy/db/client.py
${PYSITELIB}/obspy/db/client.pyc
${PYSITELIB}/obspy/db/client.pyo
${PYSITELIB}/obspy/db/db.py
${PYSITELIB}/obspy/db/db.pyc
${PYSITELIB}/obspy/db/db.pyo
${PYSITELIB}/obspy/db/feature.py
${PYSITELIB}/obspy/db/feature.pyc
${PYSITELIB}/obspy/db/feature.pyo
${PYSITELIB}/obspy/db/indexer.py
${PYSITELIB}/obspy/db/indexer.pyc
${PYSITELIB}/obspy/db/indexer.pyo
${PYSITELIB}/obspy/db/scripts/__init__.py
${PYSITELIB}/obspy/db/scripts/__init__.pyc
${PYSITELIB}/obspy/db/scripts/__init__.pyo
${PYSITELIB}/obspy/db/scripts/indexer.py
${PYSITELIB}/obspy/db/scripts/indexer.pyc
${PYSITELIB}/obspy/db/scripts/indexer.pyo
${PYSITELIB}/obspy/db/tests/__init__.py
${PYSITELIB}/obspy/db/tests/__init__.pyc
${PYSITELIB}/obspy/db/tests/__init__.pyo
${PYSITELIB}/obspy/db/tests/test_client.py
${PYSITELIB}/obspy/db/tests/test_client.pyc
${PYSITELIB}/obspy/db/tests/test_client.pyo
${PYSITELIB}/obspy/db/tests/test_util.py
${PYSITELIB}/obspy/db/tests/test_util.pyc
${PYSITELIB}/obspy/db/tests/test_util.pyo
${PYSITELIB}/obspy/db/util.py
${PYSITELIB}/obspy/db/util.pyc
${PYSITELIB}/obspy/db/util.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
${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/data/viridis_white.npy
${PYSITELIB}/obspy/imaging/maps.py
${PYSITELIB}/obspy/imaging/maps.pyc
${PYSITELIB}/obspy/imaging/maps.pyo
${PYSITELIB}/obspy/imaging/mopad_wrapper.py
${PYSITELIB}/obspy/imaging/mopad_wrapper.pyc
${PYSITELIB}/obspy/imaging/mopad_wrapper.pyo
${PYSITELIB}/obspy/imaging/scripts/__init__.py
${PYSITELIB}/obspy/imaging/scripts/__init__.pyc
${PYSITELIB}/obspy/imaging/scripts/__init__.pyo
${PYSITELIB}/obspy/imaging/scripts/mopad.py
${PYSITELIB}/obspy/imaging/scripts/mopad.pyc
${PYSITELIB}/obspy/imaging/scripts/mopad.pyo
${PYSITELIB}/obspy/imaging/scripts/plot.py
${PYSITELIB}/obspy/imaging/scripts/plot.pyc
${PYSITELIB}/obspy/imaging/scripts/plot.pyo
${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
${PYSITELIB}/obspy/imaging/tests/__init__.py
${PYSITELIB}/obspy/imaging/tests/__init__.pyc
${PYSITELIB}/obspy/imaging/tests/__init__.pyo
${PYSITELIB}/obspy/imaging/tests/images/bb-20090102-np2.png
${PYSITELIB}/obspy/imaging/tests/images/bb_19950128_np1.png
${PYSITELIB}/obspy/imaging/tests/images/bb_19950128_np2.png
${PYSITELIB}/obspy/imaging/tests/images/bb_20040905_0_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_20040905_1_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_20090102_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_20090102_np1.png
${PYSITELIB}/obspy/imaging/tests/images/bb_aspect_x.png
${PYSITELIB}/obspy/imaging/tests/images/bb_aspect_x_height.png
${PYSITELIB}/obspy/imaging/tests/images/bb_aspect_y.png
${PYSITELIB}/obspy/imaging/tests/images/bb_aspect_y_height.png
${PYSITELIB}/obspy/imaging/tests/images/bb_chile_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_clvd.png
${PYSITELIB}/obspy/imaging/tests/images/bb_collection.png
${PYSITELIB}/obspy/imaging/tests/images/bb_double_couple.png
${PYSITELIB}/obspy/imaging/tests/images/bb_explosion.png
${PYSITELIB}/obspy/imaging/tests/images/bb_geiyo_np1.png
${PYSITELIB}/obspy/imaging/tests/images/bb_honshu_np1.png
${PYSITELIB}/obspy/imaging/tests/images/bb_honshu_np2.png
${PYSITELIB}/obspy/imaging/tests/images/bb_implosion.png
${PYSITELIB}/obspy/imaging/tests/images/bb_lars.png
${PYSITELIB}/obspy/imaging/tests/images/bb_miyagi_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_sumatra_mt.png
${PYSITELIB}/obspy/imaging/tests/images/bb_sumatra_np1.png
${PYSITELIB}/obspy/imaging/tests/images/bb_sumatra_np2.png
${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
${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_ortho.gmt
${PYSITELIB}/obspy/imaging/tests/images/mopad_lines_stereo.gmt
${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/ppsd_freq.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
${PYSITELIB}/obspy/imaging/tests/images/spectrogram.png
${PYSITELIB}/obspy/imaging/tests/images/spectrogram_log.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_huge.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_10_traces_tiny.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_1_trace.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_3_traces.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_5_traces.png
${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
${PYSITELIB}/obspy/imaging/tests/images/waveform_dayplot_catalog.png
${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
${PYSITELIB}/obspy/imaging/tests/images/waveform_reftime_relative.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_reftime_section.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_simple_gap_few_samples.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_simple_gap_many_samples.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_wiggles_horizontal_section.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_wiggles_negative_section.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_wiggles_positive_section.png
${PYSITELIB}/obspy/imaging/tests/images/waveform_wiggles_vertical_section.png
${PYSITELIB}/obspy/imaging/tests/test_backend.py
${PYSITELIB}/obspy/imaging/tests/test_backend.pyc
${PYSITELIB}/obspy/imaging/tests/test_backend.pyo
${PYSITELIB}/obspy/imaging/tests/test_beachball.py
${PYSITELIB}/obspy/imaging/tests/test_beachball.pyc
${PYSITELIB}/obspy/imaging/tests/test_beachball.pyo
${PYSITELIB}/obspy/imaging/tests/test_mopad.py
${PYSITELIB}/obspy/imaging/tests/test_mopad.pyc
${PYSITELIB}/obspy/imaging/tests/test_mopad.pyo
${PYSITELIB}/obspy/imaging/tests/test_mopad_script.py
${PYSITELIB}/obspy/imaging/tests/test_mopad_script.pyc
${PYSITELIB}/obspy/imaging/tests/test_mopad_script.pyo
${PYSITELIB}/obspy/imaging/tests/test_plot.py
${PYSITELIB}/obspy/imaging/tests/test_plot.pyc
${PYSITELIB}/obspy/imaging/tests/test_plot.pyo
${PYSITELIB}/obspy/imaging/tests/test_ppsd.py
${PYSITELIB}/obspy/imaging/tests/test_ppsd.pyc
${PYSITELIB}/obspy/imaging/tests/test_ppsd.pyo
${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
${PYSITELIB}/obspy/imaging/tests/test_waveform.py
${PYSITELIB}/obspy/imaging/tests/test_waveform.pyc
${PYSITELIB}/obspy/imaging/tests/test_waveform.pyo
${PYSITELIB}/obspy/imaging/util.py
${PYSITELIB}/obspy/imaging/util.pyc
${PYSITELIB}/obspy/imaging/util.pyo
${PYSITELIB}/obspy/imaging/waveform.py
${PYSITELIB}/obspy/imaging/waveform.pyc
${PYSITELIB}/obspy/imaging/waveform.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/data/st.ah
${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/arclink/__init__.py
${PYSITELIB}/obspy/io/arclink/__init__.pyc
${PYSITELIB}/obspy/io/arclink/__init__.pyo
${PYSITELIB}/obspy/io/arclink/data/arclink_schema.xsd
${PYSITELIB}/obspy/io/arclink/inventory.py
${PYSITELIB}/obspy/io/arclink/inventory.pyc
${PYSITELIB}/obspy/io/arclink/inventory.pyo
${PYSITELIB}/obspy/io/arclink/tests/__init__.py
${PYSITELIB}/obspy/io/arclink/tests/__init__.pyc
${PYSITELIB}/obspy/io/arclink/tests/__init__.pyo
${PYSITELIB}/obspy/io/arclink/tests/data/arclink_afc.xml
${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory.xml
${PYSITELIB}/obspy/io/arclink/tests/data/arclink_inventory_poly.xml
${PYSITELIB}/obspy/io/arclink/tests/data/gols_station.xml
${PYSITELIB}/obspy/io/arclink/tests/data/public-id-slash.xml
${PYSITELIB}/obspy/io/arclink/tests/data/station_afc.xml
${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.py
${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.pyc
${PYSITELIB}/obspy/io/arclink/tests/test_inventory_xml.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/miniseed_record.mseed
${PYSITELIB}/obspy/io/ascii/tests/data/mseed2ascii_miniseed_record.txt
${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_float_custom_fmt.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_float_custom_fmt.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/CMTSOLUTION_NEW
${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/data/obspyck_20141020150701_P.cnv
${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_css.wfdisc
${PYSITELIB}/obspy/io/css/tests/data/test_nnsa.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/dmx/__init__.py
${PYSITELIB}/obspy/io/dmx/__init__.pyc
${PYSITELIB}/obspy/io/dmx/__init__.pyo
${PYSITELIB}/obspy/io/dmx/core.py
${PYSITELIB}/obspy/io/dmx/core.pyc
${PYSITELIB}/obspy/io/dmx/core.pyo
${PYSITELIB}/obspy/io/dmx/tests/__init__.py
${PYSITELIB}/obspy/io/dmx/tests/__init__.pyc
${PYSITELIB}/obspy/io/dmx/tests/__init__.pyo
${PYSITELIB}/obspy/io/dmx/tests/data/131114_090600.dmx
${PYSITELIB}/obspy/io/dmx/tests/test_core.py
${PYSITELIB}/obspy/io/dmx/tests/test_core.pyc
${PYSITELIB}/obspy/io/dmx/tests/test_core.pyo
${PYSITELIB}/obspy/io/focmec/__init__.py
${PYSITELIB}/obspy/io/focmec/__init__.pyc
${PYSITELIB}/obspy/io/focmec/__init__.pyo
${PYSITELIB}/obspy/io/focmec/core.py
${PYSITELIB}/obspy/io/focmec/core.pyc
${PYSITELIB}/obspy/io/focmec/core.pyo
${PYSITELIB}/obspy/io/focmec/tests/__init__.py
${PYSITELIB}/obspy/io/focmec/tests/__init__.pyc
${PYSITELIB}/obspy/io/focmec/tests/__init__.pyo
${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta-noratios.lst
${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta.lst
${PYSITELIB}/obspy/io/focmec/tests/data/focmec_8sta.out
${PYSITELIB}/obspy/io/focmec/tests/data/focmec_all.lst
${PYSITELIB}/obspy/io/focmec/tests/data/focmec_qedUWne.lst
${PYSITELIB}/obspy/io/focmec/tests/test_core.py
${PYSITELIB}/obspy/io/focmec/tests/test_core.pyc
${PYSITELIB}/obspy/io/focmec/tests/test_core.pyo
${PYSITELIB}/obspy/io/gcf/__init__.py
${PYSITELIB}/obspy/io/gcf/__init__.pyc
${PYSITELIB}/obspy/io/gcf/__init__.pyo
${PYSITELIB}/obspy/io/gcf/core.py
${PYSITELIB}/obspy/io/gcf/core.pyc
${PYSITELIB}/obspy/io/gcf/core.pyo
${PYSITELIB}/obspy/io/gcf/libgcf.py
${PYSITELIB}/obspy/io/gcf/libgcf.pyc
${PYSITELIB}/obspy/io/gcf/libgcf.pyo
${PYSITELIB}/obspy/io/gcf/tests/__init__.py
${PYSITELIB}/obspy/io/gcf/tests/__init__.pyc
${PYSITELIB}/obspy/io/gcf/tests/__init__.pyo
${PYSITELIB}/obspy/io/gcf/tests/data/20160603_1910n.gcf
${PYSITELIB}/obspy/io/gcf/tests/data/20160603_1955n.gcf
${PYSITELIB}/obspy/io/gcf/tests/test_core.py
${PYSITELIB}/obspy/io/gcf/tests/test_core.pyc
${PYSITELIB}/obspy/io/gcf/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/bulletin.py
${PYSITELIB}/obspy/io/gse2/bulletin.pyc
${PYSITELIB}/obspy/io/gse2/bulletin.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/boa___00_07a.gse
${PYSITELIB}/obspy/io/gse2/tests/data/broken_head.gse2
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/gse_2.0_2_begins.txt
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/gse_2.0_2_events.txt
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/gse_2.0_incomplete.txt
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/gse_2.0_non_standard.txt
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/gse_2.0_standard.txt
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/inventory.xml
${PYSITELIB}/obspy/io/gse2/tests/data/bulletin/inventory_multiple_channels.xml
${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_bulletin.py
${PYSITELIB}/obspy/io/gse2/tests/test_bulletin.pyc
${PYSITELIB}/obspy/io/gse2/tests/test_bulletin.pyo
${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/hypodd/__init__.py
${PYSITELIB}/obspy/io/hypodd/__init__.pyc
${PYSITELIB}/obspy/io/hypodd/__init__.pyo
${PYSITELIB}/obspy/io/hypodd/pha.py
${PYSITELIB}/obspy/io/hypodd/pha.pyc
${PYSITELIB}/obspy/io/hypodd/pha.pyo
${PYSITELIB}/obspy/io/hypodd/tests/__init__.py
${PYSITELIB}/obspy/io/hypodd/tests/__init__.pyc
${PYSITELIB}/obspy/io/hypodd/tests/__init__.pyo
${PYSITELIB}/obspy/io/hypodd/tests/data/60s_nan.pha
${PYSITELIB}/obspy/io/hypodd/tests/data/example.pha
${PYSITELIB}/obspy/io/hypodd/tests/test_pha.py
${PYSITELIB}/obspy/io/hypodd/tests/test_pha.pyc
${PYSITELIB}/obspy/io/hypodd/tests/test_pha.pyo
${PYSITELIB}/obspy/io/iaspei/__init__.py
${PYSITELIB}/obspy/io/iaspei/__init__.pyc
${PYSITELIB}/obspy/io/iaspei/__init__.pyo
${PYSITELIB}/obspy/io/iaspei/core.py
${PYSITELIB}/obspy/io/iaspei/core.pyc
${PYSITELIB}/obspy/io/iaspei/core.pyo
${PYSITELIB}/obspy/io/iaspei/tests/__init__.py
${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyc
${PYSITELIB}/obspy/io/iaspei/tests/__init__.pyo
${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.isf
${PYSITELIB}/obspy/io/iaspei/tests/data/19670130012028.xml
${PYSITELIB}/obspy/io/iaspei/tests/test_core.py
${PYSITELIB}/obspy/io/iaspei/tests/test_core.pyc
${PYSITELIB}/obspy/io/iaspei/tests/test_core.pyo
${PYSITELIB}/obspy/io/iaspei/util.py
${PYSITELIB}/obspy/io/iaspei/util.pyc
${PYSITELIB}/obspy/io/iaspei/util.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/src/libmseed/test/Makefile
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/README
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/CDSN-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/DWWSSN-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Float32-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Float64-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/GEOSCOPE-16bit-3exp-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int16-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-1024byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-128byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-2048byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-256byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-4096byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-512byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-8192byte.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Int32-oneseries-mixedlengths-mixedorder.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/SRO-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Steim1-AllDifferences-BE.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Steim1-AllDifferences-LE.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Steim2-AllDifferences-BE.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/Steim2-AllDifferences-LE.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/corrupt-blockettes-wrongnext.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/detection.record.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/invalid-blockette-offset.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/no-blockette1000-steim1.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/text-encoded.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/data/unapplied-timecorrection.mseed
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/lmtestpack.c
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/lmtestparse.c
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Float32-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Float32-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Float64-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Float64-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Int16-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Int16-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Int32-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Int32-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Steim1-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Steim1-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Steim2-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-Steim2-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-text-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/pack-text-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-CDSN-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-CDSN-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-DWWSSN-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-DWWSSN-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Float32-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Float32-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Float64-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Float64-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-GEOSCOPE163-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-GEOSCOPE163-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int16-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int16-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-1024byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-1024byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-128byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-128byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-2048byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-2048byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-256byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-256byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-4096byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-4096byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-512byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-512byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-8192byte-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Int32-8192byte-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-SRO-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-SRO-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim1-bigendian.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim1-bigendian.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim1-littleendian.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim1-littleendian.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim2-bigendian.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim2-bigendian.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim2-littleendian.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-Steim2-littleendian.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-detection-record.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-detection-record.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-invalid-blockette-offset.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-invalid-blockette-offset.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-mixed-order-mixed-length-trace.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-mixed-order-mixed-length-trace.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-no-blockette1000.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-no-blockette1000.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-text-encoded.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-text-encoded.test.ref
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-unapplied-timecorrection.test
${PYSITELIB}/obspy/io/mseed/src/libmseed/test/read-unapplied-timecorrection.test.ref
${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/bizarre/mseed_data_offset_0.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/bizarre/mseed_no_blkt_1000.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/blockette008.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/blockette300.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/blockette310.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/blockette320.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/gecko_non_ascii_header.ms
${PYSITELIB}/obspy/io/mseed/tests/data/infinite-loop.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/microsecond_wrap.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/mseed_not_a_single_blkt_48byte_data_offset.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/record_with_invalid_word_order.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/rt130_sr0_cropped.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/single_record_negative_sr_fact_and_mult.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/single_record_plus_noise_record.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/steim2.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/test.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/three_records_zero_data_in_middle.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/timingquality.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/two_channels.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/various_noise_records.mseed
${PYSITELIB}/obspy/io/mseed/tests/data/wrong_blockette_numbers_specified.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_custom.hyp
${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_custom.qml
${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_post_version_6.hyp
${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat.npy
${PYSITELIB}/obspy/io/nlloc/tests/data/nlloc_scat_converted.npy
${PYSITELIB}/obspy/io/nlloc/tests/data/vanua.sum.grid0.loc.hyp
${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/nordic/__init__.py
${PYSITELIB}/obspy/io/nordic/__init__.pyc
${PYSITELIB}/obspy/io/nordic/__init__.pyo
${PYSITELIB}/obspy/io/nordic/core.py
${PYSITELIB}/obspy/io/nordic/core.pyc
${PYSITELIB}/obspy/io/nordic/core.pyo
${PYSITELIB}/obspy/io/nordic/ellipse.py
${PYSITELIB}/obspy/io/nordic/ellipse.pyc
${PYSITELIB}/obspy/io/nordic/ellipse.pyo
${PYSITELIB}/obspy/io/nordic/tests/__init__.py
${PYSITELIB}/obspy/io/nordic/tests/__init__.pyc
${PYSITELIB}/obspy/io/nordic/tests/__init__.pyo
${PYSITELIB}/obspy/io/nordic/tests/data/01-0411-15L.S201309
${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_extra_header
${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_header
${PYSITELIB}/obspy/io/nordic/tests/data/Sfile_no_location
${PYSITELIB}/obspy/io/nordic/tests/data/automag.out
${PYSITELIB}/obspy/io/nordic/tests/data/bad_picks.sfile
${PYSITELIB}/obspy/io/nordic/tests/data/dos-file.sfile
${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse.png
${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse_tangents.png
${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipse_tangents_pts.png
${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipses.png
${PYSITELIB}/obspy/io/nordic/tests/data/plot_ellipses_tangents.png
${PYSITELIB}/obspy/io/nordic/tests/data/round_len_undef.sfile
${PYSITELIB}/obspy/io/nordic/tests/data/select.out
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_bad_covariance
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_high_precision_picks
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_highaccuracy
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_long_phase
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_over_day_zeros
${PYSITELIB}/obspy/io/nordic/tests/data/sfile_seconds_overflow
${PYSITELIB}/obspy/io/nordic/tests/test_nordic.py
${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyc
${PYSITELIB}/obspy/io/nordic/tests/test_nordic.pyo
${PYSITELIB}/obspy/io/nordic/utils.py
${PYSITELIB}/obspy/io/nordic/utils.pyc
${PYSITELIB}/obspy/io/nordic/utils.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/invalid_enum.xml
${PYSITELIB}/obspy/io/quakeml/tests/data/invalid_id.xml
${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/reftek/__init__.py
${PYSITELIB}/obspy/io/reftek/__init__.pyc
${PYSITELIB}/obspy/io/reftek/__init__.pyo
${PYSITELIB}/obspy/io/reftek/core.py
${PYSITELIB}/obspy/io/reftek/core.pyc
${PYSITELIB}/obspy/io/reftek/core.pyo
${PYSITELIB}/obspy/io/reftek/packet.py
${PYSITELIB}/obspy/io/reftek/packet.pyc
${PYSITELIB}/obspy/io/reftek/packet.pyo
${PYSITELIB}/obspy/io/reftek/tests/__init__.py
${PYSITELIB}/obspy/io/reftek/tests/__init__.pyc
${PYSITELIB}/obspy/io/reftek/tests/__init__.pyo
${PYSITELIB}/obspy/io/reftek/tests/data/104800000_000093F8
${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_1.msd
${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_2.msd
${PYSITELIB}/obspy/io/reftek/tests/data/2015282_225051_0ae4c_1_3.msd
${PYSITELIB}/obspy/io/reftek/tests/data/221935615_00000000
${PYSITELIB}/obspy/io/reftek/tests/data/225051000_00008656
${PYSITELIB}/obspy/io/reftek/tests/data/230000005_0036EE80_cropped.npz
${PYSITELIB}/obspy/io/reftek/tests/data/230000005_0036EE80_cropped.rt130
${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim1.npy
${PYSITELIB}/obspy/io/reftek/tests/data/unpacked_data_steim2.npy
${PYSITELIB}/obspy/io/reftek/tests/test_core.py
${PYSITELIB}/obspy/io/reftek/tests/test_core.pyc
${PYSITELIB}/obspy/io/reftek/tests/test_core.pyo
${PYSITELIB}/obspy/io/reftek/util.py
${PYSITELIB}/obspy/io/reftek/util.pyc
${PYSITELIB}/obspy/io/reftek/util.pyo
${PYSITELIB}/obspy/io/rg16/__init__.py
${PYSITELIB}/obspy/io/rg16/__init__.pyc
${PYSITELIB}/obspy/io/rg16/__init__.pyo
${PYSITELIB}/obspy/io/rg16/core.py
${PYSITELIB}/obspy/io/rg16/core.pyc
${PYSITELIB}/obspy/io/rg16/core.pyo
${PYSITELIB}/obspy/io/rg16/tests/__init__.py
${PYSITELIB}/obspy/io/rg16/tests/__init__.pyc
${PYSITELIB}/obspy/io/rg16/tests/__init__.pyo
${PYSITELIB}/obspy/io/rg16/tests/data/one_channel_many_traces.fcnt
${PYSITELIB}/obspy/io/rg16/tests/data/three_chans_six_traces.fcnt
${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.py
${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.pyc
${PYSITELIB}/obspy/io/rg16/tests/test_read_rg16.pyo
${PYSITELIB}/obspy/io/rg16/tests/test_util.py
${PYSITELIB}/obspy/io/rg16/tests/test_util.pyc
${PYSITELIB}/obspy/io/rg16/tests/test_util.pyo
${PYSITELIB}/obspy/io/rg16/util.py
${PYSITELIB}/obspy/io/rg16/util.pyc
${PYSITELIB}/obspy/io/rg16/util.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/non_ascii.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/test_encode.sac
${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/scardec/README.txt
${PYSITELIB}/obspy/io/scardec/__init__.py
${PYSITELIB}/obspy/io/scardec/__init__.pyc
${PYSITELIB}/obspy/io/scardec/__init__.pyo
${PYSITELIB}/obspy/io/scardec/core.py
${PYSITELIB}/obspy/io/scardec/core.pyc
${PYSITELIB}/obspy/io/scardec/core.pyo
${PYSITELIB}/obspy/io/scardec/tests/__init__.py
${PYSITELIB}/obspy/io/scardec/tests/__init__.pyc
${PYSITELIB}/obspy/io/scardec/tests/__init__.pyo
${PYSITELIB}/obspy/io/scardec/tests/data/test.scardec
${PYSITELIB}/obspy/io/scardec/tests/data/test2.scardec
${PYSITELIB}/obspy/io/scardec/tests/test_core.py
${PYSITELIB}/obspy/io/scardec/tests/test_core.pyc
${PYSITELIB}/obspy/io/scardec/tests/test_core.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/data/20180307_031245000.0.DAT.gz
${PYSITELIB}/obspy/io/seg2/tests/data/20180307_031245000.0.seg2
${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/2005-07-23-1452-04S.CER___030
${PYSITELIB}/obspy/io/seisan/tests/data/2005-07-23-1452-04S.CER___030.mseed
${PYSITELIB}/obspy/io/seisan/tests/data/2011-09-06-1311-36S.A1032_001BH_Z
${PYSITELIB}/obspy/io/seisan/tests/data/2011-09-06-1311-36S.A1032_001BH_Z.mseed
${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1
${PYSITELIB}/obspy/io/seisan/tests/data/9701-30-1048-54S.MVO_21_1.ascii
${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203
${PYSITELIB}/obspy/io/seisan/tests/data/D1360930.203.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/core.py
${PYSITELIB}/obspy/io/seiscomp/core.pyc
${PYSITELIB}/obspy/io/seiscomp/core.pyo
${PYSITELIB}/obspy/io/seiscomp/data/quakeml_1.2__sc3ml_0.10.xsl
${PYSITELIB}/obspy/io/seiscomp/data/quakeml_types.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.10.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.10__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.3.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.5__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.6__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.7__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.8__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9.xsd
${PYSITELIB}/obspy/io/seiscomp/data/sc3ml_0.9__quakeml_1.2.xsl
${PYSITELIB}/obspy/io/seiscomp/event.py
${PYSITELIB}/obspy/io/seiscomp/event.pyc
${PYSITELIB}/obspy/io/seiscomp/event.pyo
${PYSITELIB}/obspy/io/seiscomp/inventory.py
${PYSITELIB}/obspy/io/seiscomp/inventory.pyc
${PYSITELIB}/obspy/io/seiscomp/inventory.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/data/channel_level.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/field_sc3ml0.10.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/field_sc3ml0.10_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/iris_events_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/no_version_attribute.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_no_events.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_write.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/qml-example-1.2-RC3_wrong_id.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_amplitude.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_amplitude_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_arrival_res.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_data_used.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_event_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_focalmechanism_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_magnitude.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_origin_res.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_pick.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitude.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/quakeml_1.2_stationmagnitudecontributions.xml
${PYSITELIB}/obspy/io/seiscomp/tests/data/sc3ml_empty_depth_and_id.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/usgs_event.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.10
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.11
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.3
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.5
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.6
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.7
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.8
${PYSITELIB}/obspy/io/seiscomp/tests/data/version0.9
${PYSITELIB}/obspy/io/seiscomp/tests/data/zero_poles_and_zeros.sc3ml
${PYSITELIB}/obspy/io/seiscomp/tests/test_core.py
${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyc
${PYSITELIB}/obspy/io/seiscomp/tests/test_core.pyo
${PYSITELIB}/obspy/io/seiscomp/tests/test_event.py
${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyc
${PYSITELIB}/obspy/io/seiscomp/tests/test_event.pyo
${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.py
${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.pyc
${PYSITELIB}/obspy/io/seiscomp/tests/test_inventory.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/evt.py
${PYSITELIB}/obspy/io/sh/evt.pyc
${PYSITELIB}/obspy/io/sh/evt.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/data/local1.evt
${PYSITELIB}/obspy/io/sh/tests/data/local2.evt
${PYSITELIB}/obspy/io/sh/tests/data/tele1.evt
${PYSITELIB}/obspy/io/sh/tests/data/tele2.evt
${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/sh/tests/test_evt.py
${PYSITELIB}/obspy/io/sh/tests/test_evt.pyc
${PYSITELIB}/obspy/io/sh/tests/test_evt.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/data/fdsn-station-1.1.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/IRIS_single_channel_with_response_custom_tags.xml
${PYSITELIB}/obspy/io/stationxml/tests/data/channel_without_coordinates.xml
${PYSITELIB}/obspy/io/stationxml/tests/data/empty_channel.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_random_stationxml_1_0.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_station_with_microseconds.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/only_soh.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/data/version20.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/win/README.txt
${PYSITELIB}/obspy/io/win/__init__.py
${PYSITELIB}/obspy/io/win/__init__.pyc
${PYSITELIB}/obspy/io/win/__init__.pyo
${PYSITELIB}/obspy/io/win/core.py
${PYSITELIB}/obspy/io/win/core.pyc
${PYSITELIB}/obspy/io/win/core.pyo
${PYSITELIB}/obspy/io/win/tests/__init__.py
${PYSITELIB}/obspy/io/win/tests/__init__.pyc
${PYSITELIB}/obspy/io/win/tests/__init__.pyo
${PYSITELIB}/obspy/io/win/tests/data/10030302.00
${PYSITELIB}/obspy/io/win/tests/data/10030302.01
${PYSITELIB}/obspy/io/win/tests/data/10030302.02
${PYSITELIB}/obspy/io/win/tests/data/10030302.03
${PYSITELIB}/obspy/io/win/tests/data/10030302.04
${PYSITELIB}/obspy/io/win/tests/data/10030302.05
${PYSITELIB}/obspy/io/win/tests/data/10030302.06
${PYSITELIB}/obspy/io/win/tests/data/10030302.07
${PYSITELIB}/obspy/io/win/tests/data/10030302.08
${PYSITELIB}/obspy/io/win/tests/data/10030302.09
${PYSITELIB}/obspy/io/win/tests/data/10030302.10
${PYSITELIB}/obspy/io/win/tests/test_core.py
${PYSITELIB}/obspy/io/win/tests/test_core.pyc
${PYSITELIB}/obspy/io/win/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/core.py
${PYSITELIB}/obspy/io/xseed/core.pyc
${PYSITELIB}/obspy/io/xseed/core.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/blockette-tests/blockette062.txt
${PYSITELIB}/obspy/io/xseed/tests/data/6D6-Trillium-250sps.resp
${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/RESP.AZ.DHL..BS1
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.BK.BRIB..BV1
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.BK.DANT.00.LCL
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.BN.WR0..SHZ
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.BW.FURT..EHZ
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.JM.NMIA0.00.HHN
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.SG.MEMB..BDI
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.SG.ST..LDO
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.XX.NR008..HHZ.130.1.100
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.XX.NS085..BHZ.STS2_gen3.120.1500
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.blkt53_and_54_in_one_stage
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.blockette_62
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.blockette_62_as_stage_0
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.decimation_without_gain
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.many_zero_frequencies
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.multiple_gain_blockettes
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.paz_with_no_values
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.regression_1
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.regression_2
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.regression_segfault
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.repeated_differing_stage_0
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.repeated_stage_0
${PYSITELIB}/obspy/io/xseed/tests/data/RESP.strain_meter
${PYSITELIB}/obspy/io/xseed/tests/data/UP_BACU_HH.dataless
${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/dataless.seed.newline_between_blockettes
${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_core.py
${PYSITELIB}/obspy/io/xseed/tests/test_core.pyc
${PYSITELIB}/obspy/io/xseed/tests/test_core.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/templates.txt
${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
${PYSITELIB}/obspy/lib/libevresp_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/lib/libgse2_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/lib/libmseed_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/lib/libsegy_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/lib/libsignal_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/lib/libtau_${PYPLATFORM}_${PYPKGPREFIX}.so
${PYSITELIB}/obspy/realtime/README.txt
${PYSITELIB}/obspy/realtime/__init__.py
${PYSITELIB}/obspy/realtime/__init__.pyc
${PYSITELIB}/obspy/realtime/__init__.pyo
${PYSITELIB}/obspy/realtime/rtmemory.py
${PYSITELIB}/obspy/realtime/rtmemory.pyc
${PYSITELIB}/obspy/realtime/rtmemory.pyo
${PYSITELIB}/obspy/realtime/rttrace.py
${PYSITELIB}/obspy/realtime/rttrace.pyc
${PYSITELIB}/obspy/realtime/rttrace.pyo
${PYSITELIB}/obspy/realtime/signal.py
${PYSITELIB}/obspy/realtime/signal.pyc
${PYSITELIB}/obspy/realtime/signal.pyo
${PYSITELIB}/obspy/realtime/tests/__init__.py
${PYSITELIB}/obspy/realtime/tests/__init__.pyc
${PYSITELIB}/obspy/realtime/tests/__init__.pyo
${PYSITELIB}/obspy/realtime/tests/data/II.TLY.BHZ.SAC
${PYSITELIB}/obspy/realtime/tests/test_rttrace.py
${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyc
${PYSITELIB}/obspy/realtime/tests/test_rttrace.pyo
${PYSITELIB}/obspy/realtime/tests/test_signal.py
${PYSITELIB}/obspy/realtime/tests/test_signal.pyc
${PYSITELIB}/obspy/realtime/tests/test_signal.pyo
${PYSITELIB}/obspy/scripts/__init__.py
${PYSITELIB}/obspy/scripts/__init__.pyc
${PYSITELIB}/obspy/scripts/__init__.pyo
${PYSITELIB}/obspy/scripts/_print.py
${PYSITELIB}/obspy/scripts/_print.pyc
${PYSITELIB}/obspy/scripts/_print.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
${PYSITELIB}/obspy/signal/calibration.py
${PYSITELIB}/obspy/signal/calibration.pyc
${PYSITELIB}/obspy/signal/calibration.pyo
${PYSITELIB}/obspy/signal/cpxtrace.py
${PYSITELIB}/obspy/signal/cpxtrace.pyc
${PYSITELIB}/obspy/signal/cpxtrace.pyo
${PYSITELIB}/obspy/signal/cross_correlation.py
${PYSITELIB}/obspy/signal/cross_correlation.pyc
${PYSITELIB}/obspy/signal/cross_correlation.pyo
${PYSITELIB}/obspy/signal/data/noise_models.npz
${PYSITELIB}/obspy/signal/data/wf_metadata_schema.json
${PYSITELIB}/obspy/signal/detrend.py
${PYSITELIB}/obspy/signal/detrend.pyc
${PYSITELIB}/obspy/signal/detrend.pyo
${PYSITELIB}/obspy/signal/differentiate_and_integrate.py
${PYSITELIB}/obspy/signal/differentiate_and_integrate.pyc
${PYSITELIB}/obspy/signal/differentiate_and_integrate.pyo
${PYSITELIB}/obspy/signal/evrespwrapper.py
${PYSITELIB}/obspy/signal/evrespwrapper.pyc
${PYSITELIB}/obspy/signal/evrespwrapper.pyo
${PYSITELIB}/obspy/signal/filter.py
${PYSITELIB}/obspy/signal/filter.pyc
${PYSITELIB}/obspy/signal/filter.pyo
${PYSITELIB}/obspy/signal/freqattributes.py
${PYSITELIB}/obspy/signal/freqattributes.pyc
${PYSITELIB}/obspy/signal/freqattributes.pyo
${PYSITELIB}/obspy/signal/headers.py
${PYSITELIB}/obspy/signal/headers.pyc
${PYSITELIB}/obspy/signal/headers.pyo
${PYSITELIB}/obspy/signal/hoctavbands.py
${PYSITELIB}/obspy/signal/hoctavbands.pyc
${PYSITELIB}/obspy/signal/hoctavbands.pyo
${PYSITELIB}/obspy/signal/interpolation.py
${PYSITELIB}/obspy/signal/interpolation.pyc
${PYSITELIB}/obspy/signal/interpolation.pyo
${PYSITELIB}/obspy/signal/invsim.py
${PYSITELIB}/obspy/signal/invsim.pyc
${PYSITELIB}/obspy/signal/invsim.pyo
${PYSITELIB}/obspy/signal/konnoohmachismoothing.py
${PYSITELIB}/obspy/signal/konnoohmachismoothing.pyc
${PYSITELIB}/obspy/signal/konnoohmachismoothing.pyo
${PYSITELIB}/obspy/signal/polarization.py
${PYSITELIB}/obspy/signal/polarization.pyc
${PYSITELIB}/obspy/signal/polarization.pyo
${PYSITELIB}/obspy/signal/quality_control.py
${PYSITELIB}/obspy/signal/quality_control.pyc
${PYSITELIB}/obspy/signal/quality_control.pyo
${PYSITELIB}/obspy/signal/regression.py
${PYSITELIB}/obspy/signal/regression.pyc
${PYSITELIB}/obspy/signal/regression.pyo
${PYSITELIB}/obspy/signal/rotate.py
${PYSITELIB}/obspy/signal/rotate.pyc
${PYSITELIB}/obspy/signal/rotate.pyo
${PYSITELIB}/obspy/signal/spectral_estimation.py
${PYSITELIB}/obspy/signal/spectral_estimation.pyc
${PYSITELIB}/obspy/signal/spectral_estimation.pyo
${PYSITELIB}/obspy/signal/tests/__init__.py
${PYSITELIB}/obspy/signal/tests/__init__.pyc
${PYSITELIB}/obspy/signal/tests/__init__.pyo
${PYSITELIB}/obspy/signal/tests/data/0082_282.velocity
${PYSITELIB}/obspy/signal/tests/data/0167_267.velocity
${PYSITELIB}/obspy/signal/tests/data/3cssan.hy.1.MBGA_Z
${PYSITELIB}/obspy/signal/tests/data/BW.KW1._.EHZ.D.2011.090_downsampled.asc.gz
${PYSITELIB}/obspy/signal/tests/data/BW.KW1._.EHZ.D.2011.090_downsampled__ppsd_hist_stack.npy
${PYSITELIB}/obspy/signal/tests/data/BW.KW1._.EHZ.D.2011.090_downsampled__ppsd_mixed.npz
${PYSITELIB}/obspy/signal/tests/data/BW.KW1._.EHZ.D.2011.090_downsampled__ppsd_mode_mean.npz
${PYSITELIB}/obspy/signal/tests/data/BW.UH1._.EHZ.D.2010.147.a.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH1._.EHZ.D.2010.147.b.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH1._.SHZ.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH2._.SHZ.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH3._.SHE.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH3._.SHN.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH3._.SHZ.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW.UH4._.EHZ.D.2010.147.cut.slist.gz
${PYSITELIB}/obspy/signal/tests/data/BW_RTSH.xml
${PYSITELIB}/obspy/signal/tests/data/CRLZ.HHZ.10.NZ.SAC
${PYSITELIB}/obspy/signal/tests/data/CRLZ.HHZ.10.NZ.SAC_resp
${PYSITELIB}/obspy/signal/tests/data/EM_11a.dat
${PYSITELIB}/obspy/signal/tests/data/EM_11p.dat
${PYSITELIB}/obspy/signal/tests/data/FEM_11a.dat
${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
${PYSITELIB}/obspy/signal/tests/data/MBGA_N.ASC
${PYSITELIB}/obspy/signal/tests/data/MBGA_Z.ASC
${PYSITELIB}/obspy/signal/tests/data/PM_11a.dat
${PYSITELIB}/obspy/signal/tests/data/PM_11p.dat
${PYSITELIB}/obspy/signal/tests/data/RESP.CH._.HHZ.gz
${PYSITELIB}/obspy/signal/tests/data/RESP.NZ.CRLZ.10.HHZ
${PYSITELIB}/obspy/signal/tests/data/RESP.NZ.CRLZ.10.HHZ.mac
${PYSITELIB}/obspy/signal/tests/data/RESP.NZ.CRLZ.10.HHZ.windows
${PYSITELIB}/obspy/signal/tests/data/RESP.OB.AAA._.BH_
${PYSITELIB}/obspy/signal/tests/data/SAC_PZs_KARC_BHZ
${PYSITELIB}/obspy/signal/tests/data/STS2.refResp
${PYSITELIB}/obspy/signal/tests/data/STS2_simp.cal
${PYSITELIB}/obspy/signal/tests/data/TEM_11a.dat
${PYSITELIB}/obspy/signal/tests/data/TEM_11p.dat
${PYSITELIB}/obspy/signal/tests/data/TFEM_11a.dat
${PYSITELIB}/obspy/signal/tests/data/TFEM_11p.dat
${PYSITELIB}/obspy/signal/tests/data/TFPM_11a.dat
${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/loc_RJOB20050801145719850.e
${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.e.polfilt.gz
${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.n
${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.n.polfilt.gz
${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.z
${PYSITELIB}/obspy/signal/tests/data/loc_RJOB20050801145719850.z.polfilt.gz
${PYSITELIB}/obspy/signal/tests/data/manz_waldk.a01.gz
${PYSITELIB}/obspy/signal/tests/data/ones_trace_100_tapered.sac
${PYSITELIB}/obspy/signal/tests/data/ones_trace_99_tapered.sac
${PYSITELIB}/obspy/signal/tests/data/pitsa_noise.npy
${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_kw1_ehz.npz
${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
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_None.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_bandpass.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_bandpassZPHSH.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_e.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_envelope.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_highpass.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_highpassZPHSH.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_kirnos.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_l_210ba_60inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_l_60ba_130inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_lowpass.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_lowpassZPHSH.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_n.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_q_210ba_60inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_q_60ba_130inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_r_115deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_r_185deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_r_305deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_r_30deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_115deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_185deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_210ba_60inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_305deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_30deg.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_t_60ba_130inc.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_wood_anderson.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_wwssn_lp.gz
${PYSITELIB}/obspy/signal/tests/data/rjob_20051006_wwssn_sp.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028_None.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028_kirnos.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028_wood_anderson.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028_wwssn_lp.gz
${PYSITELIB}/obspy/signal/tests/data/rotz_20081028_wwssn_sp.gz
${PYSITELIB}/obspy/signal/tests/data/segfaulting_RESPs/RESP.IE.LLRI..EHZ
${PYSITELIB}/obspy/signal/tests/data/srl.data.gz
${PYSITELIB}/obspy/signal/tests/data/srl.res.gz
${PYSITELIB}/obspy/signal/tests/data/timingquality.mseed
${PYSITELIB}/obspy/signal/tests/data/tiny_quality_file.mseed
${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/ppsd_spectrogram.png
${PYSITELIB}/obspy/signal/tests/images/ppsd_temporal.png
${PYSITELIB}/obspy/signal/tests/images/time_frequency_gofs.png
${PYSITELIB}/obspy/signal/tests/images/time_frequency_misfits.png
${PYSITELIB}/obspy/signal/tests/images/time_frequency_representation.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
${PYSITELIB}/obspy/signal/tests/test_calibration.py
${PYSITELIB}/obspy/signal/tests/test_calibration.pyc
${PYSITELIB}/obspy/signal/tests/test_calibration.pyo
${PYSITELIB}/obspy/signal/tests/test_cpxtrace.py
${PYSITELIB}/obspy/signal/tests/test_cpxtrace.pyc
${PYSITELIB}/obspy/signal/tests/test_cpxtrace.pyo
${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
${PYSITELIB}/obspy/signal/tests/test_freqattributes.py
${PYSITELIB}/obspy/signal/tests/test_freqattributes.pyc
${PYSITELIB}/obspy/signal/tests/test_freqattributes.pyo
${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
${PYSITELIB}/obspy/signal/tests/test_konnoohmachi.py
${PYSITELIB}/obspy/signal/tests/test_konnoohmachi.pyc
${PYSITELIB}/obspy/signal/tests/test_konnoohmachi.pyo
${PYSITELIB}/obspy/signal/tests/test_polarization.py
${PYSITELIB}/obspy/signal/tests/test_polarization.pyc
${PYSITELIB}/obspy/signal/tests/test_polarization.pyo
${PYSITELIB}/obspy/signal/tests/test_quality_control.py
${PYSITELIB}/obspy/signal/tests/test_quality_control.pyc
${PYSITELIB}/obspy/signal/tests/test_quality_control.pyo
${PYSITELIB}/obspy/signal/tests/test_regression.py
${PYSITELIB}/obspy/signal/tests/test_regression.pyc
${PYSITELIB}/obspy/signal/tests/test_regression.pyo
${PYSITELIB}/obspy/signal/tests/test_rotate.py
${PYSITELIB}/obspy/signal/tests/test_rotate.pyc
${PYSITELIB}/obspy/signal/tests/test_rotate.pyo
${PYSITELIB}/obspy/signal/tests/test_sonic.py
${PYSITELIB}/obspy/signal/tests/test_sonic.pyc
${PYSITELIB}/obspy/signal/tests/test_sonic.pyo
${PYSITELIB}/obspy/signal/tests/test_spectral_estimation.py
${PYSITELIB}/obspy/signal/tests/test_spectral_estimation.pyc
${PYSITELIB}/obspy/signal/tests/test_spectral_estimation.pyo
${PYSITELIB}/obspy/signal/tests/test_stream.py
${PYSITELIB}/obspy/signal/tests/test_stream.pyc
${PYSITELIB}/obspy/signal/tests/test_stream.pyo
${PYSITELIB}/obspy/signal/tests/test_tf_misfit.py
${PYSITELIB}/obspy/signal/tests/test_tf_misfit.pyc
${PYSITELIB}/obspy/signal/tests/test_tf_misfit.pyo
${PYSITELIB}/obspy/signal/tests/test_trace.py
${PYSITELIB}/obspy/signal/tests/test_trace.pyc
${PYSITELIB}/obspy/signal/tests/test_trace.pyo
${PYSITELIB}/obspy/signal/tests/test_trigger.py
${PYSITELIB}/obspy/signal/tests/test_trigger.pyc
${PYSITELIB}/obspy/signal/tests/test_trigger.pyo
${PYSITELIB}/obspy/signal/tf_misfit.py
${PYSITELIB}/obspy/signal/tf_misfit.pyc
${PYSITELIB}/obspy/signal/tf_misfit.pyo
${PYSITELIB}/obspy/signal/trigger.py
${PYSITELIB}/obspy/signal/trigger.pyc
${PYSITELIB}/obspy/signal/trigger.pyo
${PYSITELIB}/obspy/signal/util.py
${PYSITELIB}/obspy/signal/util.pyc
${PYSITELIB}/obspy/signal/util.pyo
${PYSITELIB}/obspy/taup/README.txt
${PYSITELIB}/obspy/taup/__init__.py
${PYSITELIB}/obspy/taup/__init__.pyc
${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/ray_paths.py
${PYSITELIB}/obspy/taup/ray_paths.pyc
${PYSITELIB}/obspy/taup/ray_paths.pyo
${PYSITELIB}/obspy/taup/seismic_phase.py
${PYSITELIB}/obspy/taup/seismic_phase.pyc
${PYSITELIB}/obspy/taup/seismic_phase.pyo
${PYSITELIB}/obspy/taup/slowness_layer.py
${PYSITELIB}/obspy/taup/slowness_layer.pyc
${PYSITELIB}/obspy/taup/slowness_layer.pyo
${PYSITELIB}/obspy/taup/slowness_model.py
${PYSITELIB}/obspy/taup/slowness_model.pyc
${PYSITELIB}/obspy/taup/slowness_model.pyo
${PYSITELIB}/obspy/taup/tau.py
${PYSITELIB}/obspy/taup/tau.pyc
${PYSITELIB}/obspy/taup/tau.pyo
${PYSITELIB}/obspy/taup/tau_branch.py
${PYSITELIB}/obspy/taup/tau_branch.pyc
${PYSITELIB}/obspy/taup/tau_branch.pyo
${PYSITELIB}/obspy/taup/tau_model.py
${PYSITELIB}/obspy/taup/tau_model.pyc
${PYSITELIB}/obspy/taup/tau_model.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
${PYSITELIB}/obspy/taup/taup_pierce.py
${PYSITELIB}/obspy/taup/taup_pierce.pyc
${PYSITELIB}/obspy/taup/taup_pierce.pyo
${PYSITELIB}/obspy/taup/taup_time.py
${PYSITELIB}/obspy/taup/taup_time.pyc
${PYSITELIB}/obspy/taup/taup_time.pyo
${PYSITELIB}/obspy/taup/tests/__init__.py
${PYSITELIB}/obspy/taup/tests/__init__.pyc
${PYSITELIB}/obspy/taup/tests/__init__.pyo
${PYSITELIB}/obspy/taup/tests/data/1_layer_model.tvel
${PYSITELIB}/obspy/taup/tests/data/2_layer_model.tvel
${PYSITELIB}/obspy/taup/tests/data/5_layer_model.tvel
${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_PKIKP.txt
${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_P_deep.txt
${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_P_shallow.txt
${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_PcP.txt
${PYSITELIB}/obspy/taup/tests/data/TauP_test_data/ak135_S_deep.txt
${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/data/smooth_geodynamic_model.tvel
${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_one_way.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_one_way.png
${PYSITELIB}/obspy/taup/tests/images/spherical_more_then_360.png
${PYSITELIB}/obspy/taup/tests/images/traveltimes_many_phases.png
${PYSITELIB}/obspy/taup/tests/images/traveltimes_many_phases_multiple_degrees.png
${PYSITELIB}/obspy/taup/tests/images/traveltimes_plot_all_False.png
${PYSITELIB}/obspy/taup/tests/images/traveltimes_plot_all_True.png
${PYSITELIB}/obspy/taup/tests/test_misc.py
${PYSITELIB}/obspy/taup/tests/test_misc.pyc
${PYSITELIB}/obspy/taup/tests/test_misc.pyo
${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_ray_paths.py
${PYSITELIB}/obspy/taup/tests/test_ray_paths.pyc
${PYSITELIB}/obspy/taup/tests/test_ray_paths.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
${PYSITELIB}/obspy/taup/utils.py
${PYSITELIB}/obspy/taup/utils.pyc
${PYSITELIB}/obspy/taup/utils.pyo
${PYSITELIB}/obspy/taup/velocity_layer.py
${PYSITELIB}/obspy/taup/velocity_layer.pyc
${PYSITELIB}/obspy/taup/velocity_layer.pyo
${PYSITELIB}/obspy/taup/velocity_model.py
${PYSITELIB}/obspy/taup/velocity_model.pyc
${PYSITELIB}/obspy/taup/velocity_model.pyo