Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 1.25 KB

README.md

File metadata and controls

68 lines (46 loc) · 1.25 KB

Download wildfires data from NIFC

Installation

pipenv install nifc-wildfires

Command-line usage

Usage: nifcwildfires [OPTIONS] COMMAND [ARGS]...

  A command-line interface for downloading wildfire perimeter and incident points data from
  NIFC. Returns GeoJSON.

Options:
  --help  Show this message and exit.

Commands:
  active-perimeters  Perimeters of active fires
  incidents      All fire incident points in 2021, from NIFC situation reports

From the shell:

nifcwildfires active-perimeters
nifcwildfires incidents

Python usage

Import the library and go.

>>> import nifc_wildfires
>>> data = nifc_wildfires.get_active_perimeters()
>>> data = nifc_wildfires.get_incidents()

Contributing

Install dependencies for development.

pipenv install --dev

Run tests.

make test

Shipping new version to PyPI.

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.

pip install --editable .