Metadata-Version: 2.1
Name: stactools-viirs
Version: 0.1.0
Summary: stactools package for VIIRS sensor data
Home-page: https://github.com/stactools-packages/viirs
Author: Preston Hartzell
Author-email: preston.hartzell@gmail.com
Project-URL: Issues, https://github.com/stactools-packages/viirs/issues
Keywords: stactools,pystac,catalog,STAC
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# stactools-viirs

[![PyPI](https://img.shields.io/pypi/v/stactools-viirs)](https://pypi.org/project/stactools-viirs/)

- Name: viirs
- Package: `stactools.viirs`
- PyPI: https://pypi.org/project/stactools-viirs/
- Owner: @pjhartzell
- Dataset homepage: https://viirsland.gsfc.nasa.gov/index.html
- STAC extensions used:
  - [classification](https://github.com/stac-extensions/classification/)
  - [eo](https://github.com/stac-extensions/eo)
  - [item-assets](https://github.com/stac-extensions/item-assets)
  - [proj](https://github.com/stac-extensions/projection)
  - [raster](https://github.com/stac-extensions/raster)
  - [scientific](https://github.com/stac-extensions/scientific)
- Extra fields:
  - `viirs:horizontal-tile`
  - `viirs:vertical-tile`
  - `viirs:tile-id`

Use this repository to create STAC Items and Collections for [VIIRS](https://viirsland.gsfc.nasa.gov/index.html) data.

## STAC Examples

There is an example Collection and Item for each VIIRS product supported by this repository in the [examples](examples) directory.

## Installation
```shell
pip install stactools-viirs
```

## Command-line Usage

To create a single STAC Item from a VIIRS H5 file:

```shell
$ stac viirs create-item <H5 file path> <output directory>
```

To create COGs for each subdataset in the H5 file and include them as Assets in the STAC Item, append the `-c` flag to the command.

To create a STAC Collection, enter H5 file paths into a text file with one file path per line. Then pass the text file to the `create-collection` command:

```shell
$ stac viirs create-collection <text file path> <output directory>
```

If the text file contains H5 file paths from multiple VIIRS products, multiple STAC Collections will be created. If COGs exist alongside the H5 files, they will be included as Assets in the STAC Items contained in the Collection(s). For example, if COGs exist for all H5 files in [examples/file-list.txt](examples/file-list.txt), then the example Collections and Items can be created with:

```shell
$ stac viirs create-collection examples/file-list.txt examples --antimeridian-strategy normalize
```

Use `stac viirs --help` to see all subcommands and options.

## Contributing

We use [pre-commit](https://pre-commit.com/) to check any changes.
To set up your development environment:

```shell
$ pip install -e .
$ pip install -r requirements-dev.txt
$ pre-commit install
```

To check all files:

```shell
$ pre-commit run --all-files
```

To run the tests:

```shell
$ pytest -vv
```
