Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# URBANopt GeoJSON Gem

## Version 1.0.1
## Version 1.0.2

* Enable capital costs per building by @vtnate in https://github.com/urbanopt/urbanopt-geojson-gem/pull/285

## What's Changed
## Version 1.0.1

* Use SI units for connector lengths by @vtnate in https://github.com/urbanopt/urbanopt-geojson-gem/pull/283

Expand Down
9 changes: 9 additions & 0 deletions lib/urbanopt/geojson/schema/building_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@
"description": "Name of the tariff file for this building. Defaults to site's tariff_filename.",
"type": "string"
},
"capital_costs":{
"description": "Capital costs for the building, used for financial analysis.",
"type": ["integer", "null"],
"default": null
},
"capital_costs_per_square_foot":{
"description": "Are the capital costs a total for the building or a cost per square foot?",
"type": "boolean"
},
"surface_elevation": {
"description": "The surface elevation (above NAVD88 datum) of the building (ft). This is the elevation of the ground at the building location, any below ground stories will be lower than this. Defaults to site's surface_elevation.",
"type": "number"
Expand Down
2 changes: 1 addition & 1 deletion lib/urbanopt/geojson/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

module URBANopt
module GeoJSON
VERSION = '1.0.1'.freeze
VERSION = '1.0.2'.freeze
end
end