Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3f1d2bf
Update README.md
bstabler Mar 22, 2017
5a297cf
Clean up scenarios list
abbyarc Aug 23, 2017
76180eb
Merge pull request #1 from abbyarc/patch-1
lslangley Aug 29, 2017
b215459
scenarios update
lslangley Sep 25, 2017
8f587f3
Merge branch 'gh-pages' of https://github.com/atlregional/ABMVIZ into…
lslangley Sep 25, 2017
a4370b9
test
lslangley Sep 25, 2017
5dd1c2f
scenarios clean up
lslangley Sep 25, 2017
444b8f4
scenarios clean up
lslangley Sep 25, 2017
83adc10
update scenarios
lslangley Sep 25, 2017
b519f58
update to scenarios.csv
lslangley Sep 25, 2017
aa60442
update to scenarios.csv
lslangley Sep 25, 2017
b649d95
scenarios fix
lslangley Sep 25, 2017
c423f19
Merge branch 'gh-pages' of https://github.com/atlregional/ABMVIZ into…
lslangley Sep 25, 2017
2e96921
updated scenarios list and bar charts
lslangley Sep 25, 2017
1bf2a5e
Merge branch 'gh-pages'
lslangley Sep 25, 2017
4e4b583
removed RP2040-NB2040 and added RP2017 radar charts
lslangley Sep 26, 2017
1cc152e
Merge branch 'gh-pages'
lslangley Sep 26, 2017
ba0c6d8
updated to match ABMVIZ_P
lslangley May 2, 2018
aeef394
Update README.md
soheilsameti-ARC Oct 1, 2025
1aabd4a
Update scenarios.csv
soheilsameti-ARC Feb 6, 2026
6b18dbb
Add files via upload
soheilsameti-ARC Feb 6, 2026
825e9fd
Add files via upload
soheilsameti-ARC Feb 6, 2026
152b96b
Add files via upload
soheilsameti-ARC Feb 6, 2026
d90bd00
Add files via upload
soheilsameti-ARC Feb 6, 2026
4c2cd44
Add files via upload
soheilsameti-ARC Feb 6, 2026
06bf3e3
Add files via upload
soheilsameti-ARC Feb 6, 2026
ac9f55f
Delete data/MTP25_2020/3DAnimatedMapData.csv
soheilsameti-ARC Feb 18, 2026
1331d89
Add files via upload
soheilsameti-ARC Feb 18, 2026
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
Empty file added App.vue
Empty file.
39 changes: 28 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,39 @@ ARC ABMVIZ HTML 5
- TreeMapData.csv: GROUP1, GROUP2, GROUP3, ..., QUANTITY
- RadarChartsData.csv: AXIS, CHART, QUANTITY
- BarChartData.csv: BARGROUP, COLUMNS, QUANTITY
1. Copy transit stop data and origin-destination data (at the superdistrict level) from Cube output:
- Desirelines.csv: ORIG, DEST, WRKSOV, WRKHOV, WRKTRN, NWKSOV, NWKHOV, NWKTRN, ALLSOV, ALLHOV, ALLTRN, WRKALL, NWKALL, ALLALL
- TransitStops.shp (see next step)
1. Convert TransitStops.shp to TransitStops.topojson before committing it to the repository

# Data folder
```
# Setting up the first time ---
# Install GDAL, which installs ogr2ogr (http://www.gdal.org/)
# Install node.js (and npm) (https://nodejs.org/en/download/)
# Install topojson-server using npm
npm install -g topojson-server

# Convert shapefile to topojson ---
cd ~/path/to/your/shapefile
ogr2ogr -f GeoJSON -t_srs EPSG:4326 TransitStops.geojson TransitStopData.shp
geo2topo transit=TransitStops.geojson > TransitStops.topojson
```

