Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media

Size: px
Start display at page:

Download "Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media"

Transcription

1 Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media Xinyue Liu, Xiangnan Kong, Yanhua Li Worcester Polytechnic Institute February 22, / 34

2 About me 2 / 34

3 About me 3 / 34

4 About me I only know Python (2), and it is great. I think JavaScript, Ruby, Haskell... are cool, but I am too lazy to learn them. I hate C++. 4 / 34

5 My Research Interests Social Network Analysis [CIKM 16, SDM 17b] Recommender Systems [SDM 16] Brain Network [SDM 17a, IJCNN17] 5 / 34

6 Overview 1 Motivation 2 Related Works 3 CTP Method 4 Experiments 5 Summary 6 / 34

7 Why Traffic Prediction? Excessive traffic causes travel delays, resource wasting, and pollution. In 2011, traffic congestion costs urban Americans 5.5 billion hours of travel delay, 2.9 billion gallons of extra fuel, for a total congestion cost of $121 billion. 7 / 34

8 Why (Location-Based) Social Media? Location Associations Traffic jam on Storrow Drive, Boston, Massachusetts Temporal Data 8 AM 4 PM 11 PM Semantic Data Traffic Condition Sensor Traffic Networks Location-Based Social Media Location-Based Social Media (LBSM) is popular, can be used as mobile sensors. Semantic and spatial information from social media can be helpful. 8 / 34

9 Challenges Lack of historical traffic data in partial regions. In real-world road systems, only a small fraction of the road segments are deployed with sensors. It is difficult to predict traffic without traffic history. Sparsity of LBSM information at fine granularity. Table: Average # of tweets in each region under different spatiotemporal resolutions Temporal Resolution Spatial Resolution Ave. #Tweets 12 hours ,113 1 hour 1 1 3,926 1 hour 2 2 1,306 1 hour hour hour / 34

10 Conventional Methods Auto Regression [Smith and Demetsky, 1997, Journal of Transportation Engineering] Tweet Semantics [He et al.,2013, IJCAI] 10 / 34

11 Auto Regression [Smith and Demetsky, 1997] Prediction spatio-temporal dependencies Historical Traffic Data t time v (t) g = α + β 1 v (t 1) g + β 2 v (t 2) g Fail to work for locations without traffic history. 11 / 34

12 Tweet Semantics [He et al.,2013] Social Media Prediction e a c b d e a c b d e a c Historical Traffic Data t time Consider each location independently. Extract tweet semantics as bag-of-words feature for each location during a 12-hour time window. Build an auto regression-like model using both traffic history and tweet semantics. Fail to work for locations without traffic history. 12 / 34

13 Illustration of CTP [Our Method] road network a b c d e Local-based Social Media time a c b congestion Prediction spatio-temporal dependencies e d regions without any sensor Historical Traffic Data t time Incorporate LBSM information at finer spatiotemporal granularity. Consider different locations collectively. It works for locations without traffic history! 13 / 34

14 Social Media Semantic Vectors 14 / 34

15 Spatio-temporal Dependencies: I v i (t 1) t-1 v j (t 1) v q (t 1) v p (t 1) v i (t ) t v j (t ) v q (t ) v p (t ) Same as the traffic history in auto regression model. 15 / 34

16 Spatio-temporal Dependencies: II v i (t 1) t-1 v j (t 1) v q (t 1) v p (t 1) v i (t ) t v j (t ) v q (t ) v p (t ) Spatial dependency within a time window. 16 / 34

17 Spatio-temporal Dependencies: III v i (t 1) t-1 v j (t 1) v q (t 1) v p (t 1) v i (t ) t v j (t ) v q (t ) v p (t ) Spatial dependency across time windows. 17 / 34

18 CTP Method t-2 t-1 Training v " v & v ' Response LBSM Semantics assume time lag = 2 for the simplicity here. response variable (average speed, total traffic flow, etc). 18 / 34

19 CTP Method t-2 t-1 t-2 t-1 Training v " v & v ' Response LBSM Semantics Dependency I (Traffic History) 19 / 34

