Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.
David P. Chassin edited this page Nov 21, 2019 · 7 revisions

The US Version 4.2 of GridLAB-D is deployed using websites and REST servers in the domain gridlabd.us

Access

All GridLAB-D resources deployed online are available via curl and web browsers. The preferred access method depends on the type of resources requested. In general, GET requires a curl or equivalent library to access data. Otherwise, a web browser is typically required.

code.gridlabd.us

GET /<branch>/<pathname>

This provides direct access to the current copies of source code.

docs.gridlabd.us

http://docs.gridlabd.us/index.html?host=<domain-name>&owner=<user-org>&project=<repo-name>&branch=<branch-name>&folder=<path-name>&doc=<file-name>

This provides the main documentation browser for current branches.

library.gridlabd.us

GET /<state>/<org>/<pathname>

This provides direct access to the current copies of the library files.

source.gridlabd.us

http://source.gridlabd.us/
http://source.gridlabd.us/tree/<branch-name>[/<path-name>]
http://source.gridlabd.us/issues[/<number>]
http://source.gridlabd.us/pulls[/<number>]
http://source.gridlabd.us/wiki/[<page-name>]

This is the current entry point to browser the GridLAB-D open source code repository.

template.gridlabd.us

GET /<state>/<org>/<pathname>

This provides direct access to the current copies of the model template files.

weather.gridlabd.us

GET /<state>-<station-name>.tmy3

This provides direct access to the current copies of the weather files.

Deploy

The documentation website docs.gridlabd.us and the development testing website docs-dev.gridlabd.us are deployed from the SLAC GISMo Docs-Browser project using the ./deploy.sh script. To update the docs.gridlabd.us from the Docs-Browser project, do the following

bash$ git clone https://github.com/slacgismo/docs-browser
bash$ cd docs-browser
bash$ ./deploy.sh src docs.gridlabd.us

All the remaining sites are configured using AWS Route 53 and S3, with redirection as follows:

| Site                 | Redirect                                                        |
| -------------------- | --------------------------------------------------------------- |
| code.gridlabd.us     | raw.githubusercontent.com/dchassin/gridlabd                     |
| library.gridlabd.us  | raw.githubusercontent.com/dchassin/gridlabd-library/master/US/  |
| source.gridlabd.us   | github.com/dchassin/gridlabd                                    |
| template.gridlabd.us | raw.githubusercontent.com/dchassin/gridlabd-template/master/US/ |
| weather.gridlabd.us  | raw.githubusercontent.com/dchassin/gridlabd-weather/master/US/  |

Clone this wiki locally