Complex Event Processing Based Real Time Detection of Road Traffic

Size: px
Start display at page:

Download "Complex Event Processing Based Real Time Detection of Road Traffic"

Transcription

1 Complex Event Processing Based Real Time Detection of Road Traffic Events 1 Sokha Y, 2 Karpjoo Jeong, 2 Jonghyun Lee, 3 Sanghyun Lee, 3 Youngmin Baek, 3 Seongwan Koo 1 Department of Advanced Technology Fusion, Konkuk University, Seoul, Republic of Korea, ysokha.kom@gmail.com 2 Department of Advanced Technology Fusion, Konkuk University, Seoul, Republic of Korea, jeongk@konkuk.ac.kr, lejohy@gmail.com 3 Department of Internet and Multimedia Engineering, Konkuk University, Seoul, Republic of Korea, katoro@naver.com, {cupitmin, kusungwan}@gmail.com Abstract A road traffic incident is an event that happens on roads and affects traffic flow and human driving at a given time. Traffic incidents can result in longer travel times for commuters and cause serious dangers to drivers. APID is an algorithm designed to detect traffic incidents in various circumstances. In real time traffic event detection, vehicles and roads are monitored by sensors and streams of data from sensors are collectively analyzed to find the occurrence of abnormal events in real time manner. Complex Event Processing (CEP) is a novel technology designed to monitor streams of events and to detect user-specified patterns of events in real time manner. In this paper, we propose a CEP-based real time traffic incident detection system based on the APID algorithm. The APID algorithm is implemented in the Event Processing Language (EPL). The system is evaluated with real world road traffic data and incident reports from Korea Expressway Corporation. Keywords: Complex Event Processing (CEP), Traffic Incident Detection, the APID Algorithm, Event Processing Language. 1. Introduction In big cities such as Seoul, New York, Beijing, and Phnom Penh, traffic is a serious problem where population is very high and very concentrated. Everything which happens on roads and affects road traffic is called events. Such events as car accidents, congestions and road maintenance are considered to be important incidents which can affect traffic flow and human driving seriously. In order to deal with road traffic events efficiently, we need a traffic management system which detects those events and helps decide proper personal and administrative responses as quickly as possible. In recent years, there have been a number of researchers focusing on traffic monitoring and management systems [1]. In those systems, the detection of road traffic events is usually implemented, tightly coupled with other system components and it is very difficult to modify detection algorithms or to add new ones. However, the Complex Event Processing (CEP) technique [2] which is recently available allows us to implement road traffic events in an efficient and flexible way. By using CEP, we can implement, deploy and later modify various road event detection algorithms in a SQL-Like language called the Event Processing Language (EPL) easily. The purpose of this paper is to show how a complex event processing (CEP) system can be used to detect road traffic events by implementing an APID algorithm in the event processing language (EPL). The remainder of the paper is structured as follows. Section 2 discusses about real-time traffic event detection. Section 3 demonstrates CEP-based real time traffic event detection. Section 4 shows how an APID algorithm can be applied to CEP, and section 5 describes about our evaluation of the results. Section 6 provides conclusion, respectively. 2. Real Time Traffic Event Detection Road traffic events are monitored and detected by vehicle detection systems (VDSs) and VDS collected information on millions of vehicles. The vehicles detection systems generate information such as the total number of passing vehicles for a certain period of time, an average speed of passing vehicles in each lane, occupancy, and vehicles types in real time [3]. Research Notes in Information Science (RNIS) Volume14,June 2013 doi: /rnis.vol

2 Traffic incidents are events that result in abnormal traffic flow on the road network. They are occasional events and can cause reduced road capacities for a certain amount of time. Incident detection is apparently crucial for modern traffic management. Traffic incident detection systems are widely used in highways, expressways, and similar roads. We will define three different types of incidents as following: Incident of high volume traffic flow: incidents that occur on road network with a large number of vehicles. Incident of medium volume traffic flow: incidents that occur on the road network with not large or small number of vehicles. Incident of light volume traffic flow: incidents that occur on the road network with a small number of vehicles. These are three types of incidents that must reasonably cover most traffic issues on expressways and disturb other passengers on the same section of road traffic network. We will use the historical data from the vehicles detection system to compute the APID algorithm. 3. CEP-Based Real Time Traffic Event Detection Complex event processing is a technology for analyzing and processing the complex series of related events [4]. This technology allows us to process event streams in a manner to identify and solve problems quickly and flexibly. CEP is applied to abroad spectrum of information system challenges, including business process automation, schedule and control process, network monitoring, performance prediction, active monitoring and intrusion detection [5]. The complex event processing architecture based real time detection of road traffic events is shown in Figure 1. There are four main components: Event Sources. It is generated by vehicle detection systems (VDS). Those events are inserted into the CEP system via the input adapter event manager which is called the socket input adapter. Input Event Manager. It is used to transform the road traffic events into a machineunderstandable format for the processing engine. Event Processing Service. It is a processing engine which receives events from the input event manager and then matches them against the rules in EPL. Once a rule is matched, its corresponding rule action is triggered. Rule actions are to calculate, transform or generate complex events to output adapters. Output Event Manager. It generates data for other systems and consists of output adapters such as http output adapter, JMS (Java Message Service) etc. 4. CEP-Based Incident Detection Figure 1. CEP-Based Real Time Traffic Event Detection Esper is an engine for CEP in Java. It provides an SQL-Like event processing language called EPL that defines continuous queries on stream of events. Additionally, Esper introduces the concept of slide windows which provide views on a certain number of consecutive events. It offers powerful pattern matching functions that allows complex correlation of events [6]. We implement the APID algorithm in EPL to detect road traffic incidents. 196

