Metadata-Version: 2.1
Name: pyucalgarysrs
Version: 1.0.4
Summary: Tools for interacting with UCalgary Space Remote Sensing data
Home-page: https://github.com/ucalgary-srs/pyUCalgarySRS
Author: Darren Chaddock
Author-email: dchaddoc@ucalgary.ca
Requires-Python: >=3.9
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: h5py (>=3.1.0,<4.0.0)
Requires-Dist: humanize (>=4.4.0,<5.0.0)
Requires-Dist: joblib (>=1.0.0,<2.0.0)
Requires-Dist: numpy (>=1.21.0,<2.0.0)
Requires-Dist: opencv-python (>=4.4.0,<5.0.0)
Requires-Dist: requests (>=2.28.0,<3.0.0)
Requires-Dist: scipy (>=1.6.0,<2.0.0)
Requires-Dist: texttable (>=1.6.4,<2.0.0)
Requires-Dist: tqdm (>=4.61.2,<5.0.0)
Project-URL: Repository, https://github.com/ucalgary-srs/pyUCalgarySRS
Description-Content-Type: text/markdown

# PyUCalgarySRS

[![GitHub tests](https://github.com/ucalgary-srs/pyUCalgarySRS/actions/workflows/test_linux.yml/badge.svg)](https://github.com/ucalgary-srs/pyUCalgarySRS/actions/workflows/test_linux.yml)
[![PyPI version](https://img.shields.io/pypi/v/pyucalgarysrs.svg)](https://pypi.python.org/pypi/pyucalgarysrs/)
[![PyPI Python versions](https://img.shields.io/pypi/pyversions/pyucalgarysrs)](https://pypi.python.org/pypi/pyucalgarysrs/)

This is the Python library for retrieving and loading data provided by UCalgary Space Remote Sensing. More information including tutorials and dataset descriptions can be found on our open data platform at https://data.phys.ucalgary.ca.

PyUCalagarySRS currently supports Python 3.9+.

Some links to help:
- [PyUCalgarySRS API Reference](https://docs-pyucalgarysrs.phys.ucalgary.ca)
- [Crib sheets that utilize PyUCalgarySRS](https://data.phys.ucalgary.ca/working_with_data/index.html#crib-sheets)
- [UCalgary Space Remote Sensing Open Data Platform](https://data.phys.ucalgary.ca)

## Installation

Installation can be done using pip:

```
pip install pyucalgarysrs
```

If you want the most bleeding edge version of PyUCalgarySRS, you can install it directly from the Github repository:

```console
$ git clone https://github.com/ucalgary-srs/pyUCalgarySRS.git
$ cd pyUCalgarySRS
$ pip install .
```

## Usage

Below is how the library can be imported:

```python
import pyucalgarysrs
srs = pyucalgarysrs.PyUCalgarySRS()
```

