Skip to content

earthlab/firedpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DOI Docker Automated build GitHub contributors GitHub issues GitHub commit activity

FIREDpy - FIRe Event Delineation for python

A Python Command Line Interface for classifying fire events from the Collection 6 MODIS Burned Area Product.

This package uses a space-time window to classify individual burn detections from late 2001 to near-present into discrete events and return both a data table and shapefiles of these events. The user is able to specify the spatial and temporal parameters of the window, as well as the spatial and temporal extent, using either a shapefile or a list of MODIS Sinusoidal Projection tile IDs. Shapefiles include full event polygons by default, and the user has the option of having firedpy produce daily-level perimeters, providing a representation of both final and expanding event perimeters.

Any area from the world may be selected. However, in the current version, memory constraints may limit the extent available for a single model run. Equatorial regions have much more fire activity, and may require much more RAM to process than a normal laptop will have.

More methodological information is at:

Balch, J. K., St. Denis, L. A., Mahood, A. L., Mietkiewicz, N. P., Williams, T. P., McGlinchy J, and Cook, M. C. 2020. FIRED (Fire Events Delineation): An open, flexible algorithm & database of U.S. fire events derived from the MODIS burned area product (2001-19). Remote Sensing, 12(21), 3498; https://doi.org/10.3390/rs12213498

Description of the country-level data sets is at:

Mahood, A.L. Lindrooth, E.J., Cook, M.C. and Balch, J.K. Country-level fire perimeter datasets (2001-2021). 2022. Nature Scientific Data, 9(458). https://doi.org/10.1038/s41597-022-01572-3

BUG ALERT:

Many of the data products created in Fall 2021 may be shifted by a half pixel, and may lack a coordinate reference system.

The problem is now fixed, so this will not affect new iterations of firedpy. We created a script, R/posthoc_fixes.R that contains a function to fix either or both of these problems.

Sometimes the server (fuoco.geog.umd.edu) that houses the MCD64A1 product used by firedpy is down. If this happens, you just need to wait until it comes back up.

See the issues tab for more bugs, or to report a new bug!

Have you used firedpy?

The algorithm and derived data products are under active development. Please take this survey to help us improve firedpy.

Current status of created products

Already-created products are linked below. They are housed in the CU Scholar data repository in the Earth Lab Data collection, or here.

All of the created products have an event-level shapefile in .gpkg and .shp formats. Many countries also have the daily-level shapefile, but these were not created for most countries in Africa and Asia due to computational restrictions.

completed countries are below

Click on a link below to download a fire perimeter dataset for your favorite country

North America

South America

Entire Western hemisphere from Jan 2017 to March 2020, intended for use in conjunction with GOES16 active fire detections.

Europe

Africa

Asia

Australia (state by state)

Oceania

Installation

There are two ways to install firedpy. Method one is to run it out of a docker container, Method 2 is to install locally.

Method 1. Run from a Docker Container:

1.1 Get the docker container running:

Note, the docker container has changed from earthlab/firedpy to earthlabcu/firedpy

  • docker run -t -d earthlabcu/firedpy

  • Call docker ps to get the name of the docker container you just created.

  • Then get into the docker container by running docker exec:

    docker exec -it <silly_name> /bin/bash

  • Then you will be inside of the docker container in the firedpy directory. Now, enter:

    conda activate firedpy

    And the environment is ready to use.

1.2 Copy firedpy outputs to your local machine

After creating a new fire product, it might be useful to get it out of the docker container in order to use it.

  • First, exit the docker container by typing

    exit

  • Second, copy the file out. Here we will use the example of a container with the name "unruffled_clarke". The docker cp command uses the syntax docker cp <source> <destination>. Files inside of a docker container will have a prefix of the docker container name (or container ID) followed by a colon, then with a normal path.

    Here is an example command using the container name:

    docker cp unruffled_clarke:/home/firedpy/proj/outputs/shapefiles/fired_events_s5_t11_2020153.gpkg /home/Documents/fired_events_s5_t11_2020153.gpkg

    Another example command using the container ID:

    docker cp fa73c6d3e007:/home/firedpy/proj/outputs/shapefiles/fired_events_s5_t11_2020153.gpkg /home/Documents/fired_events_s5_t11_2020153.gpkg

Method 2. Local Installation Instructions:

  • Clone this repository to a local folder and change directories into it:

    git clone https://github.com/earthlab/firedpy.git

    cd firedpy

  • Ensure your anaconda setup has conda-forge, channel_priority set to strict, and update your conda.

    conda update conda --yes conda config --add channels conda-forge conda config --set channel_priority strict

  • You must have all packages listed in the environment.yaml installed using 'conda install -c conda-forge <package_name>'

  • Create and activate a conda environment:

    conda env create -f environment.yaml

    conda activate firedpy

  • Install locally:

    python setup.py install