3 4.1. APID Algorithm The APID algorithm is All Purpose Incident Detection algorithms based on the California Algorithm for detecting incidents on the road network [7]. The APID algorithm is based on pattern recognition. In this paper, we use it to detect traffic patterns such as high, medium and light traffic incidents. It uses occupancy, the total number of passing vehicles, and the average speed of passing vehicles [8]. Such information is collected by vehicles detection systems (VDSs) on the road network of highways. The APID algorithm computes and uses the following variables: Upstream occupancy = OCC(i,t) Downstream occupancy: DOCC(i, t) = OCC(i+1,t) Spatial difference in occupancy: OCCDF(i, t) = OCC(i,t) - OCC(i+1,t) Relative spatial difference in occupancy: OCCRDF(i, t) = OCCDF(i,t)/OCC(i,t) Relative temporal difference in downstream occupancy: DOCCTD(i, t) = [OCC(i+1,t-2)- OCC(i+1,t)]/OCC(i+1,t-2) Relative temporal difference in speed: SPDTDF(i, t) = [SPD(i,t-2)-SPD(i,t)]/SPD(i,t-2) The APID algorithm also needs threshold values shown in Table 1 which represent the conditions of road traffic, but we failed to find appropriate threshold values for our experiments and just used threshold values proposed in previous work [9] because the main objective of our work is to show the effectiveness of CEP for road traffic incident detection, not that of the APID algorithm. Therefore, the effectiveness of those values is assumed to be limited. Table 1. Threshold values for control parameters Control Parameters Value Threshold Incident Detection1 (TH_HAV_ID1) 10.2 Threshold Incident Detection2(TH_HAV_ID2) 0.40 Threshold Incident Detection3(TH_HAV_ID3) 20.8 Threshold Medium Traffic Incident1(TH_ME_ID1) 0.40 Threshold Medium Traffic Incident2(TH_ME_ID2) 0.1 Threshold Light Traffic Incident1 (TH_LIT_ID1) 1 The incident conditions are defined and shown as follows: Incident of high volume traffic flow o OCCDF > TH_HAV_ID1 o OCCRDF > TH_HAV_ID2 o DOCC > TH_HAV_ID3 Incident of medium volume traffic flow o OCCRDF > TH_ME_ID1 o SPDTDF > TH_ME_ID2 Incident of low volume traffic flow o SPDTDF > TH_LIT_ID Implementation APID Algorithm in Event Processing Language The EPL rule to detect incident of high volume traffic flow on road traffic network is implemented as Incident on High Volume Traffic Flow ) Insert into High Select allcurrentstreamvdsproperties, From CurrentStreamVDSID, DownStreamVDSID Where (CurrentStreamVDSID.OCC DownStreamVDSID.OCC) > TH_HAV_ID1 and (CurrentStreamVDSID.OCC DownStreamVDSID.OCC) / CurrentStreamVDSID.OCC > TH_HAV_ID2 and DownStreamVDSID.OCC > TH_HAV_ID3 197

4 Expressions of the EPL code mean that: (CurrrentStreamVDSID.OCC DownStreamVDSID.OCC) == (OCCDF(i,t) = OCC(i,t)- OCC(i+1,t)). ((CurrentStreamVDSID.OCC-DownStreamVDSID.OCC ) / CurrentStreamVDSID.OCC) == (OCCRDF(i,t) = (OCC (i,t) OCC(i+1,t))/ OCC (i,t)) Where i denote a VDS system ID, VDS i+1 is next to VDS i in downstream, and t denotes a time period. OCC (i+1, t) is the occupancy value which is obtained from VDS i+1 at time t. The detection of medium volume traffic flow consists of two steps: The first step is written in EPL as Insert Into SpdFilterCurrentStream Select allvdscurrentstreamproperties From CurrentStreamVDSID Match_Recognize ( Measures VDS.VDS_ID as VDS_ID, VDS. Colct_dtmc as colct_dtmc VDS.speed as speed, VDS.vol as vol, VDS. LaneVehicle as LaneVehicle, VDS.OCC as OCC Pattern (VDS) Define VDS as (Prev(VDS.speed, 2) - VDS.speed) / Prev (VDS.speed, 2) > TH_ME_ID2 ); The second step is written in EPL as follows: Insert Into Medium Select SpdFilterCurrentStream From SpdFilterCurrentStream, DownstreamVDSID Where SpdFilterCurrentStream. Colct_dtmc = DownstreamVDSID. Colct_dtmc and (SpdFilterCurrentStream.OCC DownstreamVDSID.OCC)/ SpdFilterCurrentStream.OCC >TH_ME_ID1 In the first step, we detect the event based on the speed condition whose rules are shown previously. The detected events are inserted into window stream SpdFilterCurrentStream. In the second step, after the first step is already done, we use the events from the SpdFilterCurrentStream to be joined with the next VDS s section name DownstreamVDSID with OCCRDF s condition which is already mentioned above. After the first and second steps are processed, the detected incident of medium traffic flow will be inserted into window stream Medium. The EPL rule that is used to detect incident of light volume traffic flow on road network can be expressed as ( Incident Light Volume Traffic Flow ) Insert Into Light Select allcurrentstreamproperties, From CurrentStreamVDSID, Match_Recognize ( Measures VDS.VDSID as ID, VDS.colct_dtmc as datetime, VDS.speed as speed, VDS.vol as volume, VDS.fillinparm as VDS_Location, VDS.Lane_Type as lanevehicle, VDS.direction as direction Vehicle, VDS.occ as Occupancy Pattern (VDS) Define VDS as ((Prev(VDS.speed, 2)-VDS.speed) / Prev (VDS.speed, 2) > TH_LIT_ID1); 198

5 Expression of the above EPL code means that: (prev(vds.speed,2) VDS.speed)/prev(VDS.speed, 2) == [SPDTDF(i, t)= (SPD(i,t 2) SPD(i,t))/SPD(i,t 2))]. Where i denote a VDS system ID, VDS i+1 is next to VDS i, and t denotes a time period. SPD (i, t) is the average speed of vehicles detected by VDS i at time period t. 5. Evaluation We evaluated our EPL implementation of the APID algorithm (EAPID) by using both real traffic data and incident data about the highway road section from Cheon-An IC to Dong-Tan JC which was further divided into four sections [10]. Real incident data is reports including car accidents, road maintenance, and congestions. We ran EAPID with the traffic data to detect high, medium and low traffic volume incidents. We compared the results with real traffic and incident data in the following way: For real incident data, checked if EAPID detected either medium or high traffic volume incidents. The rationale for this comparison is that real incidents such as car accidents or maintenance are most likely to slow down and to increase traffic volumes. For real traffic data with 70km/h or lower as average vehicle speeds, checked if EAPID detected either medium or high traffic volume incidents. The rationale for this comparison is that medium or high traffic volumes are likely to correspond to slow vehicle speeds. We showed the comparison results in Figure 2. The accuracy of EAPID is not high, but incident detection is known to be a challenging problem and most APID algorithms fail to produce highly accurate detection results [7]. However, the main objective of this work is not to develop an efficient and highly accurate APID algorithm implementation but to prove that EPL is effective for implementing such algorithms. Figure 2. Comparisons of EAPID results with real incident data O, DI_H, DI_M, DI_L, and V denote real incident reports, high traffic volume detection, medium traffic volume detection, low traffic volume detection, and an average vehicle speed (x: 70km/h or higher, : 70km/h or lower), respectively [11]. There are 41 incident reports tested. Only 28 incidents correspond to average vehicle speeds of 70km/h or higher. For 20 incidents out of those 28 incidents (71%), our EAPID program detected high or medium volume traffic incidents. As we can see that traffic incident reports (car accidents or road maintenances) are not exactly matched with high or medium volume traffic in Figure 2, it is very difficult to check if results of the APID algorithm are correct. Therefore, the evaluation results shown in Figure 2 should be only considered to be some indication for the correctness of the algorithm. 199

