psrc / urbansim2

3 stars 0 forks source link

Review cost per building height #89

Open hanase opened 7 years ago

hanase commented 7 years ago

Needed for #16.

There are four building heights: <15, <55, <120, 121+. We need cost per building type and height. Currently we are using:

cost = {
   'single_family_residential': [170.0, 190.0, 210.0, 240.0], 
   'condo_residential': [170.0, 190.0, 210.0, 240.0],
   'multi_family_residential': [170.0, 190.0, 210.0, 240.0], 
   'commercial': [160.0, 175.0, 200.0, 230.0], 
   'office': [160.0, 175.0, 200.0, 230.0], 
   'industrial': [140.0, 175.0, 200.0, 230.0], 
   'warehousing': [140.0, 175.0, 200.0, 230.0],
   'tcu': [140.0, 175.0, 200.0, 230.0], 
}