Metadata-Version: 2.1
Name: inciweb-wildfires
Version: 0.0.4
Summary: Download wildfire incidents data from InciWeb
Home-page: http://www.github.com/palewire/inciweb-wildfires
Author: Los Angeles Times Data Desk
Author-email: datagraphics@caltimes.com
License: MIT
Project-URL: Maintainer, https://github.com/palewire
Project-URL: Source, https://github.com/palewire/inciweb-wildfires
Project-URL: Tracker, https://github.com/palewire/inciweb-wildfires/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

Download wildfire incidents data from [InciWeb](https://inciweb.nwcg.gov/).

Hourly scrapes powered by a GitHub Action are stored in the `data` directory.

## Installation

```sh
pipenv install inciweb-wildfires
```

## Command-line usage

```sh
Usage: inciwebwildfires [OPTIONS] COMMAND [ARGS]...

  A command-line interface for downloading wildfire incidents data from InciWeb.

  Returns GeoJSON.

Options:
  --help  Show this message and exit.

Commands:
  incidents  Download active fire incidents from InciWeb
```

Download active fire incidents from inciweb.

```sh
inciwebwildfires incidents
```

## Python usage

Import the library.

```python
>>> import inciweb_wildfires
```

Download a GeoJSON of active fire incidents.

```python
>>> data = inciweb_wildfires.get_incidents()
```

## Contributing

Install dependencies for development.

```sh
pipenv install --dev
```

Run tests.

```sh
make test
```

Shipping new version to PyPI. ::

```sh
make ship
```

## Developing the CLI

The command-line interface is implemented using Click and setuptools. To install it locally for development inside your virtual environment, run the following installation command, as `prescribed by the Click documentation <https://click.palletsprojects.com/en/7.x/setuptools/#setuptools-integration>`_. ::

```sh
pip install --editable .
```