6 6. Conclusion The real time traffic incident detection is crucial for effective road traffic management [12]. In this paper, we presented our novel approach to real time traffic incident detection which uses Complex Event Processing (CEP) [5][13][14]. CEP allows us to implement various pattern recognition algorithms for multiple data streams in a SQL-like programming language called EPL easily and to modify them dynamically. We showed that the CEP-based approach is effective by implementing the APID algorithm in EPL. We tested the EPL implementation of the APID algorithm with real traffic data and incident reports from Korea Expressway Corporation [15]. 7. Acknowledgments This research was supported by MSIP (Ministry of Science, ICT and Future Planning), Korea, under the ITRC (Information Technology Research Center) support program (NIPA-2013-(H )) supervised by the NIPA (National IT Industry Promotion Agency). We would like to thank the Expressway and Transportation Research Institute for providing us with their traffic data for this research. We would also like to thank Dr. Keun Young Lee and Milan Kang, PhD student, for checking the EPL code and reading this article. 8. References [1] transportation_system. [2] N. Museux, J. Mattioli, C. Laudy, H. Soubaras, "Complex Event Processing Approach for Strategic Intelligence" in Information Fusion, th International Conference on July [3] [4] D. Luckham: Power of Events. Addison-Wesley, Reading (2001). [5] D. Anicic, P. Fodor, R. Stuhmer, N. Stojanovic, "Event-Driven Approach for Logic-Based Complex Event Processing" in Computational Science and Engineering, CSE 9, International Conference on Aug [6] Esper.ESPERTECH: Esper Reference Documentation, Version Technical Report: [7] OnurDeniz, HilmiBerkCelikoglu, Gurka n EmreGurcanli "Overview to some Incident to Some Incident Detection Algorithms: A Comparative Evaluation with ISTANBul Freeway Data" Proceedings of the12 th International Conference Reliability and Statistics in Transportation and Communication (RelStat 12), October 2012, Riga, Latvia, p ISBN Transport and Telecommunication Institute, Lomonosova 1, LV-1019, Riga, Latvia. [8] H. J. Payne and S. C. Tingor, "Freeway incident detection algorithm based on decision tree with states," Transportation Research Record, vol. 782, pp , [9] H. Philip, Masters, K. Josehp, Lam and Kam Wong, " Incident Detection Algorithms for Compass An Advanced Traffic Management System" in Vehicle Navigation and Information System Conference, 1991, page 295, 310. [10] [11] [12] Y. Shunxin, N. Fujian, W. Wei, "Freeway Incident Management System Application in Jiangsu, China" Proceedings of the 2007 IEEE "Intelligent Transportation Systems Conference" on Sept. 30- Oct. 3, Seattle, WA, USA, p ISBN [13] J. Dunkel, A. Fernandez, R. Ortiz, R. Ortiz, S. Ossowski, "Event-Driven Architecture for Decision Support in Traffic Management Systems". 11 th Inter. IEEE Conf. on Intelligent Transportation Systems. 2008, pp [14] J. Dunkel, "On Complex Event Processing for Sensor Networks in Autonomous Decentralized System International Symposium on March [15] 200

On A Traffic Control Problem Using Cut-Set of Graph

On A Traffic Control Problem Using Cut-Set of Graph 1240 On A Traffic Control Problem Using Cut-Set of Graph Niky Baruah Department of Mathematics, Dibrugarh University, Dibrugarh : 786004, Assam, India E-mail : niky_baruah@yahoo.com Arun Kumar Baruah Department

More information

TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS

TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS 19th ITS World Congress, Vienna, Austria, 22/26 October 2012 EU-00014 TRAFFIC DATA FUSION OF VEHICLE DATA TO DETECT SPATIOTEMPORAL CONGESTED PATTERNS H. Rehborn*, M. Koller#, B. S. Kerner* *Daimler AG,

More information

Adaptive Aggregation Scheduling Using. Aggregation-degree Control in Sensor Network

Adaptive Aggregation Scheduling Using. Aggregation-degree Control in Sensor Network Contemporary Engineering Sciences, Vol. 7, 2014, no. 14, 725-730 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4681 Adaptive Aggregation Scheduling Using Aggregation-degree Control in

More information

ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED ON FLOATING CAR AND STATIONARY DATA

ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED ON FLOATING CAR AND STATIONARY DATA 15th World Congress on Intelligent Transport Systems ITS Connections: Saving Time, Saving Lives New York, November 16-20, 2008 ANALYZING AND COMPARING TRAFFIC NETWORK CONDITIONS WITH A QUALITY TOOL BASED

More information

A novel test access mechanism for parallel testing of multi-core system

A novel test access mechanism for parallel testing of multi-core system LETTER IEICE Electronics Express, Vol.11, No.6, 1 6 A novel test access mechanism for parallel testing of multi-core system Taewoo Han, Inhyuk Choi, and Sungho Kang a) Dept of Electrical and Electronic

More information

Context-Aware Vehicular Cyber-Physical Systems with Cloud Support: Architecture, Challenges, and Solutions

Context-Aware Vehicular Cyber-Physical Systems with Cloud Support: Architecture, Challenges, and Solutions Context-Aware Vehicular Cyber-Physical Systems with Cloud Support: Architecture, Challenges, and Solutions Siran Pavankumar(149344152) siranpavankumar@gmail.com Computer Science Department Seoul National

More information

Visualization and modeling of traffic congestion in urban environments

Visualization and modeling of traffic congestion in urban environments 1th AGILE International Conference on Geographic Information Science 27 Page 1 of 1 Visualization and modeling of traffic congestion in urban environments Authors: Ben Alexander Wuest and Darka Mioc, Department

More information

A Resource Control Mechanism on NGN based Home Network for IPTV Service

A Resource Control Mechanism on NGN based Home Network for IPTV Service A Resource Control Mechanism on NGN based Home Network for IPTV Service Yangjung Kim, Ilyoung Chong Hankuk University of Foreign Studies. Dept, of Information & Communications {zeroplus, iychong}@hufs.ac.kr

More information

ITS Development and Deployment in China

ITS Development and Deployment in China EGM on Asian Highway ITS Development and Deployment in China Xiaojing WANG Director, China National ITS Center Chief Engineer, RIOH, Ministry of Transport Chair, China ITS Industry Alliance BOD Member,

