Metadata-Version: 2.1
Name: stactools-naip
Version: 0.2.0
Summary: PROVIDE DESCRIPTION HERE
Home-page: https://github.com/stactools-naips/stactools-naip
Author: stac-utils
Author-email: stac@radiant.earth
Project-URL: Documentation, https://stactools-naip.readthedocs.io/en/latest/
Project-URL: Issues, https://github.com/stactools-naips/stactools-naip/issues
Keywords: stactools,pystac,catalog,STAC
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# stactools-naip

stactools-naip is a [stactools](https://github.com/stac-utils/stactools) package to generate STAC objects
for NAIP images.

## How to use

To install, run:

```shell
pip install stactools-naip
pip install stactools[s3]
```

To create a STAC Item:

```shell
aws s3 cp --request-payer requester s3://naip-analytic/va/2018/60cm/fgdc/37077/m_3707763_se_18_060_20180825.txt .
export AWS_REQUEST_PAYER='requester'
stac naip create-item --fgdc m_3707763_se_18_060_20180825.txt \
  VA 2018 s3://naip-analytic/va/2018/60cm/rgbir_cog/37077/m_3707763_se_18_060_20180825.tif \
  json-dest/
```

## Development

```shell
pip install -r requirements-dev.txt
```


Install pre-commit hooks with:

```shell
pre-commit install
```

Run these before commit with:

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