Satellite Data On Australian Fires
NASA MODIS satellite data 2000-2019
@kaggle.gabrielbgutierrez_satellite_data_on_australia_fires
NASA MODIS satellite data 2000-2019
@kaggle.gabrielbgutierrez_satellite_data_on_australia_fires
There isn't a lot of datasets that provide historical data about fires in Australia. So I compiled data from NASA's MODIS satellite MODIS/Aqua + Terra Thermal Anomalies/Fire locations that provides data from hotspots/fires on Australia since 2000
The dataset provides info of NASA MODIS Satellite since 2000
I want to give credit to Carlos Paradis for inspiring me to make a more complete dataset. If you want to check more recent data than is provided here you can check his dataset
We acknowledge the use of data and imagery from LANCE FIRMS operated by NASA's Earth Science Data and Information System (ESDIS) with funding provided by NASA Headquarters.
MODIS Collection 6 NRT Hotspot / Active Fire Detections MCD14DL. Available on-line [https://earthdata.nasa.gov/firms]. doi: 10.5067/FIRMS/MODIS/MCD14DL.NRT.006
Feel free to post on Discursions if you find something odd and/or ideas on the topic!
CREATE TABLE modis_2000_2019_australia (
"latitude" DOUBLE,
"longitude" DOUBLE,
"brightness" DOUBLE,
"scan" DOUBLE,
"track" DOUBLE,
"acq_date" TIMESTAMP,
"acq_time" BIGINT,
"satellite" VARCHAR,
"instrument" VARCHAR,
"confidence" BIGINT,
"version" DOUBLE,
"bright_t31" DOUBLE,
"frp" DOUBLE,
"daynight" VARCHAR,
"type" BIGINT
);Anyone who has the link will be able to view this.