More information

* Hyun Suk Park. Korea Institute of Civil Engineering and Building, 283 Goyangdae-Ro Goyang-Si, Korea. Corresponding Author: Hyun Suk Park

* Hyun Suk Park. Korea Institute of Civil Engineering and Building, 283 Goyangdae-Ro Goyang-Si, Korea. Corresponding Author: Hyun Suk Park International Journal Of Engineering Research And Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 13, Issue 11 (November 2017), PP.47-59 Determination of The optimal Aggregation

More information

EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS

EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS EVALUATION METHOD OF DYNAMIC TRAFFIC OPERATION AND A CASE STUDY ON VARIABLE CHANNELIZATION FOR MERGING SECTIONS Sungjoon HONG, Dr. Eng., Research Associate, the University of Tokyo 4-6-1 Komaba, Meguro,

More information

The USC 2 T Project The USC Clever Transportation Project

The USC 2 T Project The USC Clever Transportation Project The USC 2 T Project The USC Clever Transportation Project Traffic Data Management Cloud Futures Workshop 2011 Microsoft, Redmond, WA, 6/2/2011 Barak Fishbain Viterbi School of Engineering University of

More information

Connected Car. Dr. Sania Irwin. Head of Systems & Applications May 27, Nokia Solutions and Networks 2014 For internal use

Connected Car. Dr. Sania Irwin. Head of Systems & Applications May 27, Nokia Solutions and Networks 2014 For internal use Connected Car Dr. Sania Irwin Head of Systems & Applications May 27, 2015 1 Nokia Solutions and Networks 2014 For internal use Agenda Introduction Industry Landscape Industry Architecture & Implications

More information

ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS

ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS 0 ESTIMATING PARAMETERS FOR MODIFIED GREENSHIELD S MODEL AT FREEWAY SECTIONS FROM FIELD OBSERVATIONS Omor Sharif University of South Carolina Department of Civil and Environmental Engineering 00 Main Street

More information

Creating transportation system intelligence using PeMS. Pravin Varaiya PeMS Development Group

Creating transportation system intelligence using PeMS. Pravin Varaiya PeMS Development Group Creating transportation system intelligence using PeMS Pravin Varaiya PeMS Development Group Summary Conclusion System overview Routine reports: Congestion monitoring, LOS Finding bottlenecks Max flow

More information

A Spatial Point Pattern Analysis to Recognize Fail Bit Patterns in Semiconductor Manufacturing

A Spatial Point Pattern Analysis to Recognize Fail Bit Patterns in Semiconductor Manufacturing A Spatial Point Pattern Analysis to Recognize Fail Bit Patterns in Semiconductor Manufacturing Youngji Yoo, Seung Hwan Park, Daewoong An, Sung-Shick Shick Kim, Jun-Geol Baek Abstract The yield management

More information

Accuracy of Matching between Probe-Vehicle and GIS Map

Accuracy of Matching between Probe-Vehicle and GIS Map Proceedings of the 8th International Symposium on Spatial Accuracy Assessment in Natural Resources and Environmental Sciences Shanghai, P. R. China, June 25-27, 2008, pp. 59-64 Accuracy of Matching between

More information

Research Fellow, Korea Institute of Civil Engineering and Building Technology, Korea (*corresponding author) 2

Research Fellow, Korea Institute of Civil Engineering and Building Technology, Korea (*corresponding author) 2 Algorithm and Experiment for Vision-Based Recognition of Road Surface Conditions Using Polarization and Wavelet Transform 1 Seung-Ki Ryu *, 2 Taehyeong Kim, 3 Eunjoo Bae, 4 Seung-Rae Lee 1 Research Fellow,

More information

National Operations Center of Excellence. Douglas W. Wiersig, P.E. Director of Transportation and Public Works, City of Fort Worth, Texas

National Operations Center of Excellence. Douglas W. Wiersig, P.E. Director of Transportation and Public Works, City of Fort Worth, Texas National Operations Center of Excellence Douglas W. Wiersig, P.E. Director of Transportation and Public Works, City of Fort Worth, Texas 1 Our Vision & Mission Vision: Provide exceptional services to the

More information

TM2.0 Enabling vehicle interaction with traffic management. TF3 Principles for data. Report

TM2.0 Enabling vehicle interaction with traffic management. TF3 Principles for data. Report TM2.0 Enabling vehicle interaction with traffic management TF3 Principles for data Report July 2015 1 Outline The focus of Task Force 3 - Principles for Data (TF3) is to provide the basis for data exchange

More information

Intelligent Transportation Systems Using Short Range Wireless Technologies

