├── CNAME ├── .gitignore ├── Gemfile ├── assets ├── favicon.ico ├── NetBuildingFuture.png └── NetBuildingTestNetwork.png ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf └── fontawesome-webfont.woff ├── performance.md ├── _layouts ├── page.html ├── post.html └── default.html ├── foswiki_imgs ├── Tpl_file.jpg ├── Farelink_far.jpg ├── LokiVariant.jpg ├── ModelDesign.png ├── Operator_far.jpg ├── JPPF_Framework.png ├── JPPF_Workflow.png ├── Emissions_doc2_1.png ├── Emissions_doc2_2.png ├── Emissions_doc2_3.png ├── Emissions_doc2_4.png ├── Emissions_doc2_4b.png ├── Emissions_doc2_5.png ├── Emissions_doc2_7.png ├── Emissions_doc_1.png ├── Emissions_doc_2.png ├── Emissions_doc_3.png ├── Emissions_doc_A.png ├── Emissions_doc_A_L.png ├── Emissions_doc_B.png ├── Emissions_doc_C.png ├── Emissions_doc_D.png ├── Emissions_doc_E.png ├── Emissions_doc_F.png ├── Emissions_doc_G.png ├── Emissions_doc_H.png ├── Emissions_doc_I.png ├── Emissions_doc_J.png ├── Emissions_doc_K.png ├── Emissions_doc_L.png ├── Emissions_doc_L2.png ├── Emissions_doc_L3.png ├── Emissions_doc_L4.png ├── Emissions_doc_L5.png ├── Emissions_doc_L6.png ├── ExampleDataSheet.png ├── ExampleUecNesting.png ├── ExampleUecUtility.png ├── TM1.5_diagrams.pptx ├── transit_fare_file.jpg ├── walk_access.sup.jpg ├── Check_transit_nodes.jpg ├── Check_transit_stops.jpg ├── EMFAC_Screenshots_1.png ├── EMFAC_Screenshots_2.png ├── EMFAC_Screenshots_3.png ├── EMFAC_Screenshots_4.png ├── EMFAC_Screenshots_5.png ├── EMFAC_Screenshots_6.png ├── EMFAC_Screenshots_7.png ├── EMFAC_Screenshots_8.png ├── EMFAC_Screenshots_9.png ├── NETI_XFER_LINKS.DAT.jpg ├── TM1.5AutoOwnership.png ├── EMFAC_Screenshots_10.png ├── EMFAC_Screenshots_11.png ├── EMFAC_Screenshots_12.png ├── EMFAC_Screenshots_13.png ├── EMFAC_Screenshots_14.png ├── EMFAC_Screenshots_15.png ├── EMFAC_Screenshots_16.png ├── EMFAC_Screenshots_17.png ├── EMFAC_Screenshots_18.png ├── EMFAC_Screenshots_19.png ├── EMFAC_Screenshots_20.png ├── EMFAC_Screenshots_21.png ├── EMFAC_Screenshots_22.png ├── EMFAC_Screenshots_23.png ├── EMFAC_Screenshots_24.png ├── EMFAC_Screenshots_25.png ├── EMFAC_Screenshots_26.png ├── EMFAC_Screenshots_27.png ├── EMFAC_Screenshots_28.png ├── EMFAC_Screenshots_29.png ├── EMFAC_Screenshots_30.png ├── EMFAC_Screenshots_31.png ├── EMFAC_Screenshots_32.png ├── EMFAC_Screenshots_33.png ├── EMFAC_Screenshots_34.png ├── EMFAC_Screenshots_35.png ├── EMFAC_Screenshots_36.png ├── EMFAC_Screenshots_37.png ├── EMFAC_Screenshots_38.png ├── EMFAC_Screenshots_39.png ├── ExampleDataSheetGroup.png ├── NETI_ACCESS_LINKS.DAT.jpg ├── TM1.5_ModeChoiceNest.png ├── Transit_Network_Coding.jpg ├── tnc_wait_distributions.png ├── transit_support_file.jpg ├── Check_transit_nodes_seq.jpg ├── ExampleTokenDefinitions.png ├── ExampleUecFilterAndIndex.png ├── taxi_wait_distributions.png ├── transit_farematrix_block.jpg ├── transit_line_block_file.jpg ├── Compare_transit_block_lines.jpg ├── Compare_transit_farefiles.jpg ├── Example_Nesting_Structure.png ├── Walk_Access_Funnel_Links_File.jpg ├── Drive_Access_Funnel_Links_File.jpg ├── ExampleFileDefinedAlternatives.png ├── Output_Network_After_Running_PrepHwyNet.jpg └── Input_Network_Before_Running_PrepHwyNet.job.jpg ├── wiki_pages ├── Readme.md ├── CalibrationAndValidationPresentationVersion03.md ├── CalibrationAndValidationPresentationYear2010Version03.md ├── ComparisonAndValidationPresentationVersion04.md ├── TravelModelOneV05TableauInteractive2015Validation.md ├── TravelModelOneV03TableauInteractive2000Validation.md ├── TravelModelOneV05TableauInteractive2000Validation.md ├── TravelModelOneV03TableauInteractive2010Validation.md ├── TravelModelOneV05TableauInteractive2005Validation.md ├── TravelModelOneV03TableauInteractive2005Validation.md └── TravelModelOneV05TableauInteractive2010Validation.md ├── 404.html ├── README.md ├── index.html ├── _config.yml ├── atom.xml ├── _includes ├── head.html └── anchor_links.html ├── LICENSE.md ├── sitemap.xml ├── css ├── font-awesome.css ├── syntax.css └── poole.css └── data-repository.md /CNAME: -------------------------------------------------------------------------------- 1 | data.mtc.ca.gov -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .bak 3 | _site/* 4 | Gemfile.lock 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' 3 | -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /performance.md: -------------------------------------------------------------------------------- 1 | title: Performance 2 | redirect_to: 3 | - http://bayareametro.github.io/performance/ 4 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 | {{ content }} 7 |
8 | -------------------------------------------------------------------------------- /foswiki_imgs/Tpl_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Tpl_file.jpg -------------------------------------------------------------------------------- /assets/NetBuildingFuture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/assets/NetBuildingFuture.png -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /foswiki_imgs/Farelink_far.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Farelink_far.jpg -------------------------------------------------------------------------------- /foswiki_imgs/LokiVariant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/LokiVariant.jpg -------------------------------------------------------------------------------- /foswiki_imgs/ModelDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ModelDesign.png -------------------------------------------------------------------------------- /foswiki_imgs/Operator_far.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Operator_far.jpg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /foswiki_imgs/JPPF_Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/JPPF_Framework.png -------------------------------------------------------------------------------- /foswiki_imgs/JPPF_Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/JPPF_Workflow.png -------------------------------------------------------------------------------- /assets/NetBuildingTestNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/assets/NetBuildingTestNetwork.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_1.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_2.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_3.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_4.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_4b.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_5.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc2_7.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_1.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_2.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_3.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_A.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_A_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_A_L.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_B.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_C.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_D.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_E.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_F.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_G.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_H.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_I.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_J.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_K.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L2.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L3.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L4.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L5.png -------------------------------------------------------------------------------- /foswiki_imgs/Emissions_doc_L6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Emissions_doc_L6.png -------------------------------------------------------------------------------- /foswiki_imgs/ExampleDataSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleDataSheet.png -------------------------------------------------------------------------------- /foswiki_imgs/ExampleUecNesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleUecNesting.png -------------------------------------------------------------------------------- /foswiki_imgs/ExampleUecUtility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleUecUtility.png -------------------------------------------------------------------------------- /foswiki_imgs/TM1.5_diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/TM1.5_diagrams.pptx -------------------------------------------------------------------------------- /foswiki_imgs/transit_fare_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/transit_fare_file.jpg -------------------------------------------------------------------------------- /foswiki_imgs/walk_access.sup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/walk_access.sup.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Check_transit_nodes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Check_transit_nodes.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Check_transit_stops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Check_transit_stops.jpg -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_1.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_2.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_3.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_4.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_5.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_6.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_7.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_8.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_9.png -------------------------------------------------------------------------------- /foswiki_imgs/NETI_XFER_LINKS.DAT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/NETI_XFER_LINKS.DAT.jpg -------------------------------------------------------------------------------- /foswiki_imgs/TM1.5AutoOwnership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/TM1.5AutoOwnership.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_10.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_11.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_12.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_13.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_14.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_15.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_16.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_17.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_18.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_19.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_20.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_21.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_22.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_23.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_24.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_25.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_26.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_27.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_28.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_29.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_30.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_31.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_32.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_33.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_34.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_35.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_36.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_37.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_38.png -------------------------------------------------------------------------------- /foswiki_imgs/EMFAC_Screenshots_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/EMFAC_Screenshots_39.png -------------------------------------------------------------------------------- /foswiki_imgs/ExampleDataSheetGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleDataSheetGroup.png -------------------------------------------------------------------------------- /foswiki_imgs/NETI_ACCESS_LINKS.DAT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/NETI_ACCESS_LINKS.DAT.jpg -------------------------------------------------------------------------------- /foswiki_imgs/TM1.5_ModeChoiceNest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/TM1.5_ModeChoiceNest.png -------------------------------------------------------------------------------- /foswiki_imgs/Transit_Network_Coding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Transit_Network_Coding.jpg -------------------------------------------------------------------------------- /foswiki_imgs/tnc_wait_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/tnc_wait_distributions.png -------------------------------------------------------------------------------- /foswiki_imgs/transit_support_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/transit_support_file.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Check_transit_nodes_seq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Check_transit_nodes_seq.jpg -------------------------------------------------------------------------------- /foswiki_imgs/ExampleTokenDefinitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleTokenDefinitions.png -------------------------------------------------------------------------------- /foswiki_imgs/ExampleUecFilterAndIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleUecFilterAndIndex.png -------------------------------------------------------------------------------- /foswiki_imgs/taxi_wait_distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/taxi_wait_distributions.png -------------------------------------------------------------------------------- /foswiki_imgs/transit_farematrix_block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/transit_farematrix_block.jpg -------------------------------------------------------------------------------- /foswiki_imgs/transit_line_block_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/transit_line_block_file.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Compare_transit_block_lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Compare_transit_block_lines.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Compare_transit_farefiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Compare_transit_farefiles.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Example_Nesting_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Example_Nesting_Structure.png -------------------------------------------------------------------------------- /foswiki_imgs/Walk_Access_Funnel_Links_File.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Walk_Access_Funnel_Links_File.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Drive_Access_Funnel_Links_File.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Drive_Access_Funnel_Links_File.jpg -------------------------------------------------------------------------------- /foswiki_imgs/ExampleFileDefinedAlternatives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/ExampleFileDefinedAlternatives.png -------------------------------------------------------------------------------- /foswiki_imgs/Output_Network_After_Running_PrepHwyNet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Output_Network_After_Running_PrepHwyNet.jpg -------------------------------------------------------------------------------- /foswiki_imgs/Input_Network_Before_Running_PrepHwyNet.job.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayAreaMetro/modeling-website/HEAD/foswiki_imgs/Input_Network_Before_Running_PrepHwyNet.job.jpg -------------------------------------------------------------------------------- /wiki_pages/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | These are pages migrated from the old MTC/ABAG Analytical Modeling Wiki (http://analytics.mtc.ca.gov/foswiki/Main/WebHome) 3 | 4 | Most of these are on the wiki for this repo (https://github.com/BayAreaMetro/modeling-website/wiki) 5 | But some had to be github pages - for example, if they had embedded iframes. 6 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: "404: Page not found" 4 | --- 5 | 6 |
7 |

404: Page not found

8 |

Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.

9 |
10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Modeling Website 2 | 3 | Landing pages and miscellaneous pages for project sites 4 | 5 | See also the [Forecasting, Modeling & Surveys Wiki](https://github.com/BayAreaMetro/modeling-website/wiki) 6 | 7 | These pages are created via [GitHub Pages and Jekyll](https://docs.github.com/en/github/working-with-github-pages/about-github-pages-and-jekyll) 8 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |

{{ page.title }}

7 | {{ page.date | date_to_string }} 8 | {{ content }} 9 |
10 | 11 | 26 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head.html %} 5 | {% include anchor_links.html %} 6 | 7 | 8 | 9 |
10 |
11 |

12 | {{ site.title }} 13 |

14 |
15 | 16 | {{ content }} 17 | 18 | 23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Home 4 | --- 5 | 6 |
7 | Plan Bay Area 2040 Project Performance Assessement 8 |
9 | Travel Model Two 10 |
11 | Transit Passenger Survey Program 12 |
13 | Fun with PeMS 14 |
15 | Bay Area UrbanSim Documentation 16 |
17 | Travel Model One TAZ Finder 18 |
19 | Forecasting, Modeling & Surveys Wiki 20 |
21 | 22 | # 23 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | markdown: kramdown 3 | kramdown: 4 | extensions: ["tables", "no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript", "with_toc_data"] 5 | 6 | rouge: true 7 | 8 | # Permalinks 9 | permalink: pretty 10 | 11 | # Setup 12 | title: MTC/ABAG Forecasting, Modeling & Surveys 13 | tagline: 'Bay Area Metro' 14 | url: http://bayareametro.github.io 15 | shorturl: bayareametro.github.io 16 | 17 | paginate: 1 18 | 19 | # Custom vars 20 | version: 1.0.0 21 | 22 | github: 23 | repo: https://github.com/BayAreaMetro/BayAreaMetro.github.io/tree/master 24 | 25 | 26 | # Allow URL Redirects: 27 | # * https://help.github.com/articles/redirects-on-github-pages 28 | plugins: 29 | - jekyll-redirect-from 30 | -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 | 7 | 8 | {{ site.title }} 9 | 10 | 11 | {{ site.time | date_to_xmlschema }} 12 | {{ site.url }} 13 | 14 | {{ site.author.name }} 15 | {{ site.author.email }} 16 | 17 | 18 | {% for post in site.posts %} 19 | 20 | {{ post.title }} 21 | 22 | {{ post.date | date_to_xmlschema }} 23 | {{ site.url }}{{ post.id }} 24 | {{ post.content | xml_escape }} 25 | 26 | {% endfor %} 27 | 28 | 29 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% if page.title == "Home" %} 10 | {{ site.title }} · {{ site.tagline }} 11 | {% else %} 12 | {{ page.title }} · {{ site.title }} 13 | {% endif %} 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /wiki_pages/CalibrationAndValidationPresentationVersion03.md: -------------------------------------------------------------------------------- 1 |   2 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [CalibrationAndValidationPresentationVersion03](http://data.mtc.ca.gov/wiki_pages/CalibrationAndValidationPresentationVersion03/) 3 | 4 | --- 5 | 6 | # Calibration and Validation Technical Presentation (Years 2000 & 2005) 7 | 8 | 9 |   10 | -- Main.DavidOry - 23 Apr 2013 11 | -------------------------------------------------------------------------------- /wiki_pages/CalibrationAndValidationPresentationYear2010Version03.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [CalibrationAndValidationPresentationYear2010Version03](http://data.mtc.ca.gov/wiki_pages/CalibrationAndValidationPresentationYear2010Version03) 4 | 5 | --- 6 | 7 | # Travel Model One v0.3 Year 2010 Validation Technical Presentation 8 | 9 | 10 | 11 | 12 | -- Main.DavidOry - 03 Sep 2013 13 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Released under MIT License 2 | 3 | Copyright (c) 2013 Mark Otto. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /wiki_pages/ComparisonAndValidationPresentationVersion04.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "ComparisonAndValidationPresentationVersion04" 4 | permalink: /wiki_pages/ComparisonAndValidationPresentationVersion04/ 5 | --- 6 | 7 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [ComparisonAndValidationPresentationVersion04](http://data.mtc.ca.gov/wiki_pages/ComparisonAndValidationPresentationVersion04) 8 | 9 | # Travel Model One v0.4 Comparison to Version 0.3 Results and Confirmation of Year 2010 Validation 10 | 11 | 12 | 13 | 14 | -- Main.DavidOry - 30 Apr 2015 15 | -------------------------------------------------------------------------------- /_includes/anchor_links.html: -------------------------------------------------------------------------------- 1 | 41 | -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 5 | 6 | {{ site.url }} 7 | {{ site.time | date_to_xmlschema }} 8 | weekly 9 | 1.0 10 | 11 | {% for post in site.posts %} 12 | 13 | {{ site.url }}{{ post.url }} 14 | {% if post.lastmod == null %} 15 | {{ post.date | date_to_xmlschema }} 16 | {% else %} 17 | {{ post.lastmod | date_to_xmlschema }} 18 | {% endif %} 19 | monthly 20 | 0.5 21 | 22 | {% endfor %} 23 | {% for page in site.pages %}{% if page.layout != nil %} 24 | 25 | {{ site.url }}{{ page.url }} 26 | {% if page.sitemap.lastmod %} 27 | {{ page.sitemap.lastmod | date: "%Y-%m-%d" }} 28 | {% elsif page.lastmod %} 29 | {{ page.lastmod | date: "%Y-%m-%d" }} 30 | {% elsif page.date %} 31 | {{ page.date | date: "%Y-%m-%d" }} 32 | {% else %} 33 | {{ site.time | date: "%Y-%m-%d" }} 34 | {% endif %} 35 | {% if page.sitemap.changefreq %} 36 | {{ page.sitemap.changefreq }} 37 | {% else %} 38 | monthly 39 | {% endif %} 40 | {% if page.sitemap.priority %} 41 | {{ page.sitemap.priority }} 42 | {% else %} 43 | 0.3 44 | {% endif %} 45 | 46 | {% endif %}{% endfor %} 47 | 48 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV05TableauInteractive2015Validation.md: -------------------------------------------------------------------------------- 1 | 2 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV05TableauInteractive2015Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV05TableauInteractive2015Validation) 3 | 4 | --- 5 | 6 | # Tableau Interactive 2015 Validation Summaries for Travel Model One v0.5 7 | 8 | ## Roadway (Caltrans) 9 | 10 | tbd 11 | 12 | ## Roadway (PeMS) 13 | 14 | 15 |
16 | 23 |
24 | 25 | ## Transit 26 | 27 | 28 |
29 | 36 |
37 | 38 | -------------------------------------------------------------------------------- /css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'FontAwesome'; 7 | src: url('http://metropolitantransportationcommission.github.io/fonts/fontawesome-webfont.eot?v=4.1.0'); 8 | src: url('http://metropolitantransportationcommission.github.io/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('http://metropolitantransportationcommission.github.io/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('http://metropolitantransportationcommission.github.io/travel-model-two/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('http://metropolitantransportationcommission.github.io/travel-model-two/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | .fa { 13 | display: inline-block; 14 | font-family: FontAwesome; 15 | font-style: normal; 16 | font-weight: normal; 17 | line-height: 1; 18 | -webkit-font-smoothing: antialiased; 19 | -moz-osx-font-smoothing: grayscale; 20 | } 21 | .fa-link:before { 22 | content: "\f0c1"; 23 | } 24 | /* 25 | * This code is courtesy Ben Balter, modified by Parker Moore for jekyllrb.com 26 | * http://ben.balter.com/2014/03/13/pages-anchor-links/ 27 | */ 28 | .header-link { 29 | position: relative; 30 | left: 0.5em; 31 | opacity: 0; 32 | font-size: 0.8em; 33 | 34 | -webkit-transition: opacity 0.2s ease-in-out 0.1s; 35 | -moz-transition: opacity 0.2s ease-in-out 0.1s; 36 | -ms-transition: opacity 0.2s ease-in-out 0.1s; 37 | } 38 | h2:hover .header-link, 39 | h3:hover .header-link, 40 | h4:hover .header-link, 41 | h5:hover .header-link, 42 | h6:hover .header-link { 43 | opacity: 1; 44 | } 45 | -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- 1 | .hll { background-color: #ffffcc } 2 | /*{ background: #f0f3f3; }*/ 3 | .c { color: #999; } /* Comment */ 4 | .err { color: #AA0000; background-color: #FFAAAA } /* Error */ 5 | .k { color: #006699; } /* Keyword */ 6 | .o { color: #555555 } /* Operator */ 7 | .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ 8 | .cp { color: #009999 } /* Comment.Preproc */ 9 | .c1 { color: #999; } /* Comment.Single */ 10 | .cs { color: #999; } /* Comment.Special */ 11 | .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ 12 | .ge { font-style: italic } /* Generic.Emph */ 13 | .gr { color: #FF0000 } /* Generic.Error */ 14 | .gh { color: #003300; } /* Generic.Heading */ 15 | .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ 16 | .go { color: #AAAAAA } /* Generic.Output */ 17 | .gp { color: #000099; } /* Generic.Prompt */ 18 | .gs { } /* Generic.Strong */ 19 | .gu { color: #003300; } /* Generic.Subheading */ 20 | .gt { color: #99CC66 } /* Generic.Traceback */ 21 | .kc { color: #006699; } /* Keyword.Constant */ 22 | .kd { color: #006699; } /* Keyword.Declaration */ 23 | .kn { color: #006699; } /* Keyword.Namespace */ 24 | .kp { color: #006699 } /* Keyword.Pseudo */ 25 | .kr { color: #006699; } /* Keyword.Reserved */ 26 | .kt { color: #007788; } /* Keyword.Type */ 27 | .m { color: #FF6600 } /* Literal.Number */ 28 | .s { color: #d44950 } /* Literal.String */ 29 | .na { color: #4f9fcf } /* Name.Attribute */ 30 | .nb { color: #336666 } /* Name.Builtin */ 31 | .nc { color: #00AA88; } /* Name.Class */ 32 | .no { color: #336600 } /* Name.Constant */ 33 | .nd { color: #9999FF } /* Name.Decorator */ 34 | .ni { color: #999999; } /* Name.Entity */ 35 | .ne { color: #CC0000; } /* Name.Exception */ 36 | .nf { color: #CC00FF } /* Name.Function */ 37 | .nl { color: #9999FF } /* Name.Label */ 38 | .nn { color: #00CCFF; } /* Name.Namespace */ 39 | .nt { color: #2f6f9f; } /* Name.Tag */ 40 | .nv { color: #003333 } /* Name.Variable */ 41 | .ow { color: #000000; } /* Operator.Word */ 42 | .w { color: #bbbbbb } /* Text.Whitespace */ 43 | .mf { color: #FF6600 } /* Literal.Number.Float */ 44 | .mh { color: #FF6600 } /* Literal.Number.Hex */ 45 | .mi { color: #FF6600 } /* Literal.Number.Integer */ 46 | .mo { color: #FF6600 } /* Literal.Number.Oct */ 47 | .sb { color: #CC3300 } /* Literal.String.Backtick */ 48 | .sc { color: #CC3300 } /* Literal.String.Char */ 49 | .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ 50 | .s2 { color: #CC3300 } /* Literal.String.Double */ 51 | .se { color: #CC3300; } /* Literal.String.Escape */ 52 | .sh { color: #CC3300 } /* Literal.String.Heredoc */ 53 | .si { color: #AA0000 } /* Literal.String.Interpol */ 54 | .sx { color: #CC3300 } /* Literal.String.Other */ 55 | .sr { color: #33AAAA } /* Literal.String.Regex */ 56 | .s1 { color: #CC3300 } /* Literal.String.Single */ 57 | .ss { color: #FFCC33 } /* Literal.String.Symbol */ 58 | .bp { color: #336666 } /* Name.Builtin.Pseudo */ 59 | .vc { color: #003333 } /* Name.Variable.Class */ 60 | .vg { color: #003333 } /* Name.Variable.Global */ 61 | .vi { color: #003333 } /* Name.Variable.Instance */ 62 | .il { color: #FF6600 } /* Literal.Number.Integer.Long */ 63 | 64 | .css .o, 65 | .css .o + .nt, 66 | .css .nt + .nt { color: #999; } 67 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV03TableauInteractive2000Validation.md: -------------------------------------------------------------------------------- 1 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV03TableauInteractive2000Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV03TableauInteractive2000Validation) 2 | 3 | --- 4 | 5 | # Tableau Interactive 2000 Validation Summaries for Travel Model One v0.3 6 | 7 | ## Roadway (Caltrans) 8 | 9 |
Learn About Tableau
10 | 11 | ## Transit 12 | 13 |
Learn About Tableau
14 | 15 | -- Main.LisaZorn - 27 Jan 2015 16 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV05TableauInteractive2000Validation.md: -------------------------------------------------------------------------------- 1 | 2 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV05TableauInteractive2000Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV05TableauInteractive2000Validation) 3 | 4 | --- 5 | 6 | # Tableau Interactive 2000 Validation Summaries for Travel Model One v0.5 7 | 8 | ## Roadway (Caltrans) 9 | 10 |
Learn About Tableau
11 | 12 | ## Transit 13 | 14 |
Learn About Tableau
15 | 16 | 17 | -- Main.LisaZorn - 27 Jan 2015 18 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV03TableauInteractive2010Validation.md: -------------------------------------------------------------------------------- 1 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV03TableauInteractive2010Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV03TableauInteractive2010Validation) 2 | 3 | --- 4 | 5 | # Tableau Interactive 2010 Validation Summaries for Travel Model One v0.3 6 | 7 | ## Roadway (Caltrans) 8 | 9 |
Learn About Tableau
10 | 11 | ## Roadway (PeMS) 12 | 13 |
Learn About Tableau
14 | 15 | ## Transit 16 | 17 |
Learn About Tableau
18 | 19 | -- Main.LisaZorn - 26 Jan 2015 20 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV05TableauInteractive2005Validation.md: -------------------------------------------------------------------------------- 1 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV05TableauInteractive2005Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV05TableauInteractive2005Validation) 2 | 3 | --- 4 | 5 | # Tableau Interactive 2005 Validation Summaries for Travel Model One v0.5 6 | 7 | ## Roadway (Caltrans) 8 | 9 |
Learn About Tableau
10 | 11 | ## Roadway (PeMS) 12 | 13 |
Learn About Tableau
14 | 15 | ## 16 | 17 |
Learn About Tableau
18 | 19 | -- Main.LisaZorn - 23 Jan 2015 20 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV03TableauInteractive2005Validation.md: -------------------------------------------------------------------------------- 1 | 2 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV03TableauInteractive2005Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV03TableauInteractive2005Validation) 3 | 4 | --- 5 | 6 | # Tableau Interactive 2005 Validation Summaries for Travel Model One v0.3 7 | 8 | ## Roadway (Caltrans) 9 | 10 |
Learn About Tableau
11 | 12 | ## Roadway (PeMS) 13 | 14 |
Learn About Tableau
15 | 16 | ## Transit 17 | 18 |
Learn About Tableau
19 | 20 | -- Main.LisaZorn - 23 Jan 2015 21 | -------------------------------------------------------------------------------- /wiki_pages/TravelModelOneV05TableauInteractive2010Validation.md: -------------------------------------------------------------------------------- 1 | 2 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki/Home) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [Development](https://github.com/BayAreaMetro/modeling-website/wiki/Development) > [TravelModelOneV05TableauInteractive2010Validation](http://data.mtc.ca.gov/wiki_pages/TravelModelOneV05TableauInteractive2010Validation) 3 | 4 | --- 5 | 6 | # Tableau Interactive 2010 Validation Summaries for Travel Model One v0.5 7 | 8 | ## Roadway (Caltrans) 9 | 10 |
Learn About Tableau
11 | 12 | ## Roadway (PeMS) 13 | 14 |
Learn About Tableau
15 | 16 | ## Transit 17 | 18 |
Learn About Tableau
19 | 20 | -- Main.LisaZorn - 26 Jan 2015 21 | -------------------------------------------------------------------------------- /css/poole.css: -------------------------------------------------------------------------------- 1 | /* 2 | * ___ 3 | * /\_ \ 4 | * _____ ___ ___\//\ \ __ 5 | * /\ '__`\ / __`\ / __`\\ \ \ /'__`\ 6 | * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ 7 | * \ \ ,__/\ \____/\ \____//\____\ \____\ 8 | * \ \ \/ \/___/ \/___/ \/____/\/____/ 9 | * \ \_\ 10 | * \/_/ 11 | * 12 | * Designed, built, and released under MIT license by @mdo. Learn more at 13 | * https://github.com/poole/poole. 14 | */ 15 | 16 | 17 | /* 18 | * Contents 19 | * 20 | * Body resets 21 | * Custom type 22 | * Messages 23 | * Container 24 | * Masthead 25 | * Posts and pages 26 | * Pagination 27 | * Reverse layout 28 | * Themes 29 | */ 30 | 31 | 32 | /* 33 | * Body resets 34 | * 35 | * Update the foundational and global aspects of the page. 36 | */ 37 | 38 | * { 39 | -webkit-box-sizing: border-box; 40 | -moz-box-sizing: border-box; 41 | box-sizing: border-box; 42 | } 43 | 44 | html, 45 | body { 46 | margin: 0; 47 | padding: 0; 48 | } 49 | 50 | html { 51 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 52 | font-size: 11pt; 53 | line-height: 1.2; 54 | } 55 | @media (min-width: 38rem) { 56 | html { 57 | font-size: 20px; 58 | } 59 | .container { 60 | max-width: 38rem; 61 | } 62 | } 63 | @media (min-width: 60rem) { 64 | html { 65 | font-size: 16px; 66 | } 67 | .container { 68 | max-width: 60rem; 69 | } 70 | } 71 | 72 | body { 73 | color: #515151; 74 | background-color: #fff; 75 | -webkit-text-size-adjust: 100%; 76 | -ms-text-size-adjust: 100%; 77 | } 78 | 79 | /* No `:visited` state is required by default (browsers will use `a`) */ 80 | a { 81 | color: #268bd2; 82 | text-decoration: none; 83 | } 84 | /* `:focus` is linked to `:hover` for basic accessibility */ 85 | a:hover, 86 | a:focus { 87 | text-decoration: underline; 88 | } 89 | 90 | /* Headings */ 91 | h1, h2, h3, h4, h5, h6 { 92 | margin-bottom: .5rem; 93 | font-weight: bold; 94 | line-height: 1.25; 95 | color: #313131; 96 | text-rendering: optimizeLegibility; 97 | } 98 | h1 { 99 | font-size: 1.5rem; 100 | } 101 | h2 { 102 | margin-top: 1rem; 103 | font-size: 1.4rem; 104 | } 105 | h3 { 106 | margin-top: 1.3rem; 107 | font-size: 1.3rem; 108 | } 109 | h4, h5, h6 { 110 | margin-top: 1rem; 111 | font-size: 1rem; 112 | } 113 | 114 | /* Body text */ 115 | p { 116 | margin-top: 0; 117 | margin-bottom: 1rem; 118 | } 119 | 120 | strong { 121 | color: #303030; 122 | } 123 | 124 | 125 | /* Lists */ 126 | ul, ol, dl { 127 | margin-top: 0; 128 | margin-bottom: 1rem; 129 | } 130 | 131 | dt { 132 | font-weight: bold; 133 | } 134 | dd { 135 | margin-bottom: .5rem; 136 | } 137 | 138 | /* Misc */ 139 | hr { 140 | position: relative; 141 | margin: 1.5rem 0; 142 | border: 0; 143 | border-top: 1px solid #eee; 144 | border-bottom: 1px solid #fff; 145 | } 146 | 147 | abbr { 148 | font-size: 85%; 149 | font-weight: bold; 150 | color: #555; 151 | text-transform: uppercase; 152 | } 153 | abbr[title] { 154 | cursor: help; 155 | border-bottom: 1px dotted #e5e5e5; 156 | } 157 | 158 | /* Code */ 159 | code, 160 | pre { 161 | font-family: Menlo, Monaco, "Courier New", monospace; 162 | } 163 | code { 164 | padding: .25em .5em; 165 | font-size: 85%; 166 | color: #bf616a; 167 | background-color: #f9f9f9; 168 | border-radius: 3px; 169 | } 170 | pre { 171 | display: block; 172 | margin-top: 0; 173 | margin-bottom: 1rem; 174 | padding: 1rem; 175 | font-size: .8rem; 176 | line-height: 1.4; 177 | white-space: pre; 178 | white-space: pre-wrap; 179 | word-break: break-all; 180 | word-wrap: break-word; 181 | background-color: #f9f9f9; 182 | } 183 | pre code { 184 | padding: 0; 185 | font-size: 100%; 186 | color: inherit; 187 | background-color: transparent; 188 | } 189 | .highlight { 190 | margin-bottom: 1rem; 191 | border-radius: 4px; 192 | } 193 | .highlight pre { 194 | margin-bottom: 0; 195 | } 196 | 197 | /* Quotes */ 198 | blockquote { 199 | padding: .5rem 1rem; 200 | margin: .8rem 0; 201 | color: #7a7a7a; 202 | border-left: .25rem solid #e5e5e5; 203 | } 204 | blockquote p:last-child { 205 | margin-bottom: 0; 206 | } 207 | @media (min-width: 30rem) { 208 | blockquote { 209 | padding-right: 5rem; 210 | padding-left: 1.25rem; 211 | } 212 | } 213 | 214 | img { 215 | display: block; 216 | max-width: 100%; 217 | margin: 0 0 1rem; 218 | border-radius: 5px; 219 | } 220 | 221 | /* Tables */ 222 | table { 223 | font-size: 0.9rem; 224 | margin-bottom: 1rem; 225 | border: 1px solid #e5e5e5; 226 | border-collapse: collapse; 227 | } 228 | td, 229 | th { 230 | padding: .25rem .5rem; 231 | border: 1px solid #e5e5e5; 232 | } 233 | tbody tr:nth-child(odd) td, 234 | tbody tr:nth-child(odd) th { 235 | background-color: #f9f9f9; 236 | } 237 | 238 | 239 | /* 240 | * Custom type 241 | * 242 | * Extend paragraphs with `.lead` for larger introductory text. 243 | */ 244 | 245 | .lead { 246 | font-size: 1.25rem; 247 | font-weight: 300; 248 | } 249 | 250 | 251 | /* 252 | * Messages 253 | * 254 | * Show alert messages to users. You may add it to single elements like a `

`, 255 | * or to a parent if there are multiple elements to show. 256 | */ 257 | 258 | .message { 259 | margin-bottom: 1rem; 260 | padding: 1rem; 261 | color: #717171; 262 | background-color: #f9f9f9; 263 | } 264 | 265 | 266 | /* 267 | * Container 268 | * 269 | * Center the page content. 270 | */ 271 | 272 | .container { 273 | padding-left: 1rem; 274 | padding-right: 1rem; 275 | margin-left: auto; 276 | margin-right: auto; 277 | } 278 | 279 | 280 | /* 281 | * Masthead 282 | * 283 | * Super small header above the content for site name and short description. 284 | */ 285 | 286 | .masthead { 287 | padding-top: 1rem; 288 | padding-bottom: 1rem; 289 | margin-bottom: 3rem; 290 | } 291 | .masthead-title { 292 | margin-top: 0; 293 | margin-bottom: 0; 294 | color: #505050; 295 | } 296 | .masthead-title a { 297 | color: #505050; 298 | } 299 | .masthead-title small { 300 | font-size: 75%; 301 | font-weight: 400; 302 | color: #c0c0c0; 303 | letter-spacing: 0; 304 | } 305 | 306 | 307 | /* 308 | * Posts and pages 309 | * 310 | * Each post is wrapped in `.post` and is used on default and post layouts. Each 311 | * page is wrapped in `.page` and is only used on the page layout. 312 | */ 313 | 314 | .page, 315 | .post { 316 | margin-bottom: 4em; 317 | } 318 | 319 | /* Blog post or page title */ 320 | .page-title, 321 | .post-title, 322 | .post-title a { 323 | color: #303030; 324 | } 325 | .page-title, 326 | .post-title { 327 | margin-top: 0; 328 | } 329 | 330 | /* Meta data line below post title */ 331 | .post-date { 332 | display: block; 333 | margin-top: -.5rem; 334 | margin-bottom: 1rem; 335 | color: #9a9a9a; 336 | } 337 | 338 | /* Related posts */ 339 | .related { 340 | padding-top: 2rem; 341 | padding-bottom: 2rem; 342 | border-top: 1px solid #eee; 343 | } 344 | .related-posts { 345 | padding-left: 0; 346 | list-style: none; 347 | } 348 | .related-posts h3 { 349 | margin-top: 0; 350 | } 351 | .related-posts li small { 352 | font-size: 75%; 353 | color: #999; 354 | } 355 | .related-posts li a:hover { 356 | color: #268bd2; 357 | text-decoration: none; 358 | } 359 | .related-posts li a:hover small { 360 | color: inherit; 361 | } 362 | 363 | 364 | /* 365 | * Pagination 366 | * 367 | * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when 368 | * there are no more previous or next posts to show. 369 | */ 370 | 371 | .pagination { 372 | overflow: hidden; /* clearfix */ 373 | margin-left: -1rem; 374 | margin-right: -1rem; 375 | font-family: "PT Sans", Helvetica, Arial, sans-serif; 376 | color: #ccc; 377 | text-align: center; 378 | } 379 | 380 | /* Pagination items can be `span`s or `a`s */ 381 | .pagination-item { 382 | display: block; 383 | padding: 1rem; 384 | border: 1px solid #eee; 385 | } 386 | .pagination-item:first-child { 387 | margin-bottom: -1px; 388 | } 389 | 390 | /* Only provide a hover state for linked pagination items */ 391 | a.pagination-item:hover { 392 | background-color: #f5f5f5; 393 | } 394 | 395 | @media (min-width: 30rem) { 396 | .pagination { 397 | margin: 3rem 0; 398 | } 399 | .pagination-item { 400 | float: left; 401 | width: 50%; 402 | } 403 | .pagination-item:first-child { 404 | margin-bottom: 0; 405 | border-top-left-radius: 4px; 406 | border-bottom-left-radius: 4px; 407 | } 408 | .pagination-item:last-child { 409 | margin-left: -1px; 410 | border-top-right-radius: 4px; 411 | border-bottom-right-radius: 4px; 412 | } 413 | } 414 | -------------------------------------------------------------------------------- /data-repository.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Data Repository" 4 | permalink: /data-repository/ 5 | --- 6 | 7 | [Home](https://github.com/BayAreaMetro/modeling-website/wiki) > [TravelModel](https://github.com/BayAreaMetro/modeling-website/wiki/TravelModel) > [DataRepository](http://data.mtc.ca.gov/data-repository/) 8 | 9 | --- 10 | 11 | # Data Repository 12 | 13 | * Technical model files for key scenarios 14 | 15 | ## Travel Model Data 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 |
Scenario IDForecast YearModel VersionProjectLand UseNetworksSampleNotes
2005_01_XXX 2005 0.1 Development Projections 2009 Year 2006 100 pct Second round of calibration and validation
2000_03_YYY 2000 0.3 Year 2000 100 pct Third round of calibration and validation
2005_03_YYY 2005 0.3 Year 2006 100 pct
2010_03_YYY 2010 0.3 2013 RTP/SCS 2013 RTP/SCS "Focused Growth" scenario Year 2010 100 pct Land use data reflects 2010 census results
2015_03_116 2015 0.3 PlanBayArea Year 2015 50 pct Adopted 2013 RTP/SCS
2020_03_116 2020 0.3 Year 2020 50 pct
2030_03_116 2030 0.3 Year 2030 50 pct
2035_03_116 2035 0.3 Year 2035 50 pct
2040_03_116 2040 0.3 Year 2040 50 pct
2000_04_XXX 2000 0.4 Development Projections 2009 Year 2000 100 pct Comparison to Version 0.3
2005_04_YYY 2005 0.4 Year 2006 100 pct
2010_04_ZZZ 2010 0.4 2013 RTP/SCS "Focused Growth" scenario with age distribution correction Year 2010 100 pct
2005_05_003 2005 0.5 2017 RTP/SCS PlanBayArea2040 Year 2006 100 pct Adopted 2017 RTP/SCS
2010_06_003 2010 0.6 Year 2010 100 pct
2015_06_002 2015 0.6 Year 2015 50 pct
2020_06_694 2020 0.6 Year 2020 50 pct
2030_06_694 2030 0.6 Year 2030 50 pct
2035_06_694 2035 0.6 Year 2035 50 pct
2040_06_694 2040 0.6 Year 2040 50 pct
2030_06_694_Amd1 2030 0.6 2017 RTP/SCS Amd1 Year 2030 50 pct Amendment 1 to Plan Bay Area 2040 - Highway 101 Managed Lanes
2035_06_694_Amd1 2035 0.6 Year 2035 50 pct
2040_06_694_Amd1 2040 0.6 Year 2040 50 pct
2030_06_694_Amd2 2030 0.6 2017 RTP/SCS Amd2 Year 2030 50 pct Amendment 2 to Plan Bay Area 2040 - I-680 Express Lanes Gap Closure
2035_06_694_Amd2 2035 0.6 Year 2035 50 pct
2040_06_694_Amd2 2040 0.6 Year 2040 50 pct
2005_TM152_IPA_03 2005 1.5.2 2021 RTP/SCS Year 2005 50 pct Adopted 2021 RTP/SCS
2015_TM152_IPA_17 2015 1.5.2 Census via petrale Year 2015 50 pct
2035_TM152_FBP_Plus_24 2035 1.5.2 Final Blueprint Year 2035 50 pct
2050_TM152_FBP_PlusCrossing_24 2050 1.5.2 Year 2050 50 pct
269 | --------------------------------------------------------------------------------