Metadata-Version: 2.1
Name: lfdata
Version: 0.0.2
Summary: Tools for interacting with GT's LF AWESOME Receiver data
Home-page: https://github.gatech.edu/LF-Group/lfdata
Author: David Richardson
Author-email: drichardson42@gatech.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
Requires-Dist: scipy
Provides-Extra: dev
Requires-Dist: twine ; extra == 'dev'

# LF Data

This project provides a set of useful tools for interacting with data taken from
the LF AWESOME receivers maintained by the LF Radio Lab at Georgia Tech. This
data is available publicly at [Waldo World](https://waldo.world/). 

## Installation

Run the following to install:

```python
pip install lfdata
```

## Example Usage

```python
from lfdata import data_loader

# Load an entire .mat file
data = data_loader("path_to_mat_file")

# Load a specific variable or set of variables
variables = ["station_name", "call_sign", "data"]
data = data_loader("path_to_mat_file", variables)
```


