This repository contains the scripts associated with the article:
"Particulate and gas emissions from wildfires in the southern Amazon, from 2020 to 2022, from GOES-16 fire radiative power retrievals."
These scripts are designed to analyze particulate and gas emissions from wildfires in the southern Amazon using fire radiative power (FRP) data from the GOES-16 satellite. The computations rely on the Pangeo open science community's Docker image, ensuring a reproducible and scalable workflow.
Below is an example image generated by one of the scripts:
To run these scripts, you need to use the Pangeo-notebook Docker image:
Ensure you have Docker installed on your system before proceeding.
-
Pull the Pangeo Docker Image:
docker pull pangeo/pangeo-notebook:latest
-
Run the Docker Container:
docker run -p 8888:8888 -v $(pwd):/home/jovyan/work --rm pangeo/pangeo-notebook
This will start a Jupyter Notebook server that can be accessed at
http://localhost:8888/
. -
Clone this Repository:
git clone https://github.com/thiago-vg/Teste_Repo.git cd Teste_Repo
-
Open JupyterLab and Start Working
- Navigate to
http://localhost:8888/
- Open the scripts within the
work
directory in JupyterLab.
- Navigate to
Scripts prefixed with "Get" access GOES-16 data directly from the internet, so downloading the data is not necessary beforehand. However, if the connection is slow or the analysis needs to be repeated multiple times, it is recommended to download the data locally. A script is provided to assist with this process.
Preprocessed GOES-16 data used in the article is available in the following Google Drive directory:
Additional datasets used in the analysis can be accessed from their respective sources:
- GFED: Global Fire Emissions Database
- FEER: Fire Energetics and Emissions Research Database
- GFAS: Global Fire Assimilation System
Once the data is available, additional scripts are provided for further processing, analysis, and visualization.
Some of the generated maps require the use of shapefiles, all of which are included in the "Auxiliary data" directory.
- The shapefile for the Amazon Basin is sourced from:
- The shapefiles for roads and cities come from the Natural Earth database:
Additionally, the mapping of land use, available in the script "Plot_landuse.ipynb", utilizes the dataset from:
The flowchart below streamlines the process for the "Get" scripts. While the other scripts are more straightforward, these are fundamental to understanding the process of obtaining the results presented in the article.
graph TD;
A[Start] --> E["GOES-16 cloud storage"];
E -->|Lists| H["List all GOES data for period of interest"];
E -->|Provides| F["Use one file to calculate lat/lon for GOES-16 data matrix"];
H -->|Processes| I["Calculate results for all files using GOES-16 ABI FDC product"];
I -->|Stores| J["Save in a CSV file"];
J --> K[End];
C["Region of Interest (ROI)"] -->|Provides| G["Generate index matrix matching lat/lon from ROI with GOES data matrix"];
D["FEER coefficients"] -->|Provides| G;
F -->|Generates| G;
G -->|Feeds into| I;
If you use these scripts in your research, please cite our article:
Particulate and Gas Emissions from Wildfires in the Southern Amazon, from 2020 to 2022, from GOES-16 Fire Radiative Power Retrievals Thiago Ferreira da Nobrega and Alexandre Lima Correia ACS ES&T Air Article ASAP DOI: 10.1021/acsestair.4c00209
For questions or contributions, feel free to reach out via GitHub issues or email.