From 5b6d33719359c116c187ea249d142367fbbdc902 Mon Sep 17 00:00:00 2001 From: Willian Viana Date: Tue, 31 Oct 2023 15:29:19 -0300 Subject: [PATCH] chore(fao): add deniedList to tree cover loss in natural forest --- .../widgets/forest-change/tree-loss-plantations/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/widgets/forest-change/tree-loss-plantations/index.js b/components/widgets/forest-change/tree-loss-plantations/index.js index 937f62edad..d28c7cdb71 100644 --- a/components/widgets/forest-change/tree-loss-plantations/index.js +++ b/components/widgets/forest-change/tree-loss-plantations/index.js @@ -14,6 +14,8 @@ import { TREE_PLANTATIONS, } from 'data/layers'; +import FAOCountries from 'utils/fao-countries'; + import getWidgetProps from './selectors'; const MIN_YEAR = 2013; @@ -73,6 +75,9 @@ export default { indicators: ['plantations'], checkStatus: true, }, + blacklists: { + adm0: FAOCountries, + }, settings: { threshold: 30, startYear: MIN_YEAR,