Use:

  • Run firedpy with no options to be prompted with input questions for each option/attribute

    firedpy

  • Or use the following commands in your command line to specify the options/attributes you would like:

  • In your terminal use this command to print out the available options and their descriptions:

    firedpy --help

  • Run firedpy with the default option to download required data and write a data table of classified fire events to a temporary directory. This uses CONUS as the default area of interest with a spatial parameter of 5 pixels (~2.3 km) and 11 days:

    firedpy --default

  • Change the spatial and temporal parameters of the model run:

    firedpy -spatial 6 -temporal 10

  • Specify specific tiles and a local project_directory for required data and model outputs:

    firedpy -spatial 6 -temporal 10 -aoi h11v09 h12v09 -proj_dir /home/<user>/fired_project

  • Write shapefiles as outputs in addition to the data table:

    firedpy -spatial 6 -temporal 10 -aoi h11v09 h12v09 -proj_dir /home/<user>/fired_project --shapefile

  • Add the most common level 3 Ecoregion as an attribute to each event:

    firedpy -spatial 6 -temporal 10 -aoi h11v09 h12v09 -proj_dir /home/<user>/fired_project --shapefile -ecoregion_level 3

  • Add landcover information and produce the daily burn file

    firedpy -spatial 6 -temporal 10 -aoi h11v09 h12v09 -proj_dir /home/<user>/fired_project --shapefile -ecoregion_level 3 -landcover_type 1 -daily yes

For more information about each parameter, use:

'firedpy --help'

Parameter table (under construction)

parameter value(s) example description
-spatial integer -spatial 5 pixel radius for moving window, defaults to 5
-temporal integer -temporal 11 day radius for moving window, defaults to 11
-aoi character (MODIS tile) -aoi h11v09 which modis tiles should be used
-aoi character (shapefile) -aoi /home/firedpy/individual_countries/canada.gpkg figures out which modis tiles to download based on the polygon -- polygon must be in the same projection as MODIS MCD64 -- all the polygons in the ref folder are correctly projected and can be used as crs templates to prepare other polygons.
-proj_dir character -proj_dir /home/firedpy/proj which directory should firedpy operate within? Defaults to a folder called "proj" within the current working directory.
-ecoregion_type character -ecoregion_type na type of ecoregion, either world or na
-ecoregion_level integer -ecoregion_level 3 if ecoregion type = na, the level (1-3) of North American ecoregions
-landcover_type integer and character -landcover_type 2:username:password number (1-3) corresponding with a MODIS/Terra+Aqua Land Cover (MCD12Q1) category. You will need to also make an account at https://urs.earthdata.nasa.gov/home and include your login information within the argument.
-shp_type character -shp_type gpkg option to build a shapefile for the fired event in gpkg, ESRI shapefile (shp), both, or none
-file character -file fired_colorado specifies the base of the file name for the tables and shapefile outputs, defaults to "fired", in the format: "(-file aruguement)toYYYYDDD(either events or daily).gpkg", with YYYY being the year, and DDD being the julian day of the last month in the time series. The example would output fired_colorado_to2021031_events.gpkg.
-daily character (yes or no) -daily yes creates daily polygons, if no just the event-level perimeters will be created. Defaults to no.
-start_yr integer -start_yr 2001 gets the hdf files from the MODIS tiles starting in this year. The first year avalible is 2001
-end_yr integer -end_yr 2021 gets the hdf files from the MODIS tiles ending in this year. The last year avalible is 2021

Boundary files are available for use as areas of interest

  • Country boundaries are in ref/individual_countries
  • Continent boundaries are in ref/continents
  • United States state boundaries for the United States of America are in ref/us_states
  • Australian state boundaries are in ref/australian_states
  • For example firedpy -aoi /home/firedpy/ref/us_states/colorado.gpkg, and so on. Every space is a '_'.
  • If using the user input option, when prompted for the name of the continent, country, or state use "_" for spaces.
  • Ensure that the input shapefiles are in the modis sinusiodal projection

How to update the docker container

  • step 0.1. install docker (go to the docker website for OS-specific instructions.)
  • step 0.2. get a dockerhub account
  • step 1. login to docker hub via the command line
    • docker login or sudo docker login
  • step 2. get the existing docker image set up
    • docker run -t -d earthlab/firedpy
  • step 3. update from github
    • git pull
  • step 4. build the docker container
    • docker build -t earthlab/firedpy:latest .
  • step 5. ENSURE THE SOFTWARE STILL WORKS BEFORE PUSHING
    • firedpy -aoi /home/firedpy/ref/individual_countries/samoa.gpkg
  • step 6. push it up to dockerhub
    • docker push earthlab/firedpy:latest

About

A Python Command Line Interface for classifying fire events from the Collection 6 MODIS Burned Area Product.

Resources

License

Stars

Watchers

Forks

Packages

No packages published