You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the table contains the column max_dua, it calculates the corresponding FAR (max_far_from_dua) and takes the minimum of max_far, max_far_from_heights, and max_far_from_dua.
Otherwise, it takes the minimum of max_far and max_far_from_heights.
The last two steps are implemented in the _min_max_fars function.
Our interpretation of the table is that max_far limits the non-residential part whereas max_dua limits the residential part of the mixed development. Thus, taking the minimum over these is wrong.
The text was updated successfully, but these errors were encountered:
We now have a child class that overwrites the _min_max_fars function. Step 2. above is replaced by taking the sum of max_far_from_dua and max_far capped by the max_far_from_heights. In Step 3., max_far_from_heights is only considered if max_far is not given.
The UDST feasibility model determines the max FAR for mix-use parcels using the zoning_heights table as follows:
max_far_from_heights
).max_dua
, it calculates the corresponding FAR (max_far_from_dua
) and takes the minimum ofmax_far
,max_far_from_heights
, andmax_far_from_dua
.max_far
andmax_far_from_heights
.The last two steps are implemented in the _min_max_fars function.
Our interpretation of the table is that
max_far
limits the non-residential part whereasmax_dua
limits the residential part of the mixed development. Thus, taking the minimum over these is wrong.The text was updated successfully, but these errors were encountered: