Skip to main content

A DAS compatibility library

Project description

unidas

coverage PyPI Version Licence

A DAS compatibility package.

There is an increasing number of open-source libraries for working with distributed acoustic sensing (DAS) data. Each of these has its own strengths and weaknesses, and often it is desirable to use features from multiple libraries in research workflows. Moreover, creators of DAS packages which perform specific operations (e.g., machine learning for phase picking) currently have to choose a single DAS library to support, or undertake writing conversion codes on their own.

Unidas solves these problems by providing simple ways to interoperate between DAS libraries.

Usage

There are two ways to use unidas. First, the adapter decorator allows a function to simply declare which library's data structure to use.

import unidas


@unidas.adapter("daspy.Section")
def daspy_function(sec, **kwargs):
    """A useful daspy function"""
    # Regardless of the actual input type, adapter will convert it to a daspy section
    # then convert it back after the return.
    return sec


import dascore as dc

patch = dc.get_example_patch()
# even though we call a daspy function, the input/output is a dascore patch.
out = daspy_function(patch)
assert isinstance(out, dc.Patch)

You can also use adpater to wrap un-wrapped functions.

import dascore as dc
import unidas
from xdas.signal import hilbert

dascore_hilbert = unidas.adapter("xdas.DataArray")(hilbert)
patch = dc.get_example_patch()

patch_hilberto = dascore_hilbert(patch)

The convert function converts from one library's data structure to another library's data structure.

import daspy
import unidas

# Use lightguide's afk filter with a daspy section. 
sec = daspy.read()
blast = unidas.convert(sec, to="lightguide.Blast")
blast.afk_filter(exponent=0.8)
sec_out = unidas.convert(blast, to='daspy.Section')

Installation

Simply install unidas with pip or mamba:

pip install unidas 
mamba install unidas

By design, unidas has no hard dependencies other than numpy, but an ImportError will be raised if the libraries needed to perform a requested conversion are not installed.

Unidas is single file (src/unidas.py) so it can also be vendored (copied directly into your project). If you do this, please consider sharing any improvements so the entire community can benefit.

Guidance for package developers

If you are creating/maintaining a library for doing some kind of specialized DAS processing in python, we recommend you do two things:

  1. Pick the DAS library you prefer and use it internally.
  2. Apply the adapter decorator to your project's API.

Doing so will make your project easily accessible by users of all the libraries supported by unidas.

For example:

import unidas

@unidas.adapter("daspy.Section")
def fancy_machine_learning_function(sec):
    """Cutting edge machine learning DAS research function."""
    # Here we will use daspy internally, but the function accepts 
    # data structures from other libraries with no additional effort
    # because of the adapter decorator. 
    
    ...  # Fancy stuff goes here.
    
    return sec

Adding support for new libraries to unidas

To add support for a new data structure/library, you need to do two things:

  1. Create a subclass of Converter which has (at least) a conversion method to unidas' BaseDAS.
  2. Add a conversion method to UnidasBasDASConverter to convert from unidas' BaseDAS back to your data structure.
  3. Write a test in test/test_unidas.py (this is important for maintainability).

Feel free to open a discussion if you need help.

Supported libraries (in alphabetical order)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unidas-0.0.1.tar.gz (17.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

unidas-0.0.1-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file unidas-0.0.1.tar.gz.

File metadata

  • Download URL: unidas-0.0.1.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.10

File hashes

Hashes for unidas-0.0.1.tar.gz
Algorithm Hash digest
SHA256 8a635543af6021503455b80f7067c2c862436e0af6f7662c0303586ce18d10b9
MD5 d9a55c51c9c9b0ceb3d721f22f940fc4
BLAKE2b-256 a7892f4d3bf7c682d232af95876381701d68739dffad03ac126c90cf120f7aa1

See more details on using hashes here.

File details

Details for the file unidas-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: unidas-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.10

File hashes

Hashes for unidas-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 489a0f38da4eaffab52802145ff8030bf46f4f0d9503a8a6c4bd31ca218ff4ca
MD5 64046e20509b59b8f734882af1825196
BLAKE2b-256 d812814acef5cee1530a31f409e342abe4c523869e4eb0166cba976bbe361505

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page