Skip to content

Commit

Permalink
Added Hectares to average area math per issue #454
Browse files Browse the repository at this point in the history
  • Loading branch information
eirannejad committed Jan 7, 2019
1 parent 7f44281 commit aa766af
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,7 @@ def calc_and_print(items, item_type, type_name, match_name):
print('\nAVERAGE AREA OF THE SELECTED TYPE IS:'
'\n{}'
'\n ======================================='
'\n{} ACRE'.format(revit.units.format_area(average),
average / 43560))
'\n{} ACRE'
'\n{} HECTARES'.format(revit.units.format_area(average),
average / 43560,
average / 107639))

0 comments on commit aa766af

Please sign in to comment.