sierrapor / TFG

0 stars 1 forks source link

Adjust land use index with MODIFIED NOAH data #5

Closed sierrapor closed 3 months ago

sierrapor commented 3 months ago

The NOAH data table we are working with have just one row for water covered land, while the land use index array from the dataset differentiates between water and lakes. This extra land use index not contemplated in the data table leads to wrong plots.

sierrapor commented 3 months ago

Added this line in cross_tables function: new_map[new_map == 21] = 17#21 stands for Lakes in land use index. It is assigned to 17 which is Water in MODIS NOAH data table.