Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
thornoe committed Jul 6, 2024
1 parent 3683375 commit 6ae0645
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gis/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -1287,8 +1287,8 @@ def valuation(dfBT, real=True, investment=False):
return grouped # in prices of current year and preceding year respectively


def decompose(dfBT, baseYear=2018):
"""Decompose development by holding everything else equal at 2018 level"""
def decompose(dfBT, baseYear=1990):
"""Decompose development by holding everything else equal at baseYear level"""

# Define a function to ready each row for decomposition analysis
def replace_row(row):
Expand Down
4 changes: 2 additions & 2 deletions gis/script_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -1292,8 +1292,8 @@ def values_by_catchment_area(self, j, dfEcoImp, dfVP):
arcpy.AddError(msg) # return error message in ArcGIS
sys.exit(1)

def decompose(self, dfBT, baseYear=2018):
"""Decompose development by holding everything else equal at 2018 level"""
def decompose(self, dfBT, baseYear=1990):
"""Decompose development by holding everything else equal at baseYear level"""
try:
# Define a function to ready each row for decomposition analysis
def replace_row(row):
Expand Down

0 comments on commit 6ae0645

Please sign in to comment.