Skip to content

irisslee/nifc-wildfires

 
 

Repository files navigation

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 .

About

Download wildfires data from GeoMAC

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 90.7%
  • Makefile 9.3%