Global PALSAR-2/PALSAR/JERS-1 Mosaics and Forest/Non-Forest Maps
https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm
To improve understanding of and responses to the impacts of global environmental changes, timely and consistent monitoring of the global land cover is essential. Global monitoring with satellite remote sensing is one of the most effective approaches to detect land surface changes, such as deforestation and forest degradation, as satellites can provide wall-to-wall observations covering wide areas periodically. The long wavelength (L-band) Synthetic Aperture Radars (SAR) on ALOS and ALOS-2 are particularly sensitive to vegetation structure and can observe the land surface even under clouds, and as such, are particularly useful to provide information about forest changes in the tropical regions.
The global forest/non-forest maps (FNF) were generated by a Random Forest machine learning-based classification method, with the re-processed global 25m resolution PALSAR-2 mosaic dataset (Ver. 2.0.0) as input. Here, the "forest" is defined as the tree covered land with an area larger than 0.5 ha and a canopy cover of over 10 %, in accordance with the FAO definition of forest. The classification results are presented in four categories, with two categories of forest areas: forests with a canopy cover of 90 % or more and forests with a canopy cover of 10 % to 90 %, depending on the density of the forest area.
Global 25m Resolution PALSAR-2 Global Forest/Non-forest Map (Ver.2.0.0) Dataset Description: https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_FNF_V200.pdf
Citation
Data access and download
Register with e-mail here: https://www.eorc.jaxa.jp/ALOS/en/palsar_fnf/registration.htm
The dataset download site is: https://www.eorc.jaxa.jp/ALOS/en/palsar_fnf/data/index.htm
source ~/proyectos/CES/cesdata/env/project-env.sh
mkdir -p $GISDATA/forest/global/PALSAR-forest-non-forest
cd $GISDATA/forest/global/PALSAR-forest-non-forest
mkdir FNF2019
mkdir FNF2020
# For Central Africa
for ns in N00 N05 S05 S10 S15 N10 N15 N20
do
for ew in E025 E030 E035 E020 E000 E005 E010 E015
do
for year in 19 20
do
wget --user=$PALSARUSR --password=$PALSARPWD --continue https://www.eorc.jaxa.jp/ALOS/en/palsar_fnf/data/20${year}/dir_zip/20${year}/${ns}${ew}_${year}_FNF_F02DAR.zip --output-document=FNF20${year}/${ns}${ew}_${year}_FNF_F02DAR.zip
done
done
done
# For South America
for year in 19 20
do
for ew in W075 W070 W065 W060 W080
do
for ns in N00 N05 S05 S10 S15 N10 N15 N20
do
wget --user=$PALSARUSR --password=$PALSARPWD --continue https://www.eorc.jaxa.jp/ALOS/en/palsar_fnf/data/20${year}/dir_zip/20${year}/${ns}${ew}_${year}_FNF_F02DAR.zip --output-document=FNF20${year}/${ns}${ew}_${year}_FNF_F02DAR.zip
done
done
done
module add sqlite/3.31.1 spatialite/5.0.0b0 python/3.8.3 perl/5.28.0 gdal/3.2.1 geos/3.8.1
module add proj/7.2.0 udunits/2.2.26
cd $GISDATA/forest/global/PALSAR-forest-non-forest/FNF2020
for i in $(ls *zip); do unzip -u $i; done
cd $GISDATA/forest/global/PALSAR-forest-non-forest/
gdalbuildvrt FNF2020.vrt FNF2020/*.tif