Skip to content

Commit

Permalink
fix max_tree_cover
Browse files Browse the repository at this point in the history
  • Loading branch information
tedw0ng committed Jun 11, 2024
1 parent 68f413d commit 0f8506f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion city_metrix/layers/tree_cover.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class TreeCover(Layer):
def __init__(self, min_tree_cover=None, max_tree_cover=None, **kwargs):
super().__init__(**kwargs)
self.min_tree_cover = min_tree_cover
self.max_tree_cover = max_tree_cover
self.max_tree_cover = max_tree_cover

def get_data(self, bbox):
tropics = ee.ImageCollection('projects/wri-datalab/TropicalTreeCover')
Expand Down

0 comments on commit 0f8506f

Please sign in to comment.