Skip to content

Files

Latest commit

570ec04 · Aug 31, 2016

History

History
56 lines (47 loc) · 2.85 KB

README.md

File metadata and controls

56 lines (47 loc) · 2.85 KB

Deprecation warning

This repo is being deprecated in favor of the SFBrigade fork, to be more aligned with Data Science Working Group best practice procedures.

Please refer to this https://github.com/sfbrigade/datasci-SF-Environment-Benchmark repo for future work


Set of applications to visualize SF building energy consumption and greenhouse gas emissions.

The original goal of the SF Environment Benchmark project was to visualize building energy consumption and greenhouse gas emissions to encourage owners and building managers to make proper changes. In addition we would like to analyze the data available to see if we can predict what energy consumption or emissions will be like in the future. We've currently developed a prototype web application that visualizes the data in an interactive format. In addition, we'll be meeting with the SF Department of Environment, who are the stewards of the data, to see what their needs and requirements are. We can cater the project to their needs and requirements to make sure to solve problems at hand.

SF Environment Benchmark part of the Data Science Working Group at Code for San Francisco.

Contributing DSWG Members

  • Sanat Moningi
  • Tyler Field
  • Geoffrey Pay
  • Baolin Liu

Prototypes

Getting Started

Fork this repo, then clone your repo locally

$ git clone <your-repo>
$ cd <this-repo's-name>
$ git remote add upstream <this-repo>

Launch a local server. If you're on a Mac, you already have SimpleHTTPServer installed:

$ cd path/to/local/clone
$ python -m SimpleHTTPServer

You could also use http-server if you wanted
Create a feature branch:

$ git checkout -b <feature-branch>

Do some work:

$ vim <some-files>

When you're ready, commit, merge any upstream changes, deal with conflicts, and push your branch (aka, forking workflow)

$ git commit -am 'my awesome feature'
$ git pull upstream master
  # solve conflicts
$ git push

Create a Pull Request from your pushed branch (compare branch) to this repo (base branch)
...
Profit!