Skip to content

Commit

Permalink
Fix min area threshold to 100km2
Browse files Browse the repository at this point in the history
  • Loading branch information
kratzert committed Jun 1, 2022
1 parent 628f667 commit a6c3f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/Caravan_part1_Earth_Engine.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"\n",
"- `AREA_MAX_THRESHOLD` (in km2): Defines the upper bound for the basin area. Larger basins in the shapefile are ignored when deriving the attributes and forcings. In the Caravan dataset, we used a threshold of 2000 km2.\n",
"\n",
"- `AREA_MIN_THRESHOLD` (in km2): Defines the lower bound for the basin area. Smaller basins in the shapefile are ignored when deriving the attributes and forcings. In the Caravan dataset, we used a threshold of 50km2. The reason for a lower bound has to do with the underlying resolution of HydroATLAS and some issues with the definition of some of the attributes."
"- `AREA_MIN_THRESHOLD` (in km2): Defines the lower bound for the basin area. Smaller basins in the shapefile are ignored when deriving the attributes and forcings. In the Caravan dataset, we used a threshold of 100km2. The reason for a lower bound has to do with the underlying resolution of HydroATLAS and some issues with the definition of some of the attributes."
]
},
{
Expand All @@ -97,7 +97,7 @@
"BASIN_ID_FIELD = ''\n",
"BASIN_PREFIX = ''\n",
"AREA_MAX_THRESHOLD = 2000\n",
"AREA_MIN_THRESHOLD = 50"
"AREA_MIN_THRESHOLD = 100"
]
},
{
Expand Down

0 comments on commit a6c3f09

Please sign in to comment.