20 CTP Method t-2 t-1 t-2 t-1 v " ($%&) v " ($%() v ) ($%&) v ) ($%() v * ($%&) v * ($%() Training v " v ) v * Retrieve the historical data Response LBSM Semantics Dependency I (Traffic History) 20 / 34

21 CTP Method t-2 t-1 t-2 t-1 t Training v " v & v ' Response LBSM Semantics Dependency I (Traffic History) Dependency II (Neighbors Traffic) 21 / 34

22 CTP Method t-2 t-1 t-2 t-1 t t-2 t-1 Training v " v & v ' Response LBSM Semantics Dependency I (Traffic History) Dependency II (Neighbors Traffic) Dependency III (Neighbors Traffic History) 22 / 34

23 CTP Method t-2 t-1 t-2 t-1 t t-2 t-1 Training v 6 v " v * Compute using an aggregation function (e.g. average) Response LBSM Semantics Dependency I Dependency II Response = Speed, aggregation function = AVG. v " = 50, v* = 45, v, and v- are unobserved. The Dependency-II Feature for node A at time t is: (/ (1) (1) 0 + / 2 ) = Dependency III 23 / 34

24 CTP Method t-2 t-1 t-2 t-1 t t-2 t-1 Training (only observed) Response LBSM Semantics Dependency I Dependency II t-1 t t-1 t t+1 t-1 t Bootstrap (unobserved regions) Dependency III 24 / 34

25 CTP Method t-2 t-1 t-2 t-1 t t-2 t-1 Training (only observed) Response LBSM Semantics Dependency I Dependency II t-1 t t-1 t t+1 t-1 t Bootstrap (unobserved regions) Dependency III 25 / 34

26 CTP Method t-2 t-1 t-2 t-1 t t-2 t-1 Training (only observed) t-1 t t-1 t t+1 t-1 t Iterative Inference Response Keep updating LBSM Semantics Dependency I 0 0 Keep updating (unobserved regions) Dependency II Dependency III 26 / 34

27 Dataset Traffic Data Collect from the California Performance Measurement System(PeMS) between October 19 and November 28, ,102,272 entries of traffic records. LBSM Data Collect tweets from the same area during the same time range using the Twitter streaming API. This collection results in a total number of 2,648,446 tweets. 27 / 34

28 Compared Methods TDO[Smith and Demetsky, 1997]: Auto regression model using traffic history. TDO-floor[ ]: Similar to TDO, except it uses full traffic history. TwSeO: A degenerated version of [He et al. 2013], using tweets semantics. 28 / 34

29 Experimental Setting Partition the data into two parts, with the beginning (1 1 u ) as the training set and the remaining 1 u as the test set (u = 3,..., 7). k-fold cross-validation is used to randomly sample 1/k regions as unobserved (k = 2, 3, 4, 5). Root Mean Square Error (RMSE) is used to evaluate the performance. 29 / 34

30 Results our method lower Is better TDO-floor performs the best by using full traffic history. The proposed CTP outperforms TDO and TwSeO. The result shows the effectiveness of incorporating tweets semantics into the collective inference model. 30 / 34

31 The effect of r lower Is better our method Sparser Information in LBSM Figure: Test Ratio = 1/7 (u = 7) 31 / 34

32 The effect of k our method lower Is better Less Unobserved Regions Figure: u = 6, r = 5 32 / 34

33 Summary Problem Studied Traffic prediction with partially observed traffic history. Proposed Model Using LBSM data to alleviate the issue of absent traffic history. A collective inference model that exploits the complex spatio-temporal dependencies between road segments as well as incorporates LBSM semantics in the prediction. 33 / 34

34 Q&A Xinyue Liu Xiangnan Kong Yanhua Li 34 / 34

Inventory Routing for Bike Sharing Systems

Inventory Routing for Bike Sharing Systems Inventory Routing for Bike Sharing Systems mobil.tum 2016 Transforming Urban Mobility Technische Universität München, June 6-7, 2016 Jan Brinkmann, Marlin W. Ulmer, Dirk C. Mattfeld Agenda Motivation Problem

More information

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Chris Paciorek and Yang Liu Departments of Biostatistics and Environmental

More information

Incremental Joint Extraction of Entity Mentions and Relations

Incremental Joint Extraction of Entity Mentions and Relations Incremental Joint Extraction of Entity Mentions and Relations Qi Li and Heng Ji {liq7,jih}@rpi.edu Rensselaer Polytechnic Institute End to End Relation Extraction Baltimore is the largest city in the U.S.

More information

Optimal Vehicle to Grid Regulation Service Scheduling

Optimal Vehicle to Grid Regulation Service Scheduling Optimal to Grid Regulation Service Scheduling Christian Osorio Introduction With the growing popularity and market share of electric vehicles comes several opportunities for electric power utilities, vehicle

More information

The pathway to self-driving vehicles: Disconnects between human capabilities and advanced vehicle systems?

The pathway to self-driving vehicles: Disconnects between human capabilities and advanced vehicle systems? The pathway to self-driving vehicles: Disconnects between human capabilities and advanced vehicle systems? Bryan Reimer, Ph.D. MIT AgeLab & New England University Transportation Center JITI Self-Driving

More information

The Largest Low Emission Zone of Europe: Traffic and Air Quality in London

The Largest Low Emission Zone of Europe: Traffic and Air Quality in London The Largest Low Emission Zone of Europe: Traffic and Air Quality in London Hendrik Wolff and Muxin Zhai University of Washington November 23, 2014 H.Wolff, M.Zhai (UW) London LEZ November 23, 2014 1 /

More information

bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets

bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets bcharge: Data-Driven Real-Time Charging Scheduling for Large-Scale Electric Bus Fleets Guang Wang1, Xiaoyang Xie1, Fan Zhang2, Yunhuai Liu3, Desheng Zhang1 guang.wang@rutgers.edu Rutgers University1, SIAT2,

More information

Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy

Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy Ankur Sarker, Zhuozhao Li, William Kolodzey,, and Haiying Shen Department of Computer

More information

Shared Mobility and Automated Vehicles: Policy and Data Sharing

Shared Mobility and Automated Vehicles: Policy and Data Sharing Shared Mobility and Automated Vehicles: Policy and Data Sharing Adam Stocker Researcher TSRC, UC Berkeley Email: adstocker@berkeley.edu Twitter: adstocker Overview Introduction and defining shared mobility

More information

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH APPENDIX G ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH INTRODUCTION Studies on the effect of median width have shown that increasing width reduces crossmedian crashes, but the amount of reduction varies

More information

Welcome. Presenter/Co-Author: Jason Shykowski P.E., T.E. Traffic Operations Manager City of Roseville NorCal ITE Past-President.

Welcome. Presenter/Co-Author: Jason Shykowski P.E., T.E. Traffic Operations Manager City of Roseville NorCal ITE Past-President. Welcome Presenter/Co-Author: Jason Shykowski P.E., T.E. Traffic Operations Manager City of Roseville NorCal ITE Past-President Lead Author: Matt Weir, P.E., T.E., PTOE Kimley-Horn and Associates, Inc.

More information

Regularized Linear Models in Stacked Generalization

Regularized Linear Models in Stacked Generalization Regularized Linear Models in Stacked Generalization Sam Reid and Greg Grudic Department of Computer Science University of Colorado at Boulder USA June 11, 2009 Reid & Grudic (Univ. of Colo. at Boulder)

More information

Supporting Information

Supporting Information 1 Supporting Information 2 3 4 5 6 7 8 9 10 11 12 Daily estimation of ground-level PM 2.5 concentrations over Beijing using 3 km resolution MODIS AOD Yuanyu Xie 1, Yuxuan Wang* 1,2,3, Kai Zhang 4, Wenhao

More information

RE: Docket ID No. EPA-HQ-OAR

RE: Docket ID No. EPA-HQ-OAR October 5, 2017 Submitted via www.regulations.gov Docket ID No. EPA-HQ-OAR-2015-0827 Christopher Lieske Office of Transportation and Air Quality (OTAQ), Environmental Protection Agency 2000 Traverwood

More information

DOE s Focus on Energy Efficient Mobility Systems

DOE s Focus on Energy Efficient Mobility Systems DOE s Focus on Energy Efficient Mobility Systems Mark Smith Vehicle Technologies Office NASEO Smart Mobility Webinar October 30, 2017 MOBILITY IS FOUNDATIONAL TO OUR WAY OF LIFE 2 CONVERGING TRENDS ARE

More information

Example #1: One-Way Independent Groups Design. An example based on a study by Forster, Liberman and Friedman (2004) from the

Example #1: One-Way Independent Groups Design. An example based on a study by Forster, Liberman and Friedman (2004) from the Example #1: One-Way Independent Groups Design An example based on a study by Forster, Liberman and Friedman (2004) from the Journal of Personality and Social Psychology illustrates the SAS/IML program

More information

The Road to Automated Vehicles. Audi of America Government Affairs

The Road to Automated Vehicles. Audi of America Government Affairs The Road to Automated Vehicles Audi of America Government Affairs 10.2017 A new future? 100 years of vertical autonomy It took 40 years to change FATALITIES Elevator: 31 per year Vehicles: 100 per day

More information

Online Learning and Optimization for Smart Power Grid

Online Learning and Optimization for Smart Power Grid 1 2016 IEEE PES General Meeting Panel on Domain-Specific Big Data Analytics Tools in Power Systems Online Learning and Optimization for Smart Power Grid Seung-Jun Kim Department of Computer Sci. and Electrical

More information

Real-time Bus Tracking using CrowdSourcing

Real-time Bus Tracking using CrowdSourcing Real-time Bus Tracking using CrowdSourcing R & D Project Report Submitted in partial fulfillment of the requirements for the degree of Master of Technology by Deepali Mittal 153050016 under the guidance

More information

Smart systems. Smart traffic. Siemens Intelligent Traffic Systems

Smart systems. Smart traffic. Siemens Intelligent Traffic Systems Smart systems. Smart traffic. Siemens Intelligent Traffic Systems Unrestricted Siemens AG 2019 siemens.com/traffic The world of mobility is facing tremendous challenges We are facing the next mobility

More information

Investigation of the Impact the I-94 ATM System has on the Safety of the I-94 Commons High Crash Area

Investigation of the Impact the I-94 ATM System has on the Safety of the I-94 Commons High Crash Area Investigation of the Impact the I-94 ATM System has on the Safety of the I-94 Commons High Crash Area John Hourdos and Stephen Zitzow Minnesota Traffic Observatory Overview Project Objectives I- 94 High

More information

The Degrees of Freedom of Partial Least Squares Regression

The Degrees of Freedom of Partial Least Squares Regression The Degrees of Freedom of Partial Least Squares Regression Dr. Nicole Krämer TU München 5th ESSEC-SUPELEC Research Workshop May 20, 2011 My talk is about...... the statistical analysis of Partial Least

More information

A Personalized Highway Driving Assistance System

A Personalized Highway Driving Assistance System A Personalized Highway Driving Assistance System Saina Ramyar 1 Dr. Abdollah Homaifar 1 1 ACIT Institute North Carolina A&T State University March, 2017 aina Ramyar, Dr. Abdollah Homaifar (NCAT) A Personalized

More information

Improving moving jam detection performance. with V2I communication

Improving moving jam detection performance. with V2I communication Improving moving jam detection performance with V2I communication Bart Netten Senior Researcher, TNO Oude Waalsdorperweg 63, 2597 AK The Hague, The Netherlands, +31 888 666 310, bart.netten@tno.nl Andreas

More information

CONNECTED PROPULSION - THE FUTURE IS NOW

CONNECTED PROPULSION - THE FUTURE IS NOW MOTOR & UMWELT 2018 ENGINE & ENVIRONMENT 2018 CONNECTED PROPULSION - THE FUTURE IS NOW Larry Nitz General Motors 9 We re at a transformative time in automotive history, but a lot of innovation is already

More information

DESIGN OF SIMULATION TECHNIQUES FOR DATA PREDICTION IN PUBLIC TRANSPORTATION GREGORIUS VIKO & FRISKA NATALIA FERDINAND

DESIGN OF SIMULATION TECHNIQUES FOR DATA PREDICTION IN PUBLIC TRANSPORTATION GREGORIUS VIKO & FRISKA NATALIA FERDINAND International Journal of Computer Science Engineering and Information Technology Research (IJCSEITR) ISSN (P): 2249-6831; ISSN (E): 2249-7943 Vol. 7, Issue 3, Jun 2017, 33-38 TJPRC Pvt. Ltd. DESIGN OF

More information

Change in Vehicle Occupancy Used in Mobility Monitoring Efforts

Change in Vehicle Occupancy Used in Mobility Monitoring Efforts Change in Vehicle Occupancy Used in Mobility Monitoring Efforts By Phil Lasley, PhD, AICP, PMP Assistant Research Scientist Mobility Analysis Program Texas A&M Transportation Institute August 2017 Summary

More information

Distribution Forecasting Working Group

Distribution Forecasting Working Group Distribution Forecasting Working Group Electric Vehicle Uncertainty and Proposals to Improve DER Methods Meeting 2: May 2, 2018 READ AND DELETE For best results with this template, use PowerPoint 2003

More information

Reducing Energy Consumption and Emissions Through Congestion Management

Reducing Energy Consumption and Emissions Through Congestion Management Reducing Energy Consumption and Emissions Through Congestion Management Kanok Boriboonsomsin University of California Riverside The Transportation - Land Use - Environment Connection UCLA Conference Center

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences Pothole Detection Using Android Smartphone with a Video Camera 1 Youngtae Jo *, 2 Seungki Ryu 1 Korea Institute of Civil Engineering and Building Technology, Korea E-mail: 1 ytjoe@kict.re.kr, 2 skryu@kict.re.kr

More information

INNOVATION AND REGULATION IN SUSTAINABLE MOBILITY, CHALLENGES AND OPPORTUNITIES

INNOVATION AND REGULATION IN SUSTAINABLE MOBILITY, CHALLENGES AND OPPORTUNITIES DASTU, POLITECNICO DI MILANO MILAN, JUNE 20TH-22ND, 2018 INNOVATION AND REGULATION IN SUSTAINABLE MOBILITY, CHALLENGES AND OPPORTUNITIES GABRIELE GREA CERTET, CENTER FOR RESEARCH ON REGIONAL ECONOMICS,

More information

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization Journal of Applied Science and Engineering, Vol. 20, No. 4, pp. 483 490 (2017) DOI: 10.6180/jase.2017.20.4.10 The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized

More information

European Conference on Nanoelectronics and Embedded Systems for Electric Mobility. EV recharging ecosystem and services for a sustainable e_mobility

European Conference on Nanoelectronics and Embedded Systems for Electric Mobility. EV recharging ecosystem and services for a sustainable e_mobility European Conference on Nanoelectronics and Embedded Systems for Electric Mobility ecocity emotion 24-25 th September 2014, Erlangen, Germany EV recharging ecosystem and services for a sustainable e_mobility

More information

Accelerating the Development of Expandable Liner Hanger Systems using Abaqus

Accelerating the Development of Expandable Liner Hanger Systems using Abaqus Accelerating the Development of Expandable Liner Hanger Systems using Abaqus Ganesh Nanaware, Tony Foster, Leo Gomez Baker Hughes Agenda Introduction Liner Hanger System FEA objectives and FE Analysis

More information

SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC

SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC Fatih Korkmaz Department of Electric-Electronic Engineering, Çankırı Karatekin University, Uluyazı Kampüsü, Çankırı, Turkey ABSTRACT Due

More information

Online Learning and Optimization for Smart Power Grid

Online Learning and Optimization for Smart Power Grid 1 2016 IEEE PES General Meeting Panel on Domain-Specific Big Data Analytics Tools in Power Systems Online Learning and Optimization for Smart Power Grid Seung-Jun Kim Department of Computer Sci. and Electrical

More information

Enabling Technologies for Autonomous Vehicles

Enabling Technologies for Autonomous Vehicles Enabling Technologies for Autonomous Vehicles Sanjiv Nanda, VP Technology Qualcomm Research August 2017 Qualcomm Research Teams in Seoul, Amsterdam, Bedminster NJ, Philadelphia and San Diego 2 Delivering

More information

Hydraulic Flywheel Accumulator for Mobile Energy Storage

Hydraulic Flywheel Accumulator for Mobile Energy Storage Hydraulic Flywheel Accumulator for Mobile Energy Storage Paul Cronk University of Minnesota October 14 th, 2015 I. Overview Outline I. Background on Mobile Energy Storage II. Hydraulic Flywheel Accumulator

More information

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here.

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. About this Book... ix About the Author... xiii Acknowledgments...xv Chapter 1 Introduction...

More information

Direct Injection Ethanol Boosted Gasoline Engines: Biofuel Leveraging For Cost Effective Reduction of Oil Dependence and CO 2 Emissions

Direct Injection Ethanol Boosted Gasoline Engines: Biofuel Leveraging For Cost Effective Reduction of Oil Dependence and CO 2 Emissions Direct Injection Ethanol Boosted Gasoline Engines: Biofuel Leveraging For Cost Effective Reduction of Oil Dependence and CO 2 Emissions D.R. Cohn* L. Bromberg* J.B. Heywood Massachusetts Institute of Technology

More information

Growing Charging Station Networks with Trajectory Data Analytics

Growing Charging Station Networks with Trajectory Data Analytics Growing Charging Station Networks with Trajectory Data Analytics Yanhua Li 1, Jun Luo 2, Chi-Yin Chow 3, Kam-Lam Chan 3, Ye Ding 4, and Fan Zhang 2 1WPI, CAS 2, CityU 3, HKUST 4 Contact: yli15@wpi.edu

More information

Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses

Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses EVS28 KINTEX, Korea, May 3-6, 2015 Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses Ming CHI, Hewu WANG 1, Minggao OUYANG State Key Laboratory of Automotive Safety and

More information

DS504/CS586: Big Data Analytics --Presentation Example

DS504/CS586: Big Data Analytics --Presentation Example Welcome to DS504/CS586: Big Data Analytics --Presentation Example Prof. Yanhua Li Time: 6:00pm 8:50pm R. Location: AK233 Spring 2018 Project1 Timeline and Evaluation Start: Week 2, 1/18 R Proposal: Week

More information

March 2, 2017 Integrating Transportation Planning, Project Development, and Project Programming

March 2, 2017 Integrating Transportation Planning, Project Development, and Project Programming COORDINATION WITH VDOT DISTRICTS TO DELIVER IMPLEMENTABLE IMPROVEMENT PROJECTS March 2, 2017 Integrating Transportation Planning, Project Development, and Project Programming PRESENTATION OUTLINE What

More information

U.S. GASOLINE AND DISTILLATE FUELS UPDATE - DECEMBER 20, 2017

U.S. GASOLINE AND DISTILLATE FUELS UPDATE - DECEMBER 20, 2017 U.S. GASOLINE AND DISTILLATE FUELS UPDATE - DECEMBER 20, 2017 PRICE TRENDS Monday, December 18 According to the Energy Information Administration (EIA), the average U.S. retail price for regular grade

More information

Evaluation of the Adequacy of Lithium Resources for Fusion Reactor with the Aspect of Li-ion Battery-Driven Vehicles

Evaluation of the Adequacy of Lithium Resources for Fusion Reactor with the Aspect of Li-ion Battery-Driven Vehicles Evaluation of the Adequacy of Lithium Resources for Fusion Reactor with the Aspect of Li-ion Battery-Driven Vehicles Chao Wang Contributed by FDS Team Key Laboratory of Neutronics and Radiation Safety

More information

Q&A ON EMISSIONS TESTING

Q&A ON EMISSIONS TESTING Q&A ON EMISSIONS TESTING 1. How does ACEA react to the VW situation?... 1 2. How does the current lab test work?... 1 3. Why are there differences between the lab tests and real-world emissions?... 3 4.

More information

Department of Civil Engineering The University of British Columbia. Nicolas Saunier

Department of Civil Engineering The University of British Columbia. Nicolas Saunier Department of Civil Engineering The University of British Columbia TRUCK SIGNAL PRIORITY Nicolas Saunier Wook Kang Why Truck Priority? Reduce Rd the Cost of Goods Transportation Reduce Red Light Running

More information

Institute for Cyber Security. Authorization and Trust in the Cloud

Institute for Cyber Security. Authorization and Trust in the Cloud Institute for Cyber Security Authorization and Trust in the Cloud Prof. Ravi Sandhu Executive Director and Endowed Chair USECSW May 29, 2013 Joint work with Bo Tang and Qi Li ravi.sandhu@utsa.edu www.profsandhu.com

More information

Data envelopment analysis with missing values: an approach using neural network

Data envelopment analysis with missing values: an approach using neural network IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.2, February 2017 29 Data envelopment analysis with missing values: an approach using neural network B. Dalvand, F. Hosseinzadeh

More information

Passenger density and flow analysis and city zones and bus stops classification for public bus service management

Passenger density and flow analysis and city zones and bus stops classification for public bus service management Passenger density and flow analysis and city zones and bus stops classification for public bus service management Raul S. Barth, Renata Galante 1 Instituto de Informática Universidade Federal do Rio Grande

More information

ParkNet: Drive-by Sensing of Road-side Parking Statistics

ParkNet: Drive-by Sensing of Road-side Parking Statistics ParkNet: Drive-by Sensing of Road-side Parking Statistics Published by: Mathur, Suhas, Tong Jin, Nikhil Kasturirangan, Janani Chandrasekaran, Wenzhi Xue, Marco Gruteser, and Wade Trappe in Mobisys 2010.

More information

Spatial and Temporal Analysis of Real-World Empirical Fuel Use and Emissions

Spatial and Temporal Analysis of Real-World Empirical Fuel Use and Emissions Spatial and Temporal Analysis of Real-World Empirical Fuel Use and Emissions Extended Abstract 27-A-285-AWMA H. Christopher Frey, Kaishan Zhang Department of Civil, Construction and Environmental Engineering,

More information

Using the MOVES Model to Do a Project Level PM Air Quality Analysis 2010 TRB Environment and Energy Research Conference Raleigh, North Carolina

Using the MOVES Model to Do a Project Level PM Air Quality Analysis 2010 TRB Environment and Energy Research Conference Raleigh, North Carolina Using the MOVES Model to Do a Project Level PM Air Quality Analysis 2010 TRB Environment and Energy Research Conference Raleigh, North Carolina Michael Claggett FHWA Resource Center June 7, 2010 Overview

More information

ISO on Background. Energy-efficiency forecast. Anne George. Stephen J. Rourke VICE PRESIDENT, SYSTEM PLANNING DECEMBER 12, 2012

ISO on Background. Energy-efficiency forecast. Anne George. Stephen J. Rourke VICE PRESIDENT, SYSTEM PLANNING DECEMBER 12, 2012 DECEMBER 12, 2012 ISO on Background Energy-efficiency forecast Anne George VICE PRESIDENT, EXTERNAL AFFAIRS &CORPORATE COMMUNICATIONS Stephen J. Rourke VICE PRESIDENT, SYSTEM PLANNING Agenda 11:00-11:05

More information

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Qiao Xiang 1, Fanxin Kong 1, Xue Liu 1, Xi Chen 1, Linghe Kong 1 and Lei Rao 2 1 School of Computer Science, McGill University

More information

Smart Meter Cost Recovery

Smart Meter Cost Recovery Smart Meter Cost Recovery Presented by Adam Cooper National Governor s Association Center for Best Practices Webinar #2: How will the Smart Grid be paid for? December 16, 2010 Utility-scale smart meter

More information

Using PEMs and Local Vehicle Activity Measurements to Improve Inventories and Policy Development in Developing Countries. ISSRC March 24, 2010

Using PEMs and Local Vehicle Activity Measurements to Improve Inventories and Policy Development in Developing Countries. ISSRC March 24, 2010 Using PEMs and Local Vehicle Activity Measurements to Improve Inventories and Policy Development in Developing Countries ISSRC March 24, 2010 The Air Quality Management Process Typical Overall Contributions

More information

Intelligent Fault Analysis in Electrical Power Grids

Intelligent Fault Analysis in Electrical Power Grids Intelligent Fault Analysis in Electrical Power Grids Biswarup Bhattacharya (University of Southern California) & Abhishek Sinha (Adobe Systems Incorporated) 2017 11 08 Overview Introduction Dataset Forecasting

More information

Brain on Board: From safety features to driverless cars

Brain on Board: From safety features to driverless cars Brain on Board: From safety features to driverless cars Robyn Robertson, M.C.A. President & CEO Traffic Injury Research Foundation 18 th Annual Not By Accident Conference. London, ON, October 18 th, 2016

More information

March 18, Samira Monshi Seungwon Noh Wilfredo Rodezno Brian Skelly

March 18, Samira Monshi Seungwon Noh Wilfredo Rodezno Brian Skelly March 18, 2013 Samira Monshi Seungwon Noh Wilfredo Rodezno Brian Skelly Overview Project Objective Stakeholder Feedback Review of Alternative Jet Fuel Supply Chain Options Under Consideration 2 Project

More information

Perspectives for Sustainable Transport: Modernizing and Greening Urban Taxi Fleets

Perspectives for Sustainable Transport: Modernizing and Greening Urban Taxi Fleets Perspectives for Sustainable Transport: Modernizing and Greening Urban Taxi Fleets - a Preliminary Assessment - Jose Monroy and Ralph Wahnschafft Emerging Issues Branch Division for Sustainable Development

More information

Discovery of Design Methodologies. Integration. Multi-disciplinary Design Problems

Discovery of Design Methodologies. Integration. Multi-disciplinary Design Problems Discovery of Design Methodologies for the Integration of Multi-disciplinary Design Problems Cirrus Shakeri Worcester Polytechnic Institute November 4, 1998 Worcester Polytechnic Institute Contents The

More information

Copyright 2016 by Innoviz All rights reserved. Innoviz

Copyright 2016 by Innoviz All rights reserved. Innoviz Innoviz 0 Cutting Edge 3D Sensing to Enable Fully Autonomous Vehicles May 2017 Innoviz 1 Autonomous Vehicles Industry Overview Innoviz 2 Autonomous Vehicles From Vision to Reality Uber Google Ford GM 3

More information

Acceleration Behavior of Drivers in a Platoon

Acceleration Behavior of Drivers in a Platoon University of Iowa Iowa Research Online Driving Assessment Conference 2001 Driving Assessment Conference Aug 1th, :00 AM Acceleration Behavior of Drivers in a Platoon Ghulam H. Bham University of Illinois

More information

AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION

AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION Montasir Abbas, Virginia Tech (with contributions from past and present VT-SCORES students, including: Zain Adam, Sahar

More information

Foothill Transit Battery Electric Bus Performance Results

Foothill Transit Battery Electric Bus Performance Results Foothill Transit Battery Electric Bus Performance Results Leslie Eudy Matt Jeffers EV Summit, Cocoa Beach, Florida October 18, 2016 Presentation Outline NREL overview Zero emission bus (ZEB) evaluation

More information

DRP DER Growth Scenarios Workshop. DER Forecasts for Distribution Planning- Electric Vehicles. May 3, 2017

DRP DER Growth Scenarios Workshop. DER Forecasts for Distribution Planning- Electric Vehicles. May 3, 2017 DRP DER Growth Scenarios Workshop DER Forecasts for Distribution Planning- Electric Vehicles May 3, 2017 Presentation Outline Each IOU: 1. System Level (Service Area) Forecast 2. Disaggregation Approach

More information

Development of analytical process to reduce side load in strut-type suspension

Development of analytical process to reduce side load in strut-type suspension Journal of Mechanical Science and Technology 24 (21) 351~356 www.springerlink.com/content/1738-494x DOI 1.7/s1226-9-113-z Development of analytical process to reduce side load in strut-type suspension

More information

Draft Project Deliverables: Policy Implications and Technical Basis

Draft Project Deliverables: Policy Implications and Technical Basis Surveillance and Monitoring Program (SAMP) Joe LeClaire, PhD Richard Meyerhoff, PhD Rick Chappell, PhD Hannah Erbele Don Schroeder, PE February 25, 2016 Draft Project Deliverables: Policy Implications

More information

Sinfonia: a new paradigm for building scalable distributed systems

Sinfonia: a new paradigm for building scalable distributed systems CS848 Paper Presentation Sinfonia: a new paradigm for building scalable distributed systems Aguilera, Merchant, Shah, Veitch, Karamanolis SOSP 2007 Presented by Somayyeh Zangooei David R. Cheriton School

More information

Ambient PM 10 Monitoring Sechelt, B.C Update

Ambient PM 10 Monitoring Sechelt, B.C Update Ministry of Environment LOWER MAINLAND REGION Ambient PM 10 Monitoring Sechelt, B.C. 2004-2005 Update E N V I R O N M E N T A L Q U A L I T Y Library and Archives Canada Cataloguing in Publication Data

More information

Analyzing Uber s Ride-sharing Economy

Analyzing Uber s Ride-sharing Economy Analyzing Uber s Ride-sharing Economy Farshad Kooti USC / Facebook Nemanja Djuric Yahoo Research Mihajlo Grbovic Yahoo Research Vladan Radosavljevic Yahoo Research Luca Maria Aiello Bell Labs Kristina

More information

RIETI BBL Seminar Handout

RIETI BBL Seminar Handout Research Institute of Economy, Trade and Industry (RIETI) RIETI BBL Seminar Handout Autonomous Vehicles, Infrastructure Policy, and Economic Growth September 25, 2018 Speaker: Clifford Winston https://www.rieti.go.jp/jp/index.html

More information

for air quality applications Edward Hyer Naval Research Laboratory AQAST Meeting Research Triangle Park, NC 16 November 2011

for air quality applications Edward Hyer Naval Research Laboratory AQAST Meeting Research Triangle Park, NC 16 November 2011 Assimilation grade MODIS AOD for air quality applications Edward Hyer Naval Research Laboratory AQAST Meeting Research Triangle Park, NC 16 November 2011 Aerosol Data Assimilation for Air Quality Applications

More information

Why mobility, why now?

Why mobility, why now? DESIGN FOR MOBILITY Why mobility, why now? Ford is expanding business to be both an automotive and mobility company The world has moved from just owning vehicles to both owning and sharing. This is causing

More information

Power distribution techniques for dual-vdd circuits. Sarvesh H Kulkarni and Dennis Sylvester EECS Department, University of Michigan

Power distribution techniques for dual-vdd circuits. Sarvesh H Kulkarni and Dennis Sylvester EECS Department, University of Michigan Power distribution techniques for dual-vdd circuits Sarvesh H Kulkarni and Dennis Sylvester EECS Department, University of Michigan Outline Motivation for multiple supply design Implications of using multiple

More information

Statistical Learning Examples

Statistical Learning Examples Statistical Learning Examples Genevera I. Allen Statistics 640: Statistical Learning August 26, 2013 (Stat 640) Lecture 1 August 26, 2013 1 / 19 Example: Microarrays arrays High-dimensional: Goals: Measures

More information

OPEN HARDWARE, LOW COST, AIR QUALITY STATIONS FOR MONITORING OZONE IN COASTAL AREA

OPEN HARDWARE, LOW COST, AIR QUALITY STATIONS FOR MONITORING OZONE IN COASTAL AREA EGU 214 - Atmospheric and Meteorological Instrumentation 4/28/214 OPEN HARDWARE, LOW COST, AIR QUALIT STATIONS FOR MONITORING OZONE IN COASTAL AREA Marco Lima Co-authors: Davide Donzella, Fabio Pintus,

More information

Efficiency Matters for Mobility. Presented at A3PS ECO MOBILITY 2018 Vienna, Austria November 12 th and 13 th, 2018

Efficiency Matters for Mobility. Presented at A3PS ECO MOBILITY 2018 Vienna, Austria November 12 th and 13 th, 2018 Efficiency Matters for Mobility High-Performance, Ann M. Schlenker Agent-Based Director, Simulation Center for of Transportation Travelers Research and Transportation Argonne National Laboratory Systems

More information

VILLASPORT ATHLETIC CLUB AND SPA Draft Environmental Impact Report. Volume I

VILLASPORT ATHLETIC CLUB AND SPA Draft Environmental Impact Report. Volume I VILLASPORT ATHLETIC CLUB AND SPA Draft Environmental Impact Report Volume I SCH No. 2014092038 Prepared for: City of Roseville Planning Department 311 Vernon Street Roseville, California 95746 Prepared

More information

PREDICTION OF FUEL CONSUMPTION

PREDICTION OF FUEL CONSUMPTION PREDICTION OF FUEL CONSUMPTION OF AGRICULTURAL TRACTORS S. C. Kim, K. U. Kim, D. C. Kim ABSTRACT. A mathematical model was developed to predict fuel consumption of agricultural tractors using their official

More information

EFFECT OF PAVEMENT CONDITIONS ON FUEL CONSUMPTION, TIRE WEAR AND REPAIR AND MAINTENANCE COSTS

EFFECT OF PAVEMENT CONDITIONS ON FUEL CONSUMPTION, TIRE WEAR AND REPAIR AND MAINTENANCE COSTS EFFECT OF PAVEMENT CONDITIONS ON FUEL CONSUMPTION, TIRE WEAR AND REPAIR AND MAINTENANCE COSTS Graduate of Polytechnic School of Tunisia, 200. Completed a master degree in 200 in applied math to computer

More information

CITY OF EDMONTON COMMERCIAL VEHICLE MODEL UPDATE USING A ROADSIDE TRUCK SURVEY

CITY OF EDMONTON COMMERCIAL VEHICLE MODEL UPDATE USING A ROADSIDE TRUCK SURVEY CITY OF EDMONTON COMMERCIAL VEHICLE MODEL UPDATE USING A ROADSIDE TRUCK SURVEY Matthew J. Roorda, University of Toronto Nico Malfara, University of Toronto Introduction The movement of goods and services

More information

Who has trouble reporting prior day events?

Who has trouble reporting prior day events? Vol. 10, Issue 1, 2017 Who has trouble reporting prior day events? Tim Triplett 1, Rob Santos 2, Brian Tefft 3 Survey Practice 10.29115/SP-2017-0003 Jan 01, 2017 Tags: missing data, recall data, measurement

More information

Leveraging AI for Self-Driving Cars at GM. Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel

Leveraging AI for Self-Driving Cars at GM. Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel Leveraging AI for Self-Driving Cars at GM Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel Agenda The vision From ADAS (Advance Driving Assistance

More information

LOCALIZED SWITCHING RAMP-METERING CONTROL WITH QUEUE LENGTH ESTIMATION AND REGULATION AND MICROSCOPIC SIMULATION RESULTS

LOCALIZED SWITCHING RAMP-METERING CONTROL WITH QUEUE LENGTH ESTIMATION AND REGULATION AND MICROSCOPIC SIMULATION RESULTS LOCALIZED SWITCHING RAMP-METERING CONTROL WITH QUEUE LENGTH ESTIMATION AND REGULATION AND MICROSCOPIC SIMULATION RESULTS Xiaotian Sun 1 Roberto Horowitz 2 Department of Mechanical Engineering University

More information

Parks and Transportation System Development Charge Methodology

Parks and Transportation System Development Charge Methodology City of Sandy Parks and Transportation System Development Charge Methodology March, 2016 Background In order to implement a City Council goal the City of Sandy engaged FCS Group in January of 2015 to update

More information

SIP-adus Field Operational Test

SIP-adus Field Operational Test Regional activities and FOTs SIP-adus Field Operational Test ー Mobility bringing everyone a smile ー Masato MINAKATA (TOYOTA MOTOR CORPORATION) SIP-adus International Cooperative WG 14 Nov. 2017 Goal of

More information

Weakly-Supervised Grammar-Informed Bayesian CCG Parser Learning

Weakly-Supervised Grammar-Informed Bayesian CCG Parser Learning Weakly-Supervised Grammar-Informed Bayesian CCG Parser Learning Dan Garrette Chris Dyer Jason Baldridge Noah A. Smith UT-Austin CMU UT-Austin CMU Motivation Annotating parse trees by hand is extremely

More information

Model Predictive Control for Electric Vehicle Charging

Model Predictive Control for Electric Vehicle Charging Model Predictive Control for Electric Vehicle Charging Anthony Papavasiliou Department of Industrial Engineering and Operations Research University of California at Berkeley Berkeley, CA 94709 Email: tonypap@berkeley.edu

More information

Predict Future Failures From Your Maintenance Records

Predict Future Failures From Your Maintenance Records Predict Future Failures From Your Maintenance Records Presented by: Paul Barringer, P.E. Barringer & Associates, Inc. Reliability, Engineering, and Manufacturing Consultants Humble, Texas 77347, USA Phone:

More information

New Jersey Pilot Study Testing Potential MAP-21 System Performance Measures

New Jersey Pilot Study Testing Potential MAP-21 System Performance Measures New Jersey Department of Transportation NATMEC 2014 Improving Traffic Data Collection, Analysis and Use New Jersey Pilot Study What We ll Cover Today Project Approach Pilot Corridors Data Sources Performance

More information

Carpooling Service Using Genetic Algorithm

Carpooling Service Using Genetic Algorithm Carpooling Service Using Genetic Algorithm Swapnali Khade 1, Rutuja Kolhe 2, Amruta Wakchaure 3, Shila Warule 4 1 2 3 4 Department Of Computer Engineering, SRES College Of Engineerig Kopargaon. Abstract

More information

Up scaling Agent Based Discrete Choice Transportation Models using Artificial Neural Networks

Up scaling Agent Based Discrete Choice Transportation Models using Artificial Neural Networks Up scalingagent BasedDiscrete ChoiceTransportationModels usingartificialneuralnetworks LanceE.Besaw GraduateResearchAssistant CivilandEnvironmentalEngineering UniversityofVermont 213VoteyHall 33ColchesterAve,Burlington,VT,05405

More information

Energy Association of Pennsylvania Meeting. PECO Energy Utility Integrated Concord Microgrid Project. March 21, 2017

Energy Association of Pennsylvania Meeting. PECO Energy Utility Integrated Concord Microgrid Project. March 21, 2017 Energy Association of Pennsylvania Meeting PECO Energy Utility Integrated Concord Microgrid Project March 21, 2017 Background 2 In October 2015 PECO introduced it s intention to develop a microgrid as

More information

Policies and Procedures Handbook Procedure No.: T.2 Illinois Institute of Technology Date of Issue: 7/11

Policies and Procedures Handbook Procedure No.: T.2 Illinois Institute of Technology Date of Issue: 7/11 Policies and Procedures Handbook Procedure No.: T.2 Illinois Institute of Technology Date of Issue: 7/11 Subject: Driving Privileges Page 1 of 5 I. PURPOSE This policy sets forth requirements applicable

More information

Performed by: Institute of Transportation Studies University of California, Irvine. Sponsored by: California Air Resources Board

Performed by: Institute of Transportation Studies University of California, Irvine. Sponsored by: California Air Resources Board Performed by: Institute of Transportation Studies University of California, Irvine Sponsored by: California Air Resources Board Progress Meeting Dec 3rd, 2012 Outline Task Schedule Proposed Task Modifications

More information

Studying the Factors Affecting Sales of New Energy Vehicles from Supply Side Shuang Zhang

Studying the Factors Affecting Sales of New Energy Vehicles from Supply Side Shuang Zhang Studying the Factors Affecting Sales of New Energy Vehicles from Supply Side Shuang Zhang School of Economics and Management, Beijing JiaoTong University, Beijing 100044, China hangain0614@126.com Keywords:

More information

Intelligent Transportation Systems. Secure solutions for smart roads and connected highways. Brochure Intelligent Transportation Systems

Intelligent Transportation Systems. Secure solutions for smart roads and connected highways. Brochure Intelligent Transportation Systems Intelligent Transportation Systems Secure solutions for smart roads and connected highways Secure solutions for smart roads and connected highways Today s technology is delivering new opportunities for

More information