Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 690 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 690 Bytes

hls-tools

Python package with convenience functions for accessing and loading the Harmonized Landsat Sentinel 2 remote sensing dataset into xarray.DataArray format.

Installation

You can install the package from pypi using pip:

pip install hls_tools

Development

git clone https://github.com/hrodmn/hls-tools.git
cd hls-tools

Create a virtual environment

python3 -m venv env
source env/bin/activate

Install test/dev dependencies

pip install -e .["test","dev"]

Linting and formatting are handled with pre-commit. You will need to install pre-commit before committing any changes:

pre-commit install