Skip to content

Commit

Permalink
Fixing expression in UCM. RE:natcap#1509
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Feb 14, 2024
1 parent b02b49c commit fec802a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/natcap/invest/urban_cooling_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,23 @@
"considered a green area.")},
"shade": {
"type": "ratio",
"required": "cc_method == factors",
"required": "cc_method == 'factors'",
"about": gettext(
"The proportion of area in this LULC class that is "
"covered by tree canopy at least 2 meters high. "
"Required if the 'factors' option is selected for "
"the Cooling Capacity Calculation Method.")},
"albedo": {
"type": "ratio",
"required": "cc_method == factors",
"required": "cc_method == 'factors'",
"about": gettext(
"The proportion of solar radiation that is directly "
"reflected by this LULC class. Required if the "
"'factors' option is selected for the Cooling "
"Capacity Calculation Method.")},
"building_intensity": {
"type": "ratio",
"required": "cc_method == intensity",
"required": "cc_method == 'intensity'",
"about": gettext(
"The ratio of building floor area to footprint "
"area, with all values in this column normalized "
Expand Down

0 comments on commit fec802a

Please sign in to comment.