Download wildfires data from NIFC
pipenv install nifc-wildfires
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
Import the library and go.
>>> import nifc_wildfires
>>> data = nifc_wildfires.get_active_perimeters()
>>> data = nifc_wildfires.get_incidents()
Install dependencies for development.
pipenv install --dev
Run tests.
make test
Shipping new version to PyPI.
make ship
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 .