#Data folder
1. scenarios.csv - Defines each scenario (i.e. model run) available to the user
2. BS10 - Example scenario data folder with its name equal to its scenarios.csv entry
3. ZoneShape.GeoJSON - ARC TAZs geojson feature collection with the id property equal to the TAZ number
4. cb_2015_us_county_500k GEORGIA.json - Counties from [Census](https://www.census.gov/geo/maps-data/data/cbf/cbf_counties.html); converted to json with [mapshaper](http://www.mapshaper.org)

# BS10 example scenario folder
#BS10 example scenario folder
1. BarChartAndMapData.csv - demo data source for the bar chart and map visual - trips by origin zone, county, and mode
2. TimeUseData.csv - demo data source for the time use visual - persons by type, hour of the day, activity purpose
3. 3DAnimatedMapData.csv - demo data source for the 3D animated map visual - persons not at home by zone, hour of the day
4. TreeMapData.csv - demo data source for the tree map visual - trips by mode groups and mode
5. RadarChartsData.csv - demo data source for the radar charts visual - four summaries, jobs housing balance, accessible employment, transit mode share, and zero car transit trips per household
5. BarChartData.csv - demo data source for the bar chart visual - activity patterns by person type

# Scripts folder
#Scripts folder
1. convertWKTtoGEOJSON.R - R script to convert the old ABMVIZ wellknowntext format TAZ polygons to GeoJSON
4. BarChartAndMapExample.sql - SQL script to query the ABMVIZ DB to produce the bar chart and map visual demo data set
5. TimeUseExample.sql - SQL script to query the ABMVIZ DB to produce the time use visual demo data set
Expand All @@ -35,27 +52,27 @@ ARC ABMVIZ HTML 5
8. RadarChartsExample.sql - SQL script to query the ABMVIZ DB to produce the radar charts visual demo data set
9. BarChartExample.sql - SQL script to query the ABMVIZ DB to produce the bar chart visual demo data set

# Exporting demo data set from SQL Server
#Exporting demo data set from SQL Server
1. Open SQL server management studio
2. Open one of the example SQL query scripts such as BarChartAndMapExample.sql
3. Set the user - [ATLANTAREGION\TAMConsult] - and schema (i.e. scenario) - BS10 - to query
3. Set the user - [ATLANTAREGION\<UserName>] - and schema (i.e. scenario) - BS10 - to query
4. Execute the script
5. Right click in the upper left corner of the results table and select Copy with Headers
6. Paste the result in Excel and save as a CSV file into the relevant data\scenario folder

# Run demo
#Run demo
1. Requires a http server such as Python's SimpleHTTPServer
2. Run the http server from this project directory:
2. Run the http server from this project directory:
- Python 2: python -m SimpleHTTPServer
- Python 3: python -m http.server
3. Go to http://localhost:8000 in your browser
3. Go to http://localhost:8000 in your browser

# Publish site as github pages under RSG account
#Publish site as github pages under RSG account
1. Push the master branch to a branch called gh-pages
2. Site address is http://rsginc.github.io/ABMVIZ

# Publish site as github pages under ARC account
1. Notify ARC's IT group
#Publish site as github pages under ARC account
1. Notify ARC's IT group
2. ARC clone the repo to their GitHub account - https://github.com/atlregional
3. ARC push the master branch to a branch called gh-pages
2. Site address is http://atlregional.github.io/ABMVIZ
19 changes: 19 additions & 0 deletions bower_components/d3v4/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "d3",
"description": "A JavaScript visualization library for HTML and SVG.",
"main": "d3.js",
"license": "BSD-3-Clause",
"ignore": [],
"homepage": "https://github.com/mbostock-bower/d3-bower",
"version": "4.10.0",
"_release": "4.10.0",
"_resolution": {
"type": "version",
"tag": "v4.10.0",
"commit": "4aa309e7873c80ee2ff8324d2d5fd02151e928af"
},
"_source": "https://github.com/mbostock-bower/d3-bower.git",
"_target": "4.10.0",
"_originalSource": "d3",
"_direct": true
}
27 changes: 27 additions & 0 deletions bower_components/d3v4/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright 2010-2017 Mike Bostock
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of the author nor the names of contributors may be used to
endorse or promote products derived from this software without specific prior
written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57 changes: 57 additions & 0 deletions bower_components/d3v4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# D3: Data-Driven Documents

<a href="https://d3js.org"><img src="https://d3js.org/logo.svg" align="left" hspace="10" vspace="6"></a>

**D3** (or **D3.js**) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data.

## Resources

* [API Reference](https://github.com/d3/d3/blob/master/API.md)
* [Release Notes](https://github.com/d3/d3/releases)
* [Gallery](https://github.com/d3/d3/wiki/Gallery)
* [Examples](https://bl.ocks.org/mbostock)
* [Wiki](https://github.com/d3/d3/wiki)

## Installing

If you use npm, `npm install d3`. Otherwise, download the [latest release](https://github.com/d3/d3/releases/latest). The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from [d3js.org](https://d3js.org), [CDNJS](https://cdnjs.com/libraries/d3), or [unpkg](https://unpkg.com/d3/). For example:

```html
<script src="https://d3js.org/d3.v4.js"></script>
```

For the minified version:

```html
<script src="https://d3js.org/d3.v4.min.js"></script>
```

You can also use the standalone D3 microlibraries. For example, [d3-selection](https://github.com/d3/d3-selection):

```html
<script src="https://d3js.org/d3-selection.v1.js"></script>
```

D3 is written using [ES2015 modules](http://www.2ality.com/2014/09/es6-modules-final.html). Create a [custom bundle using Rollup](https://bl.ocks.org/mbostock/bb09af4c39c79cffcde4), Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules:

```js
import {scaleLinear} from "d3-scale";
```

Or import everything into a namespace (here, `d3`):

```js
import * as d3 from "d3";
```

In Node:

```js
var d3 = require("d3");
```

You can also require individual modules and combine them into a `d3` object using [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign):

```js
var d3 = Object.assign({}, require("d3-format"), require("d3-geo"), require("d3-geo-projection"));
```
7 changes: 7 additions & 0 deletions bower_components/d3v4/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "d3",
"description": "A JavaScript visualization library for HTML and SVG.",
"main": "d3.js",
"license": "BSD-3-Clause",
"ignore": []
}
Loading