Intelligent Transportation Systems Using Short Range Wireless Technologies Journal of Transportation Technologies, 2011, 1, 132-137 doi:10.4236/jtts.2011.14017 Published Online October 2011 (http://www.scirp.org/journal/jtts) Intelligent Transportation Systems Using Short Range

More information

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION Jakov Videković, Josip Balen Faculty of Electrical Engineering, Computer Science and Information Technology Kneza

More information

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION

ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION KoREMA INSTRUCTION TO AUTHORS ON-BOARD SMARTPHONE APPLICATION PLATFORM FOR REAL- TIME SHARING OF TRAFFIC INFORMATION Jakov Videković, Josip Balen Faculty of Electrical Engineering, Computer Science and

More information

FZI Research Center for Information Technology, Germany

FZI Research Center for Information Technology, Germany FZI FORSCHUNGSZENTRUM INFORMATIK Event Processing and Stream Reasoning with ETALIS Darko Anicic FZI Research Center for Information Technology, Germany INQUEST 2012, Oxford, United Kingdom Agenda Motivation

More information

Connected Corridors: I-210 Pilot Integrated Corridor Management System

Connected Corridors: I-210 Pilot Integrated Corridor Management System PARTNERS FOR ADVANCED TRANSPORTATION TECHNOLOGY INSTITUTE OF TRANSPORTATION STUDIES UNIVERSITY OF CALIFORNIA, BERKELEY Connected Corridors: I-210 Pilot Integrated Corridor Management System Processing

More information

Vehicle Trust Management for Connected Vehicles

Vehicle Trust Management for Connected Vehicles Vehicle Trust Management for Connected Vehicles FINAL RESEARCH REPORT Insup Lee (PI), Nicola Bezzo, Jian Chang Contract No. DTRT12GUTG11 DISCLAIMER The contents of this report reflect the views of the

More information

TomTom Road Event Reporter User Manual

TomTom Road Event Reporter User Manual TomTom Road Event Reporter User Manual Contents Welcome to TomTom Road Event Reporter 3 How TomTom Road Event Reporter works 4 Starting the Road Event Reporter 5 What's on the screen 6 Types of event you

More information

Basic Concepts And Future Directions Of Road Network Reliability Analysis

Basic Concepts And Future Directions Of Road Network Reliability Analysis Journal of Advanced Transportarion, Vol. 33, No. 2, pp. 12.5-134 Basic Concepts And Future Directions Of Road Network Reliability Analysis Yasunori Iida Background The stability of road networks has become

More information

A Robust Cloud-based Service Architecture for Multimedia Streaming Using Hadoop

A Robust Cloud-based Service Architecture for Multimedia Streaming Using Hadoop A Robust Cloud-based Service Architecture for Multimedia Streaming Using Hadoop Myoungjin Kim 1, Seungho Han 1, Jongjin Jung 3, Hanku Lee 1,2,*, Okkyung Choi 2 1 Department of Internet and Multimedia Engineering,

More information

E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application

E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application Yu-Doo Kim and Il-Young Moon Korea University of Technology and Education kydman@koreatech.ac.kr

More information

Complex Event Processing

Complex Event Processing Complex Event Processing Developing event driven applications with Esper Dan Pritchett Rearden Commerce Dan Pritchett Complex Event Processing: Developing event driven applications with Esper Slide 1 Why

More information

OSM-SVG Converting for Open Road Simulator

OSM-SVG Converting for Open Road Simulator OSM-SVG Converting for Open Road Simulator Rajashree S. Sokasane, Kyungbaek Kim Department of Electronics and Computer Engineering Chonnam National University Gwangju, Republic of Korea sokasaners@gmail.com,

More information

INTELLIGENT TRAFFIC MANAGEMENT FOR INDIA Phil Allen VP Sales APAC

INTELLIGENT TRAFFIC MANAGEMENT FOR INDIA Phil Allen VP Sales APAC INTELLIGENT TRAFFIC MANAGEMENT FOR INDIA 2017-05 Phil Allen VP Sales APAC Phil.Allen@tomtom.com OUR BUSINESS TODAY 4,700 employees in 35 countries LICENSING Delivering digital maps and dynamic content

More information

Reporting road hazards using in-vehicle camera

Reporting road hazards using in-vehicle camera Technical Disclosure Commons Defensive Publications Series August 17, 2017 Reporting road hazards using in-vehicle camera Catherine Cardinal Chin Ngai Sze Follow this and additional works at: http://www.tdcommons.org/dpubs_series

More information

Multi-Agents Scheduling and Routing Problem with Time Windows and Visiting Activities

Multi-Agents Scheduling and Routing Problem with Time Windows and Visiting Activities The Eighth International Symposium on Operations Research and Its Applications (ISORA 09) Zhangjiajie, China, September 20 22, 2009 Copyright 2009 ORSC & APORC, pp. 442 447 Multi-Agents Scheduling and

More information

Available online at ScienceDirect. Procedia Computer Science 56 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 56 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 56 (2015 ) 266 270 The 10th International Conference on Future Networks and Communications (FNC 2015) A Context-based Future

More information

ITS (Intelligent Transportation Systems) Solutions

ITS (Intelligent Transportation Systems) Solutions Special Issue Advanced Technologies and Solutions toward Ubiquitous Network Society ITS (Intelligent Transportation Systems) Solutions By Makoto MAEKAWA* Worldwide ITS goals for safety and environment

More information

LiSEP: a Lightweight and Extensible tool for Complex Event Processing

LiSEP: a Lightweight and Extensible tool for Complex Event Processing LiSEP: a Lightweight and Extensible tool for Complex Event Processing Ivan Zappia, David Parlanti, Federica Paganelli National Interuniversity Consortium for Telecommunications Firenze, Italy References

More information

AN IMPROVED TAIPEI BUS ESTIMATION-TIME-OF-ARRIVAL (ETA) MODEL BASED ON INTEGRATED ANALYSIS ON HISTORICAL AND REAL-TIME BUS POSITION

AN IMPROVED TAIPEI BUS ESTIMATION-TIME-OF-ARRIVAL (ETA) MODEL BASED ON INTEGRATED ANALYSIS ON HISTORICAL AND REAL-TIME BUS POSITION AN IMPROVED TAIPEI BUS ESTIMATION-TIME-OF-ARRIVAL (ETA) MODEL BASED ON INTEGRATED ANALYSIS ON HISTORICAL AND REAL-TIME BUS POSITION Xue-Min Lu 1,3, Sendo Wang 2 1 Master Student, 2 Associate Professor

More information

Implementation of a Pedestrian Detection Device based on CENTRIST for an Embedded Environment

Implementation of a Pedestrian Detection Device based on CENTRIST for an Embedded Environment , pp.123-127 http://dx.doi.org/10.14257/astl.2014.46.29 Implementation of a Pedestrian Detection Device based on CENTRIST for an Embedded Environment Yun-Seop Hwang 1, Jae-Chang Kwak 2, Kwang-Yeob Lee

More information

Smartphone Enabled Dangerous Driving Report System

Smartphone Enabled Dangerous Driving Report System 2013 46th Hawaii International Conference on System Sciences Smartphone Enabled Dangerous Driving Report System Chalermpol Saiprasert and Wasan Pattara-Atikom National Electronics and Computer Technology

More information

TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA

TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA TRAFFIC INFORMATION SERVICE IN ROAD NETWORK USING MOBILE LOCATION DATA Katsutoshi Sugino *, Yasuo Asakura **, Takehiko Daito *, Takeshi Matsuo *** * Institute of Urban Transport Planning Co., Ltd. 1-1-11,

More information

Cross-layer TCP Performance Analysis in IEEE Vehicular Environments

Cross-layer TCP Performance Analysis in IEEE Vehicular Environments 24 Telfor Journal, Vol. 6, No. 1, 214. Cross-layer TCP Performance Analysis in IEEE 82.11 Vehicular Environments Toni Janevski, Senior Member, IEEE, and Ivan Petrov 1 Abstract In this paper we provide

More information

I. Replacement and upgrade of Span Wire Traffic Signal at Indian River Road and Princess Anne Road

I. Replacement and upgrade of Span Wire Traffic Signal at Indian River Road and Princess Anne Road January - 2012 I. Replacement and upgrade of Span Wire Traffic Signal at Indian River Road and Princess Anne Road The City of Virginia Beach is in the process of replacing many of its existing span wire

More information

Vehicle Detection Method using Haar-like Feature on Real Time System

Vehicle Detection Method using Haar-like Feature on Real Time System Vehicle Detection Method using Haar-like Feature on Real Time System Sungji Han, Youngjoon Han and Hernsoo Hahn Abstract This paper presents a robust vehicle detection approach using Haar-like feature.

More information

Macroscopic Modeling and Simulation of Freeway Traffic Flow

Macroscopic Modeling and Simulation of Freeway Traffic Flow Macroscopic Modeling and Simulation of Freeway Traffic Flow Jan Hueper, Gunes Dervisoglu, Ajith Muralidharan, Gabriel Gomes, Roberto Horowitz and Pravin Varaiya Abstract This paper illustrates the macroscopic

More information

An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time

An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time Lei Lin 1, Qian Wang 1, Adel W. Sadek 1, Yan Li 2 1 Civil, Structural and Environmental

More information

A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction

A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction Journal ofadvanced Transportation, Vol. 39, No. I, pp. 5-18 www, advanced-transport. corn A Dynamic Shortest Path Algorithm Using Multi-Step Ahead Link Travel Time Prediction Young-Ihn Lee Seungiae Lee

More information

Esper. Luca Montanari. MIDLAB. Middleware Laboratory

Esper. Luca Montanari. MIDLAB. Middleware Laboratory Esper Luca Montanari montanari@dis.uniroma1.it Esper Open Source CEP and ESP engine Available for Java as Esper, for.net as NEsper Developed by Codehaus http://esper.codehaus.org/ (write esper complex

More information

DSMS Benchmarking. Morten Lindeberg University of Oslo

DSMS Benchmarking. Morten Lindeberg University of Oslo DSMS Benchmarking Morten Lindeberg University of Oslo Agenda Introduction DSMS Recap General Requirements Metrics Example: Linear Road Example: StreamBench 30. Sep. 2009 INF5100 - Morten Lindeberg 2 Introduction

More information

Scalable Selective Traffic Congestion Notification

Scalable Selective Traffic Congestion Notification Scalable Selective Traffic Congestion Notification Győző Gidófalvi Division of Geoinformatics Deptartment of Urban Planning and Environment KTH Royal Institution of Technology, Sweden gyozo@kth.se Outline

More information

RECOGNITION OF DRIVING MANEUVERS BASED ACCELEROMETER SENSOR

RECOGNITION OF DRIVING MANEUVERS BASED ACCELEROMETER SENSOR International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 11, November 2018, pp. 1542 1547, Article ID: IJCIET_09_11_149 Available online at http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=9&itype=11

More information

Applicability Estimation of Mobile Mapping. System for Road Management

Applicability Estimation of Mobile Mapping. System for Road Management Contemporary Engineering Sciences, Vol. 7, 2014, no. 24, 1407-1414 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.49173 Applicability Estimation of Mobile Mapping System for Road Management

More information

V2X: Beyond the Horizon. IBTTA AET Meeting July 18, 2017

V2X: Beyond the Horizon. IBTTA AET Meeting July 18, 2017 V2X: Beyond the Horizon IBTTA AET Meeting July 18, 2017 Battle over V2X Technology: DSRC vs 5G 18 July 2017 www.kapsch.net 2 Dedicated Short Range Communication (DSRC) Bi-directional wireless communications

More information

The Intelligent Transportation System

The Intelligent Transportation System The Intelligent Transportation System What is main purpose of the expressway? 1. Get Connected 2. Go faster 3. Grow Safely Expressway Purpose What should we do to go fast/safely? Explaining Order What

More information

4G and 5G Cellular Technologies Enable Intelligent Transportation Use Cases

4G and 5G Cellular Technologies Enable Intelligent Transportation Use Cases 4G and 5G Cellular Technologies Enable Intelligent Transportation Use Cases Martti Mustajärvi martti.mustajarvi@nokia.com Nokia Innovation Steering Principal Technologist 1 Nokia 2016 1 Our mission is

More information

Complex event processing in reactive distributed systems

Complex event processing in reactive distributed systems Complex event processing in reactive distributed systems Ján JANÍK Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovakia xjanikj@is.stuba.sk

More information

Autorama, Connecting Your Car to

Autorama, Connecting Your Car to Autorama, Connecting Your Car to the Internet of Tomorrow Nicholas Sargologos, Senior Marketing Manager, Digital Networking Freescale Semiconductor Overview Automotive OEMs need a secure, managed process

More information

TomTom Innovation. Hans Aerts VP Software Development Business Unit Automotive November 2015

TomTom Innovation. Hans Aerts VP Software Development Business Unit Automotive November 2015 TomTom Innovation Hans Aerts VP Software Development Business Unit Automotive November 2015 Empower Movement Simplify complex technology From A to BE Innovative solutions Maps Consumer Connect people and

More information

Development Progress and OEM Perspective of C-V2X in China

Development Progress and OEM Perspective of C-V2X in China Development Progress and OEM Perspective of C-V2X in China Dr. Xiang Dang (ABM) Deputy General Manager Research& Advanced Technology Department SAIC MOTOR 1 C-V2X Development Progress in China 2 OEM s

More information

Cooperative Vehicle-infrastructure System ACTIVITIES IN CHINA

Cooperative Vehicle-infrastructure System ACTIVITIES IN CHINA Cooperative Vehicle-infrastructure System ACTIVITIES IN CHINA Song Xianghui National Center of ITS Engineering & Technology, China 1 CONTENTS 1 CVIS Development plan l 2 CVIS applications 3 CVIS standardization

More information

Leakage Pattern Monitoring Method of CEP based Water Supply Block System

Leakage Pattern Monitoring Method of CEP based Water Supply Block System Indian Journal of Science and Technology, Vol 8(27), DOI:10.17485/ijst/2015/v8i27/81054, October 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Leakage Pattern Monitoring Method of CEP based Water

More information

Mobile Century data documentation

Mobile Century data documentation Mobile Century data documentation December 16, 2009 Contents 1 USER AGREEMENT, TERMS OF USE 1 2 DESCRIPTION OF THE DATA 2 2.1 Inductive loop detector data................... 2 2.1.1 Inductive loop detector

More information

Now, Near and Far: The Case For CV2X. Don Butler Executive Director Connected Vehicle Platform and Product Ford Motor Company.

Now, Near and Far: The Case For CV2X. Don Butler Executive Director Connected Vehicle Platform and Product Ford Motor Company. Now, Near and Far: The Case For CV2X Don Butler Executive Director Connected Vehicle Platform and Product Ford Motor Company July 2018 1 Technology evolution is inevitable Time from concept to application

More information

SITRAFFIC CONCERT Traffic management in concert

SITRAFFIC CONCERT Traffic management in concert SITRAFFIC CONCERT Traffic management in concert Intelligent Traffic Systems s Industrial Solutions and Services Your Success is Our Goal Why traffic management systems? The goals of traffic policy Traffic

More information

To realize Connected Vehicle Society. Yosuke NISHIMURO Ministry of Internal Affairs and Communications (MIC), Japan

To realize Connected Vehicle Society. Yosuke NISHIMURO Ministry of Internal Affairs and Communications (MIC), Japan To realize Connected Vehicle Society Yosuke NISHIMURO Ministry of Internal Affairs and Communications (MIC), Japan Services provided by Connected Vehicle 1 Vehicle 5G V2X Connected Vehicle Big Data AI

More information

Research on Traffic Flow Statistics Algorithm Based on Inter - Frame Similarity

Research on Traffic Flow Statistics Algorithm Based on Inter - Frame Similarity Computer and Information Science; Vol. 10, No. 2; 2017 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Science and Education Research on Traffic Flow Statistics Algorithm Based on Inter

More information

QUEUEING MODELS FOR UNINTERRUPTED TRAFFIC FLOWS

QUEUEING MODELS FOR UNINTERRUPTED TRAFFIC FLOWS QUEUEING MODELS FOR UNINTERRUPTED TRAFFIC FLOWS Tom Van Woensel and Nico Vandaele Faculty of Applied Economics UFSIA-RUCA, University of Antwerp E-mail: tom.vanwoensel@ufsia.ac.be E-mail: nico.vandaele@ufsia.ac.be

More information

Data Integration for Integrated Corridor Management

Data Integration for Integrated Corridor Management Dr. Kevin T Miller, Kapsch TrafficCom USA, Troy, MI, USA Matt Juckes, Kapsch TrafficCom USA Jeremy Dilmore, Florida Department of Transportation Robert Heller, Southwest Research Institute Abstract Modern

More information

A Survey on Disk-based Genome. Sequence Indexing

A Survey on Disk-based Genome. Sequence Indexing Contemporary Engineering Sciences, Vol. 7, 2014, no. 15, 743-748 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4684 A Survey on Disk-based Genome Sequence Indexing Woong-Kee Loh Department

More information

Advanced Transportation Optimization Systems (ATOS)

Advanced Transportation Optimization Systems (ATOS) Advanced Transportation Optimization Systems (ATOS) By Andrew Andrusko Undergraduate Student Student in Civil Engineering, Urban & Regional Studies, Social Studies, Geography, Geology Programs Minnesota

More information

Acyclica Congestion Management. By Sarah King Regional Sales Manager Control Technologies

Acyclica Congestion Management. By Sarah King Regional Sales Manager Control Technologies Acyclica Congestion Management By Sarah King Regional Sales Manager Control Technologies Overview 1. Goals 2. Data Collection 3. Measuring Congestion 4. Travel Time 5. Intersection Delay 6. Origin/Destination

More information

Detector Data Extractor V3.5 User Manual

Detector Data Extractor V3.5 User Manual TDRL, DetectorExtractor V3.5 Manual, Page 1 Detector Data Extractor V3.5 User Manual Provided by Transportation Data Research Laboratory A Division of Northland Advanced Transportation Systems Research

More information

APPENDIX E TRANSPORTATION

APPENDIX E TRANSPORTATION APPENDIX E TRANSPORTATION 2011 PATRON SURVEYS VISSIM MODEL CALIBRATION AND VALIDATION Environmental and Planning Consultants 440 Park Avenue South 7th Floor New York, NY 10016 tel: 212 696-0670 fax:

More information

Implementation of Digital Cinema Mastering System

Implementation of Digital Cinema Mastering System Implementation of Digital Cinema Mastering System Yeonjeong Jeong, Bumho Kim, Dowon Nam, Kisong Yoon Content Distribution Platform Team, ETRI, 218 Gajeong-ro, Yuseong-gu, Daejeon, Korea yjjeong@etri.re.kr,

More information

Mobile Millennium Using Smartphones as Traffic Sensors

Mobile Millennium Using Smartphones as Traffic Sensors Mobile Millennium Using Smartphones as Traffic Sensors Dan Work and Alex Bayen Systems Engineering, Civil and Environmental Engineering, UC Berkeley Intelligent Infrastructure, Center for Information Technology

More information

The Practical Side of Cell Phones as Traffic Probes

The Practical Side of Cell Phones as Traffic Probes The Practical Side of Cell Phones as Traffic Probes The information contained in this document is considered proprietary, and may not be reproduced or redistributed without the consent of Delcan Inc. Cell

More information

International Journal of Computer & Organization Trends Volume 5 Issue 1 Jan to Feb 2015

International Journal of Computer & Organization Trends Volume 5 Issue 1 Jan to Feb 2015 Introducing Autonomous Car Methodology in WSN Promita Maitra 1, Sohini Nandi 2, Ipsita Saha 3, Poojarini Mitra 4, Sayani Chandra 5 1 Student, Dept. of Computer Science and Engineering, Gurunanak Institute

More information

GIS and traffic data used in a traffic hackathon Edwin Kools

GIS and traffic data used in a traffic hackathon Edwin Kools GIS and traffic data used in a traffic hackathon Edwin Kools TOMTOM CONNECTED NAVIGATION SYSTEM IN NUMBERS 24 YEARS 127 300 450 MILLION 270 BILLION 13.9 TRILLION of software development countries supported

More information

Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection. Kamal Banger, Ministry of Transportation of Ontario

Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection. Kamal Banger, Ministry of Transportation of Ontario Abstract Performance Evaluation of Non-Intrusive Methods for Traffic Data Collection Kamal Banger, Ministry of Transportation of Ontario Nancy Adriano, P.Eng., Ministry of Transportation of Ontario For

More information

A New Logging-based IP Traceback Approach using Data Mining Techniques

A New Logging-based IP Traceback Approach using Data Mining Techniques using Data Mining Techniques Internet & Multimedia Engineering, Konkuk University, Seoul, Republic of Korea hsriverv@gmail.com, kimsr@konuk.ac.kr Abstract IP Traceback is a way to search for sources of

More information

Evaluation of a laser-based reference system for ADAS

Evaluation of a laser-based reference system for ADAS 23 rd ITS World Congress, Melbourne, Australia, 10 14 October 2016 Paper number ITS- EU-TP0045 Evaluation of a laser-based reference system for ADAS N. Steinhardt 1*, S. Kaufmann 2, S. Rebhan 1, U. Lages

More information

PeMS, Berkeley Highway Lab System, Data Fusion and Future Data Needs

PeMS, Berkeley Highway Lab System, Data Fusion and Future Data Needs PeMS, Berkeley Highway Lab System, Data Fusion and Future Data Needs TRB Workshop on Data Fusion Beckman Conference Center Irvine, California April 15~17, 2009 Xiao-Yun Lu Research Engineer California

More information

Traffic Anomaly Detection on Chalerm Mahanakhon Expressway Using Web-Based Traffic State Data

Traffic Anomaly Detection on Chalerm Mahanakhon Expressway Using Web-Based Traffic State Data Research Article Traffic Anomaly Detection on Chalerm Mahanakhon Expressway Using Web-Based Traffic State Data Chhivhout Sor and Mongkut Piantanakulchai* Sirindhorn International Institute of Technology,

More information

Call for Papers for Communication QoS, Reliability and Modeling Symposium

Call for Papers for Communication QoS, Reliability and Modeling Symposium Call for Papers for Communication QoS, Reliability and Modeling Symposium Scope and Motivation: In modern communication networks, different technologies need to cooperate with each other for end-to-end

More information

Telematics Transport Gateway for Telematics Systems. Independent on Mobile Networks

Telematics Transport Gateway for Telematics Systems. Independent on Mobile Networks Telematics Transport Gateway for Telematics Systems Independent on Mobile Networks Chul-Su Kim 1 *, Jongik Kim, Woo-Yong Han, and Oh-Cheon Kwon 1. Electronics and Telecommunications Research Institute,

More information

Hillstone T-Series Intelligent Next-Generation Firewall Whitepaper: Abnormal Behavior Analysis

Hillstone T-Series Intelligent Next-Generation Firewall Whitepaper: Abnormal Behavior Analysis Hillstone T-Series Intelligent Next-Generation Firewall Whitepaper: Abnormal Behavior Analysis Keywords: Intelligent Next-Generation Firewall (ingfw), Unknown Threat, Abnormal Parameter, Abnormal Behavior,

More information

Internet of things. F r o m t h e n e t w o r k t o. Ing. Patrizia Macrina Ericsson

Internet of things. F r o m t h e n e t w o r k t o. Ing. Patrizia Macrina Ericsson Internet of things F r o m t h e n e t w o r k t o NETWORKED Ing. Patrizia Macrina Ericsson agenda Introduction IoT Technologies Challenges IoT Market Potential IoT Benefits for Society Conclusion Military

More information

5G promotes the intelligence connected vehicles. Dr. Menghua Tao Senior Solution Manager China Unicom

5G promotes the intelligence connected vehicles. Dr. Menghua Tao Senior Solution Manager China Unicom 5G promotes the intelligence connected vehicles Dr. Menghua Tao Senior Solution Manager China Unicom ICT enabled automated driving One of the important features of a smart car is automated driving. As

More information

ONE-ITS Science Gateway

ONE-ITS Science Gateway Science Gateway None of us is as smart as all of us B. Abdulhai, Ph.D., P.Eng. Canada Research Chair in ITS Director, Toronto ITS Centre, U of Toronto M. El-Darieby, Ph.D., P.Eng. Chair, Software Systems

More information

Seamless Multicast Handover in PMIPv6-based Wireless Networks

Seamless Multicast Handover in PMIPv6-based Wireless Networks Seamless Multicast Handover in PMIPv6-based Wireless Networks Moneeb Gohar*, Seok Joo Koh*, Tae-Won Um**, Hyun-Woo Lee** *School of Computer Science and Engineering, Kyungpook National University **Electronic

More information

National Operations Center of Excellence

National Operations Center of Excellence Triennial Review National Operations Center of Excellence Thomas E. Kern NOCoE Managing Director Shailen Bhatt Chair, NOCoE Board of Directors 1 National Operations Center of Excellence Origins of NOCoE

More information

Research Article A Data Gathering Method Based on a Mobile Sink for Minimizing the Data Loss in Wireless Sensor Networks

Research Article A Data Gathering Method Based on a Mobile Sink for Minimizing the Data Loss in Wireless Sensor Networks Distributed Sensor Networks, Article ID 90636, 7 pages http://dx.doi.org/10.1155/014/90636 Research Article A Gathering Method Based on a Mobile Sink for Minimizing the Loss in Wireless Sensor Networks

More information

Korea ICT Market Overview. Yoonmi Kim Finpro Korea

Korea ICT Market Overview. Yoonmi Kim Finpro Korea Korea ICT Market Overview Yoonmi Kim Finpro Korea 5G Advanced Network Key Players Network Service Provider Electronics Company Car and Car Component Company - 5G Antenna Technoloies for Mobile device and

More information

Temporally Adaptive A* Algorithm on Time Dependent Transportation Network

Temporally Adaptive A* Algorithm on Time Dependent Transportation Network Temporally Adaptive A* Algorithm on Time Dependent Transportation Network Nianbo Zheng, Feng Lu Institute of Geographic Sciences and Natural Resources Research Chinese Academy of Sciences Beijing, 100101,

More information

Interference Management Scheme for Wireless Sensor Network

Interference Management Scheme for Wireless Sensor Network , pp.64-69 http://dx.doi.org/0.4257/astl.204.46.5 Interference Management Scheme for Wireless Sensor Network Sangmi Moon, Saransh Malik, Bora Kim, Hun Choi, Jinsul Kim, Cheolhong Kim, and Intae Hwang Dept.

More information

High Utility Web Access Patterns Mining from Distributed Databases

High Utility Web Access Patterns Mining from Distributed Databases High Utility Web Access Patterns Mining from Distributed Databases Md.Azam Hosssain 1, Md.Mamunur Rashid 1, Byeong-Soo Jeong 1, Ho-Jin Choi 2 1 Database Lab, Department of Computer Engineering, Kyung Hee

More information

PORTAL. A Case Study. Dr. Kristin Tufte Mark Wong September 23, Linux Plumbers Conference 2009

PORTAL. A Case Study. Dr. Kristin Tufte Mark Wong September 23, Linux Plumbers Conference 2009 PORTAL A Case Study Dr. Kristin Tufte (tufte@cecs.pdx.edu) Mark Wong (markwkm@postgresql.org) Linux Plumbers Conference 2009 September 23, 2009 Overview What is PORTAL? How PORTAL works Improving PORTAL

More information

Parallel string matching for image matching with prime method

Parallel string matching for image matching with prime method International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 10, Issue 6 (June 2014), PP.42-46 Chinta Someswara Rao 1, 1 Assistant Professor,

More information

Expanding ICT Infrastructure for Rural Areas in Korea

Expanding ICT Infrastructure for Rural Areas in Korea Expanding ICT Infrastructure for Rural Areas in Korea Hyongsoon Kim*, Eunyoung Lee** * Digital Infrastructure Division, National Information Society Agency, Seoul, Korea **Dept. of Computer Science, Dongduk

More information