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
{{ message }}
This repository was archived by the owner on Oct 7, 2019. It is now read-only.
Built as a demonstration project in collaboration with [Bard College](http://www.bard.edu/) and [Current Hydro](http://www.currenthydro.com/).
7
+
This was built as a demonstration project for [Bard College](http://www.bard.edu/) and [Current Hydro LLC](http://www.currenthydro.com/). The project was funded by [NYSERDA](https://www.nyserda.ny.gov/).
8
+
9
+
## What It Does
10
+
11
+
The Microhydropower Calculator helps estimate the power generation potential of a micro-hydroelectric turbine installation. It guides you through these steps:
12
+
13
+
### 1. Identify a location for microhydropower, and get information about the terrain
14
+
15
+
Use the map and available data layers to identify a spot suitable for a potential microhydropower installation. Dam locations (New York State only) and national hydrographic data from US Geological Survey (USGS) are available as map layers. Switch the basemap between several available imagery and topographic styles from Esri and Mapbox to get a better sense of the terrain.
16
+
17
+
Once you've found a stream or weir, you diagram the location of the installation on the map with the draw tool. The calculator will automatically estimate head (elevation change) and delineate the contributing area using available topographic data.
18
+
19
+
The underlying elevation data driving the calculations is provided by the USGS through web services hosted by [ESRI](https://www.esri.com/en-us/home). Where available in New York state, head calculations will rely first on high resolution elevation data services hosted by the [NY State GIS Program Office](http://gis.ny.gov/elevation/DEM-web-services.htm), and fall back to coarser USGS elevation data if needed.
20
+
21
+
### 2. Set calculation parameters
22
+
23
+
You can input calculation coefficients and other assumptions used in the calculation (sensible defaults are provided).
24
+
25
+
Optionally, you can also override the head and area estimates derived from map in Step 1.
26
+
27
+
### 3. See the power potential of a microhydropower installation
28
+
29
+
View the analysis results, including total kilowatt hours and estimated revenue generation.
30
+
31
+
## More information
32
+
33
+
The calculator logic is described in the calculator's About section; you can see that same documentation [here](https://github.com/civicmapper/bard-hydropower/blob/master/app/templates/pages/help_methods.md).
7
34
8
35
## Architecture Overview
9
36
@@ -23,21 +50,21 @@ Front-end business logic is written in javascript with only jQuery. Javascript a
23
50
24
51
### Configuration (`config.py`)
25
52
26
-
The application requires a few global configuration variables to be set, mainly to enable access to 3rd-party services.
27
-
28
-
See `app/config.py` for more information.
29
-
30
-
_to be completed._
53
+
The application requires a few global configuration variables to be set, mainly to enable access to 3rd-party Esri and Mapbox services. Required services include:
31
54
32
55
#### ArcGIS Application Registration
33
56
34
57
* Esri Application ID
35
58
* Esri Application Secret
36
59
60
+
Get these by registering an application at https://developers.arcgis.com
61
+
37
62
#### Mapbox Token
38
63
39
64
* Token
40
65
66
+
Get this by generating a token from https://www.mapbox.com
0 commit comments