Skip to content

Commit

Permalink
Merge pull request #3443 from Vizzuality/fix/fao-tree-cover
Browse files Browse the repository at this point in the history
Removes uncorrect Other Tree Cover values
  • Loading branch information
edbrett committed May 31, 2018
2 parents b98273e + 74eb5de commit 17130cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const parseData = createSelector(
},
{
label: 'Other Tree Cover',
value: otherCover,
value: otherCover > 0 ? otherCover : 0,
percentage: otherCover / area_ha * 100,
color: colorRange[6]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default {
settings: {
threshold: 30,
unit: '%',
extentYear: 2000,
extentYear: 2010,
layers: ['forest2010']
},
enabled: true
Expand Down

0 comments on commit 17130cb

Please sign in to comment.