Skip to content

Commit

Permalink
add back missing output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Jun 8, 2022
1 parent 73a9f77 commit a73da91
Show file tree
Hide file tree
Showing 7 changed files with 1,642 additions and 0 deletions.
6 changes: 6 additions & 0 deletions activitysim/examples/example_gondor/output/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.csv
*.log
*.prof
*.h5
*.txt
*.omx
2 changes: 2 additions & 0 deletions activitysim/examples/example_gondor/output/cache/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.mmap
*.feather
3 changes: 3 additions & 0 deletions activitysim/examples/example_gondor/output/log/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.csv
*.log
*.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
version: 1

header:
tab: Topsheet
title: ActivitySim Topsheet
description: "Some example metrics that people find generally useful."

layout:
topsheetRow:
- title: "At-a-Glance"
type: "topsheet"
props:
configFile: "topsheet.yaml"

row0:
- title: "Trip Mode Share"
# description: "Add a subtitle"
info: "You can additional descriptive text for each chart element."
type: "pie"
width: 1
props:
dataset: "trips_by_mode_count.csv"
useLastRow: true

- title: "Trip Purpose"
# description: ""
info: "You can add additional descriptive text for each chart element."
type: "pie"
width: 1
props:
dataset: "trips_by_purpose_count.csv"
useLastRow: true

- title: "Trip Purpose by Time of Day"
description: "Trip counts stacked by puropse"
info: "You can add additional descriptive text for each chart element."
type: "area"
width: 1
props:
dataset: "trip_purpose_by_time_of_day.csv"
x: "depart"

row1:
- title: "VMT / Capita"
# description: ""
info: "You can add additional descriptive text for each chart element."
type: "map"
width: 2
height: 8
props:
boundaries: 'taz1454.geojson'
boundariesJoinCol: 'TAZ1454'
boundariesLabels: 'TAZ'
dataset: 'vmt_per_capita_by_home_taz.csv'
datasetJoinCol: 'home_zone_id'
datasetValue: 'vmt_per_capita_by_home_taz'

- title: "VMT / Employee"
# description: ""
type: "map"
width: 2
height: 8
props:
boundaries: 'taz1454.geojson'
boundariesJoinCol: 'TAZ1454'
boundariesLabels: 'TAZ'
dataset: 'vmt_per_capita_by_work_taz.csv'
datasetJoinCol: 'workplace_zone_id'
datasetValue: 'vmt_per_capita_by_work_taz'

row2:
- title: "Work Tours by Departure Time"
type: "bar"
props:
dataset: "work_tours_tod_count.csv"
x: "depart"
xAxisTitle: "Time of Day"
columns: ['tours']
yAxisTitle: "Tours"
legendTitles: ['Work Tours']

- title: "School Tours by Departure Time"
type: "bar"
props:
dataset: "school_tours_tod_count.csv"
x: "depart"
xAxisTitle: "Time of Day"
columns: ['tours']
yAxisTitle: "Tours"
legendTitles: ['School Tours']

- title: "Non-Mandatory Tours by Departure Time"
type: "bar"
props:
dataset: "non_mandatory_tours_tod_count.csv"
x: "depart"
xAxisTitle: "Time of Day"
columns: ['tours']
yAxisTitle: "Tours"
legendTitles: ['Non-Mandatory Tours']

row3:
- title: "Relationships Between Tour Modes and Trip Modes"
description: "Tour modes <---> Trip modes"
type: sankey
height: 8
props:
csv: tour_mode_to_trip_mode.csv
1,461 changes: 1,461 additions & 0 deletions activitysim/examples/example_gondor/output/summarize/taz1454.geojson

Large diffs are not rendered by default.

59 changes: 59 additions & 0 deletions activitysim/examples/example_gondor/output/summarize/topsheet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Topsheet Test
# title: Key Performance Indicators

# Input files -------------------------
files:
tours:
file: "tours_count.csv"
trips:
file: "trips_count.csv"
households:
file: "households_count.csv"
persons:
file: "persons_count.csv"
tours_per_household:
file: "tours_per_household_count.csv"
trips_per_household:
file: "trips_per_household_count.csv"
total_vmt:
file: "total_vmt.csv"
vmt_per_capita:
file: "vmt_per_capita.csv"

# Calculations ------------------------
calculations:
tours: '{tours.tours}'
trips: '{trips.trips}'
households: '{households.households}'
persons: '{persons.persons}'
tours_per_household: '{tours_per_household.tours_per_household}'
trips_per_household: '{trips_per_household.trips_per_household}'
total_vmt: '{total_vmt.vmt}'
vmt_per_capita: '{vmt_per_capita.vmt_per_capita}'

# Table rows
outputs:
- title: Total Tours
# style: { font-weight: bold, color: purple }
value: tours

- title: Total Trips
value: trips

- title: Total Households
value: households

- title: Total Persons
value: persons

- title: Tours / Household
value: tours_per_household

- title: Trips / Household
value: trips_per_household

- title: Total VMT
value: total_vmt

- title: VMT / Capita
value: vmt_per_capita
3 changes: 3 additions & 0 deletions activitysim/examples/example_gondor/output/trace/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.csv
*.log
*.txt

0 comments on commit a73da91

Please sign in to comment.