A new system architecture for cooperative traffic centres - the sim TD field trial

Size: px
Start display at page:

Download "A new system architecture for cooperative traffic centres - the sim TD field trial"

Transcription

1 19th ITS World Congress, Vienna, Austria, 22/26 October 2012 EU A new system architecture for cooperative traffic centres - the sim TD field trial Dr. Dirk Hübner 1, Dipl.-Ing. Gerd Riegelhuth 2 1. Heusch/Boesefeldt GmbH, Tempelhofer Str. 4, D Aachen, Germany, +49 (0) , dirk.huebner@heuboe.de 2. Hessen Mobil Straßen- und Verkehrsmanagement, Wiesbaden, Germany Abstract Vehicle-to-vehicle (V2V) and vehicle-to-infrastructure (V2I) communication has been a research and development topic for many years now. Today technological improvements offer the required communication bandwidth and allow serial production of in-car-equipment. The R&D project sim TD (safe & intelligent mobility test field Germany) aims to test V2X technology in real life with more than 100 vehicles. It is thus the first V2X project conducting a field trial with a sufficient number of vehicles to achieve significant evaluation results. The field trial is not the only thing, which made sim TD unique: the main project goal is not to test technologies, but to evaluate cooperative applications in real environment including infrastructure and especially the traffic centre to be fully integrated into these applications. Therefore a new cooperative traffic centre was designed and implemented as well, requiring new technical approaches to cope with new functional and non-functional requirements, like information constantly flowing in from a high number of moving probes. This paper presents the approach taken in sim TD concerning the general system architecture of the traffic centre. It then focuses on specific problem areas, like location referencing or software deployment in a cooperative environment. Requirements in sim TD have led to a new hybrid system architecture and made it necessary to choose a completely new approach for location referencing on the traffic centre side. Keywords System architecture, cooperative systems, V2V and V2I based applications, location referencing, service oriented architecture, SOA, enterprise service bus, ESB Introduction Autonomous driver assistance systems have a positive influence on road safety and management. This effect can be enhanced if vehicles are networked both with each other and elements of the road infrastructure. For this reason, R&D work in the field of intelligent vehicles and intelligent roads focuses on cooperative systems, which enable this networking (so called V2X communications). Cooperative systems can improve the quality and reliability of information about vehicles, their location and their surroundings. For the first time, the R&D project Safe & Intelligent Mobility Test Field Germany (sim TD ) is going to test and evaluate cooperative applications. The sim TD system consists of the subsystems test fleet (ITS Vehicle Stations IVS), roadside stations (ITS Roadside Stations IRS) and the cooperative traffic centre (ITS Central Station ICS). The ICS is implemented in and directly linked to the Traffic Center Hesse (VZH), one of the most effective traffic control centres in Europe, and to the urban traffic management centre of the city of Frankfurt (IGLZ). The ICS gathers all information available from cooperative vehicles as well as traffic data, traffic messages and roadwork information provided by the

2 extensive traffic management systems of VZH and IGLZ. It performs a fusion of the available information sources and provides harmonised real-time information to the vehicles via mobile WLAN (via IRS) and UTMS communication. Figure 1 shows an overview of the sim TD system environment. Figure 1 Overview of the sim TD system environment This paper presents the new approach taken in sim TD to implement a cooperative traffic centre, leading to a new type of architecture for ITS centres. First, the new functional and non-functional requirements of the sim TD project are taken into account, leading to architectural decisions taken in the design process for the ICS. Different alternatives are evaluated and the resulting architecture is motivated. Requirements for the System Architecture Looking at system architectures the non-functional requirements of a system are fundamental. Examples are Performance Adaptability Maintainability Flexibility/Expandability Availability Robustness For the first traffic systems requirements like adaptability, maintainability and flexibility were no big issue. Most of the systems were still comparably small and easy to handle. Availability and robustness of course have always been important requirements for any kind of traffic system. Traffic management operation may be classified into two main philosophies, when looking at the early years of traffic management: 2

3 mainly automatic traffic data processing with automatic decision and measure activation mainly operator driven decision and manual activation of traffic measures For automatic operation a reasonable amount of input data about traffic has to be acquired and processed. Therefore, focus is on processing performance, leading to the following requirements and already suggesting architectural patterns to be used: real-time processing of a large amount of data with reasonable processing power separation of graphical user interface (GUI) and server: client-server-architecture distributed system architecture (load distribution) With focus on manual operation, video was the main source of information in early systems. Here, workflow and operator support is more important: integration and interaction of different subsystems (especially video) supporting operator decisions implementation of the required workflows Modern ITS systems are combining both approaches in order to provide automatic decision support for operators on one hand without giving away the possibility for manual intervention. On the other hand the development in the market is getting faster. Type and amount of data and information to be handled is constantly growing. New and improved methods, techniques and algorithms are available. Without reaction to this development, a system will be outdated very soon. This further development in traffic management and information technology leads to additional requirements for the system architecture: access to the system for a larger number of users (for different departments or even other organisations) o zero-installation clients o external access, e.g. via internet increasing focus on maintainability, adaptability, flexibility and expandability o loosely coupled components o standard interfaces and protocols more complex workflows have to be supported, with interaction of different systems or even traffic centres; workflows should be configurable Last, but not least, cooperative systems are making vehicles intelligent and introduce communication between them and the infrastructure. This requires a more flexible way of handling information. Sensors are no longer restricted to fixed numbers and places, but may appear, disappear, and circulate all over the network. Architecture Decisions General choices The basic principle of a system architecture, i.e. structure and interaction of the different components of a system, may be described via so called architectural patterns. The aim of such patterns is 3

4 to structure the components of a complex system to define methods for distribution of components in network and over resources to structure the interaction between user and system to support maintainability, adaptability and flexibility of the system Examples for such patterns are distribution, client-server, layering, service oriented architecture etc. Different patterns may appear in parallel within big systems in order to support different non-functional requirements. Today, layered architectures are standard. The basic principle of layering is to introduce abstraction by restricting communication to neighbouring layers. Commonly used is the 3- tier-architecture, structuring a system into the three layers presentation, application processing and data management (see Figure 2 3-tier-architecture). Figure 2 3-tier-architecture The layering pattern can be used independent from other architectural patterns. As the focus will now be on communication patterns, the following figures will not show the layers any more. Based on the requirements listed above, different approaches for the system architecture of ITS centres can be found: Data centred architectures (focusing on efficient data processing) Centres based on SCADA systems (Supervisory Control and Data Acquisition) Service oriented architectures (SOA) Data centred architectures are based on a central component responsible for inter-process communication, called data bus or data distributor, which works based on the publishsubscribe-pattern (see Figure 3). Data modelling and interface definition and capabilities are data driven. The user representation, i.e. an object view on information, has to be produced by the GUI, as the GUI is similar to any other module concerning its pure data interfaces. 4

5 Figure 3 Data centred architecture For SCADA systems the type of architecture depends on the SCADA product. Early systems even started as monolithic applications, evolving to distributed/networked system architectures today. SCADA systems are intended to control industrial installations, interfacing to programmable logic controllers / process automation controllers (PLC/PAC, see Figure 4). Figure 4 SCADA system overview In traffic management SCADA systems can mainly be found in tunnel centres. The controlled environment is expected to be static concerning number, type and location of objects. Anyway, processing performance for a large number thousands of sensors often is a major challenge for these products. SOA approaches implement the functionality of a system via different services. The communication pattern is different to data centred architectures; it is called request-response. A service implements a specific functionality, which may be used via a request to it. After completion of the functionality a response is sent, including return data resulting from the request (see Figure 5). 5

6 Figure 5 Request-response communication pattern Compared to data centred architectures, SOA allow a much easier modelling of workflows, but this may result in complex service interactions (see Figure 6). Due to the object oriented approach, performance often is a critical point, too. The SOA pattern is not well suited for processing large amounts of data. Figure 6 Service Oriented Architecture The Enterprise Service Bus (ESB) is a further development of the SOA, eliminating major disadvantages. A central service bus is implemented handling communication between services, GUI and external systems. An important aspect of ESB architectures is manageability. Services only interface to other services via the ESB as a broker (see Figure 7). In addition to this ESB provides a generic message interface and takes care of routing (normalized message router NMR). Anyway, it sticks to the request-response-pattern and therefore performance still is a critical issue for ESB architectures. 6

7 Figure 7 Enterprise Service Bus architecture Decisions induced by sim TD In cooperative systems vehicles function as mobile probes, but also offer information to other vehicles via V2I communication, somehow making them a mobile sign as well. When a vehicle is started it suddenly appears in the system, and it disappears when it is switched off. Therefore, the static, often very complex system configuration of classical ITS centres is no longer sufficient. Compared to standard, dynamic traffic information, vehicle based information is much more dynamic concerning changes in content and location. For V2I communication no fixed location referencing method should be applied. Therefore, vehicles are also supposed to work with coordinates, preferably using so-called traces providing a polygon of the vehicle movement and thereby offering additional information on direction and allowing more precise map matching. In order to comply with these requirements it was decided to reduce the complexity of the configuration and to make it flexible for integration of vehicles. In addition to statically generated configuration layers on top of the basic digital map, a service has been introduced performing on-the-fly mapping. Another architecture decision results from the need for integration of components implemented by different project partners. Here, a single standard framework should be used and compatibility between development frameworks (in-car and centre) had to be guaranteed. For project partners standard interfaces implement functionality as well as data transfer. As a solution, a SOA based on an ESB product has been chosen. Anyway, sim TD induces high performance requirements on data processing due to a large amount of input data, which cannot be handled via ESB architecture. In addition to fixed sensor data, especially mobile data from vehicles has to be processed in real-time, consisting of floating car data and vehicle generated messages (PVD - Probe Vehicle Data, CAN - Cooperative Awareness Message, DEN - Decentralized Environmental Notification). Therefore, a data centred subsystem is used, performing data acquisition, storage, and fusion. 7

8 Architecture for a Cooperative Traffic Centre The hybrid architecture The sim TD ICS incorporates the requirements mentioned before most efficient. An implementation using one of the architecture paradigms (data centred or SOA) exclusively will not lead to the desired requirement coverage. Therefore, a hybrid architecture, taking advantage of both architecture paradigms, has been chosen for the implementation of the sim TD ICS. The basic type of architecture chosen is an ESB-based SOA. The Fuse ESB product used supports OSGi TM (OSGi TM Alliance - former Open Services Gateway initiative) for deployment of components, which is also used for the in-car systems. In order to fulfil performance requirements, a data centred subsystem (based on the GeoDyn2 middleware) has been additionally integrated, performing data acquisition, storage and fusion. Integration has been done via a data bus interface to the ESB (see Figure 8). Providing service interfaces using request-response pattern as well as high performance data distribution interfaces made it possible to choose the communication pattern per component according to its non-functional requirements. Even hybrid components may be implemented, if required. Figure 8 Hybrid architecture incorporating enterprise service bus and data bus Location referencing and system configuration As stated before, the sim TD ICS must handle dynamic, non-static data sources and receivers. Instead of static location referencing, e.g. via RDS/TMC or digital map road elements, an onthe-fly map matching service was implemented, which is based on WSG84 coordinates. This mechanism is applied in both directions, from vehicle to centre and centre to vehicle. In the centre on-the-fly map matching is done as solution for location referencing of vehicle data. Coordinate matching is done in combination with a routing algorithm increasing matching precision by using coordinate traces instead of single point matching (see Figure 9). 8

9 Figure 9 Static vs. dynamic location referencing applying map matching When delivering information to vehicles, the centre indicates the area of relevance via different area types or polygons. This way, the vehicle is able to determine, whether the information is relevant, and if so, when it has to be presented to the driver. As a by-product map matching allows strong simplification of data model and digital map configuration, because map matching may also be used to integrate standard location referencing and thereby reduces the number of fixed configuration layers. In addition to this, the architecture is open for enhancement by improving on-the-fly location referencing by using standardised techniques like AGORA-C (ISO Standard ) or OpenLR TM ( Central ICS services Here is an overview of the most important services and components implemented in the sim TD ICS: Enterprise Service Bus o Fuse ESB, standards-based enterprise service bus based on Apache ServiceMix Data management layer o DataService, offering access to any data in the system (storage and retrieval) and interconnecting service bus and data bus o Data bus, realized by the GeoDyn2 product, including database access, data history o PostgreSQL relational database management Application layer o MapMatching service (see above), providing dynamic and static location referencing methods o TrafficMessageManagement services, implementing message lifecycle management and access to traffic information objects (input and output) o DataFusion component performing fusion of fixed sensor based and vehicle based traffic data and information Presentation layer o Browser-based GUI o GUI services, like WebMapService (digital map representation), ShapeFileService (dynamic generation of shape files for online traffic information), ObjectInfoService (providing object-oriented access to capabilities and attributes). 9

10 Summary The sim TD field trial appears to be the first trial evaluating the complete system environment and architecture needed to implement cooperative applications, including the cooperative traffic center which had to be newly designed and implemented. Size and scope of the project raise a wide range of non-functional requirements for the central system. During the systen design phase these requirements had to be analyzed carefully and a suitable system architecture had to be chosen. Standard approaches, which can be found looking at existing traffic centers, were not able to fulfil requirements in a sufficient way. Therfore a new, hybrid approach has been chosen based on ESB-SOA together with a high-performance subsystem using a data centered architecture. The system has already been implemented and integrated in the overall sim TD system. During implementation, system test, and preparation for field trial the approach has proved to incorporate the wide-spread requirements most efficient. Perspectives In sim TD V2I communication is supposed to be done using WLAN technology. Mobile radio communication (today via UMTS) is used to bridge the gap in case roadside infrastructure is not available. Future implementations will be based on a hybrid approach, depending on the type of application to be supported. For example, immediate hazard warning from infrastructure to vehicle may be done via WLAN for danger spots. Applications without strict realtime requirements but requiring area-wide coverage, like routing advices via navigation, will be based on mobile radio. LTE (Long-Term-Evolution) will be the next step here, together with load balancing via virtual subcenters. For traffic management, the future surely will be in cooperative systems. Therefore, the project findings concerning system architecture and technologies will have to be applied for productive use in the operational Traffic Center Hessen in order to be prepared for the future of mobility. Acknowledgement(S) Project sim TD is a collaboration between German car makers, automotive suppliers, communications companies, research institutes and the public sector. The project is sponsored and supported by Germany s Federal Ministries of Economics and Technology (BMWi), Education and Research (BMBF), and Transport, Building and Urban Development (BMVBS), as well as the Federal State of Hessen. References 1. Dunkel, J. (2008). Systemarchitekturen für verteilte Anwendungen, Hanser, München 2. Bell, M. (2008). Service-Oriented Modeling: Service Analysis, Design, and Architecture, Wiley, Hoboken, NJ, USA. 3. Demolsky, M. (2008). Enterprise Service Bus Die Konzepte, article on jaxenter, artikel/enterprise-service-bus-1662.html 4. sim TD : shaping the future of road safety and mobility via car-to-x communication, sim TD Consortium, 5. OSGi TM - The Dynamic Module System for Java, OSGi TM Alliance, 6. GeoDyn2 middelware, Heusch/Boesefeldt GmbH, 10

MANAGEMENT OF ROADISDE UNITS FOR THE sim TD FIELD TEST (GERMANY)

MANAGEMENT OF ROADISDE UNITS FOR THE sim TD FIELD TEST (GERMANY) MANAGEMENT OF ROADISDE UNITS FOR THE sim TD FIELD TEST (GERMANY) Manuel Fünfrocken *, Bechir Allani, Thomas Baum, Arno Hinsberger, Jonas Vogt, Sebastian Weber, Prof. Dr. Horst Wieker University of Applied

More information

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET-

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- ABSTRACT INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- Bahidja Boukenadil¹ ¹Department Of Telecommunication, Tlemcen University, Tlemcen,Algeria Now in the world, the exchange of information between

More information

Creating new university management software by methodologies of Service Oriented Architecture (SOA)

Creating new university management software by methodologies of Service Oriented Architecture (SOA) Creating new university management software by methodologies of Service Oriented Architecture (SOA) Tuomas Orama, Jaakko Rannila Helsinki Metropolia University of Applied Sciences, Development manager,

More information

Management of transportation systems

Management of transportation systems Innovation policy, information society, telecommunications A short review of German research initiatives DEUFRAKO Seminar Dresden, 17.10.2008 Magnus Lamp TÜV Rheinland www.tuvpt.de Content and structure

More information

Business-Driven Software Engineering Lecture 3 Foundations of Processes

Business-Driven Software Engineering Lecture 3 Foundations of Processes Business-Driven Software Engineering Lecture 3 Foundations of Processes Jochen Küster jku@zurich.ibm.com Agenda Introduction and Background Process Modeling Foundations Activities and Process Models Summary

More information

Java-based Functionality and Data Management in the Automobile. Prototyping at BMW Car IT GmbH. by Alexandre Saad, BMW Car IT GmbH, Munich/Germany

Java-based Functionality and Data Management in the Automobile. Prototyping at BMW Car IT GmbH. by Alexandre Saad, BMW Car IT GmbH, Munich/Germany Java-based Functionality and Data Management in the Automobile. Prototyping at BMW Car IT GmbH. by Alexandre Saad, BMW Car IT GmbH, Munich/Germany The amount of electronic and software elements in vehicles

More information

Wireless traffic Safety network between Cars. CoMoSeF TULEVAT TRENDIT AUTOJEN M2M KOMMUNIKAATIOSSA WISAFECAR JA COMOSEF PROJEKTIT

Wireless traffic Safety network between Cars. CoMoSeF TULEVAT TRENDIT AUTOJEN M2M KOMMUNIKAATIOSSA WISAFECAR JA COMOSEF PROJEKTIT TULEVAT TRENDIT AUTOJEN M2M KOMMUNIKAATIOSSA WISAFECAR JA COMOSEF PROJEKTIT WiSafeCar Particpants Mobisoft (Co-ordinator) Finnish Meteorological Institute VTT Infotripla Taipale Telematics Sunit University

More information

IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities.

IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities. Application integration solutions To support your IT objectives IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities. Market conditions and business

More information

Enterprise Service Bus Defined. Wikipedia says (07/19/06)

Enterprise Service Bus Defined. Wikipedia says (07/19/06) Enterprise Service Bus Defined CIS Department Professor Duane Truex III Wikipedia says (07/19/06) In computing, an enterprise service bus refers to a software architecture construct, implemented by technologies

More information

CVIS Cooperation Vehicle Infrastructure Systems

CVIS Cooperation Vehicle Infrastructure Systems CVIS Cooperation Vehicle Infrastructure Systems Øyvind Kristiansen, Q-Free Fagmøte NVTF Østlandet 7. oktober 2009 Outline CVIS Project CVIS Architecture CVIS Applications CVIS PROJECT What can be improved?

More information

Potential Role of an Enterprise Service Bus (ESB) in Simulation

Potential Role of an Enterprise Service Bus (ESB) in Simulation Doug Stapleton IBM Australia Limited 28 Sydney Avenue, Forrest ACT 2603 AUSTRALIA dougstap@au1.ibm.com ABSTRACT This paper considers eight areas where an Enterprise Service Bus (ESB) can contribute to

More information

Tomáš Müller IT Architekt 21/04/2010 ČVUT FEL: SOA & Enterprise Service Bus. 2010 IBM Corporation

Tomáš Müller IT Architekt 21/04/2010 ČVUT FEL: SOA & Enterprise Service Bus. 2010 IBM Corporation Tomáš Müller IT Architekt 21/04/2010 ČVUT FEL: SOA & Enterprise Service Bus Agenda BPM Follow-up SOA and ESB Introduction Key SOA Terms SOA Traps ESB Core functions Products and Standards Mediation Modules

More information

Ahead of the Curve with Intelligent. Transportation

Ahead of the Curve with Intelligent. Transportation Ahead of the Curve with Intelligent Transportation Advanced technologies to ensure the safe, efficient, and secure movement of passengers and freight. Intelligent transportation is changing the way America

More information

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Service Oriented Architecture SOA and Web Services John O Brien President and Executive Architect Zukeran Technologies

More information

Service Mediation. The Role of an Enterprise Service Bus in an SOA

Service Mediation. The Role of an Enterprise Service Bus in an SOA Service Mediation The Role of an Enterprise Service Bus in an SOA 2 TABLE OF CONTENTS 1 The Road to Web Services and ESBs...4 2 Enterprise-Class Requirements for an ESB...5 3 Additional Evaluation Criteria...7

More information

SOA-14: Continuous Integration in SOA Projects Andreas Gies

SOA-14: Continuous Integration in SOA Projects Andreas Gies Distributed Team Building Principal Architect http://www.fusesource.com http://open-source-adventures.blogspot.com About the Author Principal Architect PROGRESS - Open Source Center of Competence Degree

More information

IFS-8000 V2.0 INFORMATION FUSION SYSTEM

IFS-8000 V2.0 INFORMATION FUSION SYSTEM IFS-8000 V2.0 INFORMATION FUSION SYSTEM IFS-8000 V2.0 Overview IFS-8000 v2.0 is a flexible, scalable and modular IT system to support the processes of aggregation of information from intercepts to intelligence

More information

Location Identification and Vehicle Tracking using VANET(VETRAC)

Location Identification and Vehicle Tracking using VANET(VETRAC) Location Identification and Vehicle Tracking using VANET(VETRAC) Supervisor Name: Md. Mosaddik Hasan Assistant Professor Dept. of CSE MBSTU Md. Al-Amin Nipu CE-10031 Dept. of CSE MBSTU Abstract: Large

More information

Mobile Access Controller

Mobile Access Controller Solution overview Mobile Access Controller Mobile Workforce Communication Solution NEC Australia nec.com.au Reliable voice and data coverage for field workers. Overview Designed specifically for vehicle

More information

How can the Future Internet enable Smart Energy?

How can the Future Internet enable Smart Energy? How can the Future Internet enable Smart Energy? FINSENY overview presentation on achieved results Prepared by the FINSENY PMT April 2013 Outline Motivation and basic requirements FI-PPP approach FINSENY

More information

Prerequisites for Successful SOA Adoption

Prerequisites for Successful SOA Adoption George Feuerlicht University of Technology, Sydney jiri@it.uts.edu.au 1. INTRODUCTION The adoption of SOA (Service Oriented Architecture) has gained momentum in the past two years, and the predictions

More information

An Oracle White Paper October 2013. Maximize the Benefits of Oracle SOA Suite 11g with Oracle Service Bus

An Oracle White Paper October 2013. Maximize the Benefits of Oracle SOA Suite 11g with Oracle Service Bus An Oracle White Paper October 2013 Maximize the Benefits of Oracle SOA Suite 11g with Oracle Service Bus Maximize the Benefits of Oracle SOA Suite 11g with Oracle Service Bus Table of Contents Introduction...

More information

SERVICE ORIENTED ARCHITECTURE

SERVICE ORIENTED ARCHITECTURE SERVICE ORIENTED ARCHITECTURE Introduction SOA provides an enterprise architecture that supports building connected enterprise applications to provide solutions to business problems. SOA facilitates the

More information

Implementation of CVIS ITS Application in a Driving Simulator Environment Kenneth Sørensen, kenneth.sorensen@sintef.no SINTEF

Implementation of CVIS ITS Application in a Driving Simulator Environment Kenneth Sørensen, kenneth.sorensen@sintef.no SINTEF Denne artikel er publiceret i det elektroniske tidsskrift Artikler fra Trafikdage på Aalborg Universitet (Proceedings from the Annual Transport Conference at Aalborg University) ISSN 1603-9696 www.trafikdage.dk/artikelarkiv

More information

How To Build A Financial Messaging And Enterprise Service Bus (Esb)

How To Build A Financial Messaging And Enterprise Service Bus (Esb) Simplifying SWIFT Connectivity Introduction to Financial Messaging Services Bus A White Paper by Microsoft and SAGA Version 1.0 August 2009 Applies to: Financial Services Architecture BizTalk Server BizTalk

More information

Car2x From Research to Product Development

Car2x From Research to Product Development Car2x From Research to Product Development How automotive OEMs and suppliers are successfully completing production Car2x projects Car2x systems present entirely new challenges for managers in product

More information

GEMALTO M2M KEY TECHNOLOGY TRENDS OF M2M

GEMALTO M2M KEY TECHNOLOGY TRENDS OF M2M GEMALTO M2M KEY TECHNOLOGY TRENDS OF M2M Anvay Lonkar, Marketing Manager M2M Solutions & Services Gemalto M2M FORUM, MILAN, 15 May 2013 Gemalto delivers trusted and convenient digital services to billions

More information

Distributed systems. Distributed Systems Architectures

Distributed systems. Distributed Systems Architectures Distributed systems Distributed Systems Architectures Virtually all large computer-based systems are now distributed systems. Information processing is distributed over several computers rather than confined

More information

Implementation of Information Integration Platform in Chinese Tobacco Industry Enterprise Based on SOA. Hong-lv Wang, Yong Cen

Implementation of Information Integration Platform in Chinese Tobacco Industry Enterprise Based on SOA. Hong-lv Wang, Yong Cen Implementation of Information Integration Platform in Chinese Tobacco Industry Enterprise Based on SOA Hong-lv Wang, Yong Cen Information Center, China Tobacco Zhejiang Industrial Co., Ltd Hangzhou, China,

More information

Chapter 6 Essentials of Design and the Design Activities

Chapter 6 Essentials of Design and the Design Activities Systems Analysis and Design in a Changing World, sixth edition 6-1 Chapter 6 Essentials of Design and the Design Activities Chapter Overview There are two major themes in this chapter. The first major

More information

HRS Infrastructure in Germany and Europe - Current activities

HRS Infrastructure in Germany and Europe - Current activities HRS Infrastructure in Germany and Europe - Current activities June 19th, 2014 Washington D.C. Dr. Hanno Butsch Head of International Cooperation NOW GmbH National Organization Hydrogen and Fuel Cell Technology

More information

Automotive Communication via Mobile Broadband Networks

Automotive Communication via Mobile Broadband Networks Automotive Communication via Mobile Broadband Networks Dr. Joachim Sachs Ericsson Corporate Research, Aachen Contributors: René Rembarz, Mai-Anh Phan, Sabine Sories Where are we in telecommunications?

More information

Technical Analysis of Business Rules and SOA

Technical Analysis of Business Rules and SOA - White Paper - Business Rules and SOA: Parallels and Synergies Innovations Softwaretechnologie GmbH Ziegelei 7-88090 Immenstaad Germany Tel. ++49 (7545) 202-500 www.visual-rules.com info@visual-rules.de

More information

PIE. Internal Structure

PIE. Internal Structure PIE Internal Structure PIE Composition PIE (Processware Integration Environment) is a set of programs for integration of heterogeneous applications. The final set depends on the purposes of a solution

More information

An OSGi based HMI for networked vehicles. Telefónica I+D Miguel García Longarón

An OSGi based HMI for networked vehicles. Telefónica I+D Miguel García Longarón June 10-11, 2008 Berlin, Germany An OSGi based HMI for networked vehicles Telefónica I+D Miguel García Longarón Networked Vehicle 2 Networked Vehicle! Tomorrow, the vehicles will be networked! Using Always

More information

Event based Enterprise Service Bus (ESB)

Event based Enterprise Service Bus (ESB) Event based Enterprise Service Bus (ESB) By: Kasun Indrasiri 128213m Supervised By: Dr. Srinath Perera Dr. Sanjiva Weerawarna Abstract With the increasing adaptation of Service Oriented Architecture for

More information

Service Oriented Architectures

Service Oriented Architectures 8 Service Oriented Architectures Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) alonso@inf.ethz.ch http://www.iks.inf.ethz.ch/ The context for SOA A bit of history

More information

New Broadband and Dynamic Infrastructures for the Internet of the Future

New Broadband and Dynamic Infrastructures for the Internet of the Future New Broadband and Dynamic Infrastructures for the Internet of the Future Margarete Donovang-Kuhlisch, Government Industry Technical Leader, Europe mdk@de.ibm.com Agenda Challenges for the Future Intelligent

More information

ADAPTIVE SOA INFRASTRUCTURE BASED ON VARIABILITY MANAGEMENT. Peter Graubmann, Mikhail Roshchin

ADAPTIVE SOA INFRASTRUCTURE BASED ON VARIABILITY MANAGEMENT. Peter Graubmann, Mikhail Roshchin 70 ADAPTIVE SOA INFRASTRUCTURE BASED ON VARIABILITY MANAGEMENT Peter Graubmann, Mikhail Roshchin Abstract: In order to exploit the adaptability of a SOA infrastructure, it becomes necessary to provide

More information

Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus

Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus Level: Advanced Jean-Louis Maréchaux (jlmarech@ca.ibm.com), IT Architect, IBM 28 Mar 2006 Today's business

More information

Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management

Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management FRANK SCHLAEGER 1, MICHAEL NATSCHKE 1 & DANIEL WITHAM 2 1 Kisters AG, Charlottenburger Allee 5, 52068 Aachen,

More information

Floating Car Data in the Netherlands

Floating Car Data in the Netherlands Floating Car Data in the Netherlands Aad de Hoog Ministry of Transport, Public Works and Water Management The Netherlands 1 Overview Setting the scene Concept, technique and results Dutch policy Future

More information

Using ESB and BPEL for evolving healthcare systems towards SOA

Using ESB and BPEL for evolving healthcare systems towards SOA ehealth Beyond the Horizon Get IT There S.K. Andersen et al. (Eds.) IOS Press, 2008 2008 Organizing Committee of MIE 2008. All rights reserved. 747 Using ESB and BPEL for evolving healthcare systems towards

More information

A Unified Messaging-Based Architectural Pattern for Building Scalable Enterprise Service Bus

A Unified Messaging-Based Architectural Pattern for Building Scalable Enterprise Service Bus A Unified Messaging-Based Architectural Pattern for Building Scalable Enterprise Service Bus Karim M. Mahmoud 1,2 1 IBM, Egypt Branch Pyramids Heights Office Park, Giza, Egypt kmahmoud@eg.ibm.com 2 Computer

More information

Enterprise Service Bus Evaluation as Integration Platform for Ocean Observatories

Enterprise Service Bus Evaluation as Integration Platform for Ocean Observatories Enterprise Service Bus Evaluation as Integration Platform for Ocean Observatories Durga pavani Brundavanam, Mississippi state university Mentor: Kevin Gomes Summer 2009 Keywords: Integration, Enterprise

More information

Secure Networks for Process Control

Secure Networks for Process Control Secure Networks for Process Control Leveraging a Simple Yet Effective Policy Framework to Secure the Modern Process Control Network An Enterasys Networks White Paper There is nothing more important than

More information

information exchange co-operation www.mdm-portal.de

information exchange co-operation www.mdm-portal.de information exchange co-operation www.mdm-portal.de A new mobility, promising high added value. The MDM: Mobility Data Marketplace will help us getting there. Real-time traffic information enables educated

More information

Service-Oriented Architecture and Software Engineering

Service-Oriented Architecture and Software Engineering -Oriented Architecture and Software Engineering T-86.5165 Seminar on Enterprise Information Systems (2008) 1.4.2008 Characteristics of SOA The software resources in a SOA are represented as services based

More information

APPLICATION-AWARE ROUTING IN SOFTWARE-DEFINED NETWORKS

APPLICATION-AWARE ROUTING IN SOFTWARE-DEFINED NETWORKS APPLICATION-AWARE ROUTING IN SOFTWARE-DEFINED NETWORKS SARO VELRAJAN Director of Technology, Aricent APPLICATION-AWARE ROUTING IN SOFTWARE-DEFINED NETWORKS Service providers are constantly exploring avenues

More information

PSIwms - Warehouse Management Software in the Logistical Network

PSIwms - Warehouse Management Software in the Logistical Network PSIwms - Warehouse Management Software in the Logistical Network Future-oriented flexibility Software for comprehensive total solutions Flexibility, efficiency, transparency, sustainability and information

More information

Guiding Principles for Technical Architecture

Guiding Principles for Technical Architecture This document is a statement of the principles that will guide the technical development of the Kuali Student system. It will serve as a reference throughout the full lifecycle of the project. While these

More information

Leveraging BPM Workflows for Accounts Payable Processing BRAD BUKACEK - TEAM LEAD FISHBOWL SOLUTIONS, INC.

Leveraging BPM Workflows for Accounts Payable Processing BRAD BUKACEK - TEAM LEAD FISHBOWL SOLUTIONS, INC. Leveraging BPM Workflows for Accounts Payable Processing BRAD BUKACEK - TEAM LEAD FISHBOWL SOLUTIONS, INC. i Fishbowl Solutions Notice The information contained in this document represents the current

More information

Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces

Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces Software Engineering, Lecture 4 Decomposition into suitable parts Cross cutting concerns Design patterns I will also give an example scenario that you are supposed to analyse and make synthesis from The

More information

Security Operation Management Initiatives in Cooperative Vehicle-Infrastructure Systems for Safe Driving

Security Operation Management Initiatives in Cooperative Vehicle-Infrastructure Systems for Safe Driving Hitachi Review Vol. 65 (2016), No. 1 747 Featured Articles Security Operation Management Initiatives in Cooperative Vehicle-Infrastructure Systems for Safe Driving Akira Mizutani Mai Kawamura Eriko Ando

More information

Introduction to Service Oriented Architectures (SOA)

Introduction to Service Oriented Architectures (SOA) Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction

More information

Enterprise Service Bus: Five Keys for Taking a Ride

Enterprise Service Bus: Five Keys for Taking a Ride About this research note: Technology Insight notes describe emerging technologies, tools, or processes as well as analyze the tactical and strategic impact they will have on the enterprise. Enterprise

More information

ITU-T Kaleidoscope Conference Innovations in NGN. Managing NGN using the SOA Philosophy. Y. Fun Hu University of Bradford y.f.hu@bradford.ac.

ITU-T Kaleidoscope Conference Innovations in NGN. Managing NGN using the SOA Philosophy. Y. Fun Hu University of Bradford y.f.hu@bradford.ac. ITU-T Kaleidoscope Conference Innovations in NGN Managing NGN using the SOA Philosophy Y. Fun Hu University of Bradford y.f.hu@bradford.ac.uk Next Generation Network (NGN) A IP/IMS based network Provide

More information

in Health Care and Sensor Networks

in Health Care and Sensor Networks 16 th FFV Workshop Web Services in Health Care and Sensor Networks Fahad Aijaz Department of Communication Networks RWTH Aachen University, Germany FFV Workshop, March 13, 2009 Outline Wireless Sensor

More information

A standards-based approach to application integration

A standards-based approach to application integration A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist Macnair@us.ibm.com Copyright IBM Corporation 2005. All rights

More information

ELDIS Software Police and safety

ELDIS Software Police and safety ELDIS Software Police and safety creating safety by technology! 1 Product information ELDIS ELDIS The safety expert in the police environment Increased safety thanks to many years of experience Eurofunk

More information

Software Defined Networking

Software Defined Networking Software Defined Networking Part 1: The rise of programmable networks Market context Technology concept Business benefits In summary: As IDC points out, the emergence of Software Defined Networking (SDN),

More information

September 8th 8:30 AM 10:00 AM PL1: Reinventing Policy to Support the New ITS

September 8th 8:30 AM 10:00 AM PL1: Reinventing Policy to Support the New ITS September 8th 8:30 AM 10:00 AM PL1: Reinventing Policy to Support the New ITS September 8th 10:30 AM 12:00 PM AM01: Sustainable Transportation Performance Measures: Best Practices September 8th 10:30 AM

More information

SDN and NFV in the WAN

SDN and NFV in the WAN WHITE PAPER Hybrid Networking SDN and NFV in the WAN HOW THESE POWERFUL TECHNOLOGIES ARE DRIVING ENTERPRISE INNOVATION rev. 110615 Table of Contents Introduction 3 Software Defined Networking 3 Network

More information

Project Portfolio Management Cloud Service

Project Portfolio Management Cloud Service Portfolio Management PROMATIS Enterprise Cloud Service for Portfolio Management Control Costing Billing Contracts Performance Reporting Continuous, enterprise-wide Business Processes Oracle Fusion Applications

More information

TomTom HAD story How TomTom enables Highly Automated Driving

TomTom HAD story How TomTom enables Highly Automated Driving TomTom HAD story How TomTom enables Highly Automated Driving Automotive World Webinar 12 March 2015 Jan-Maarten de Vries VP Product Marketing TomTom Automotive Automated driving is real and it is big Image:

More information

IPv4 to IPv6 Network Transformation

IPv4 to IPv6 Network Transformation IPv4 to IPv6 Network Transformation prof. Antoni Slavinski, Nikolay Milovanov, Vessela Georgieva Abstract The target of 4 to 6 Transformation is a research field and business process related to the network

More information

White paper: Open Traffic Alliance

White paper: Open Traffic Alliance White paper: Open Traffic Alliance Next generation traffic content management systems Authors: Roland van Venrooy,TomTom Jeroen Brosens, NSPYRE Hans Bossenbroek, Luminis Herm Verbeek, AutomotiveNL Version:

More information

How service-oriented architecture (SOA) impacts your IT infrastructure

How service-oriented architecture (SOA) impacts your IT infrastructure IBM Global Technology Services January 2008 How service-oriented architecture (SOA) impacts your IT infrastructure Satisfying the demands of dynamic business processes Page No.2 Contents 2 Introduction

More information

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is

More information

Car Connections. Johan Lukkien. System Architecture and Networking

Car Connections. Johan Lukkien. System Architecture and Networking Car Connections Johan Lukkien System Architecture and Networking 1 Smart mobility, TU/e wide Cooperative Driving (platooning), A270: Helmond-Eindhoven, 2011 (Mechanical Engineering/TNO) Full electric:

More information

Delivering Heterogeneous Hydrologic Data services with an Enterprise Service Bus Application

Delivering Heterogeneous Hydrologic Data services with an Enterprise Service Bus Application 18 th World IMACS / MODSIM Congress, Cairns, Australia 13-17 July 2009 http://mssanz.org.au/modsim09 Delivering Heterogeneous Hydrologic Data services with an Enterprise Service Bus Abstract: Bai, Q.F

More information

Integrated management information in utilities

Integrated management information in utilities Integrated management information in utilities Information from Cigré The objective of this article is to assist utilities define, specify and evaluate the high level management systems that form the information

More information

Create a single 360 view of data Red Hat JBoss Data Virtualization consolidates master and transactional data

Create a single 360 view of data Red Hat JBoss Data Virtualization consolidates master and transactional data Whitepaper Create a single 360 view of Red Hat JBoss Data Virtualization consolidates master and transactional Red Hat JBoss Data Virtualization can play diverse roles in a master management initiative,

More information

Service-Oriented Software Testing Platform *

Service-Oriented Software Testing Platform * Service-Oriented Software Testing Platform * Fagui Liu 1, Chunwei Luo 1 School of Computer Science and Engineering, South China University of Technology 510640 Guangzhou, Guangdong, P.R. China fgliu@scut.edu.cn,

More information

Designing an Enterprise Application Framework for Service-Oriented Architecture 1

Designing an Enterprise Application Framework for Service-Oriented Architecture 1 Designing an Enterprise Application Framework for Service-Oriented Architecture 1 Shyam Kumar Doddavula, Sandeep Karamongikar Abstract This article is an attempt to present an approach for transforming

More information

Why MCL-Bridge for SAP

Why MCL-Bridge for SAP Why MCL-Bridge for SAP Visualize mobilized SAP R/3 Realize MCL-Bridge for SAP Why MCL-Bridge for SAP Does SAP R/3 drive your shop-floor operations retail, warehouse, distribution, manufacturing, or transportation

More information

An Intelligent Car Park Management System based on Wireless Sensor Networks

An Intelligent Car Park Management System based on Wireless Sensor Networks An Intelligent Car Park Management System based on Wireless Sensor Networks Vanessa W.S. Tang, Yuan Zheng, Jiannong Cao Internet and Mobile Computing Lab Department of Computing, The Hong Kong Polytechnic

More information

Master Data Management. Zahra Mansoori

Master Data Management. Zahra Mansoori Master Data Management Zahra Mansoori 1 1. Preference 2 A critical question arises How do you get from a thousand points of data entry to a single view of the business? We are going to answer this question

More information

Monitoring and Diagnosis of Networked Medical Hardware and Software for the Integrated Operating Room

Monitoring and Diagnosis of Networked Medical Hardware and Software for the Integrated Operating Room Monitoring and Diagnosis of Networked Medical Hardware and Software for the Integrated Operating Room Stefan Bohn, Michael Lessnau, Oliver Burgert Innovation Center Computer Assisted Surgery (ICCAS), Medical

More information

Introduction to Service-Oriented Architecture for Business Analysts

Introduction to Service-Oriented Architecture for Business Analysts Introduction to Service-Oriented Architecture for Business Analysts This course will provide each participant with a high-level comprehensive overview of the Service- Oriented Architecture (SOA), emphasizing

More information

secure intelligence collection and assessment system Your business technologists. Powering progress

secure intelligence collection and assessment system Your business technologists. Powering progress secure intelligence collection and assessment system Your business technologists. Powering progress The decisive advantage for intelligence services The rising mass of data items from multiple sources

More information

What is BPM? Software tools enabling BPM

What is BPM? Software tools enabling BPM What is BPM? BPM, or Business Process Management, is a technology, but it is also more than that. Broadly speaking, one can consider BPM as a management discipline in which processes are valued as assets

More information

White Paper: OSGi-based E-Health / Assisted Living

White Paper: OSGi-based E-Health / Assisted Living White Paper: OSGi-based E-Health / Assisted Living Martin Petzold (Project Manager) Phone: +49 (0) 221 6604 405 E-Mail: m.petzold@prosyst.com Konstantin Kersten (Project Manager) Phone: +49 (0) 221 6604

More information

GENERAL AMERICAN CORPORATION

GENERAL AMERICAN CORPORATION GENERAL AMERICAN CORPORATION Published: September 2003 FIORANO CUSTOMER SOLUTION GAC uses Fiorano ESB to integrate its Web enabled B2B platform, GATORS General American Corporation (GAC) is a leader in

More information

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203.

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year & Semester : II / III Section : CSE Subject Code : CP7028 Subject Name : ENTERPRISE

More information

The Case for Business Process Management

The Case for Business Process Management The Case for Business Process Management Executive Summary Each company s unique way of doing business is captured in its business processes. For this reason, business processes are rapidly becoming the

More information

Technical Track Session Service-Oriented Architecture

Technical Track Session Service-Oriented Architecture Technical Track Session Service-Oriented Architecture Terry Woods Agenda A little history What is Service-Oriented Architecture? How do you build a Service-Oriented Architecture Solution? What is an Enterprise

More information

ProSyst Software AG. for a smarter world. EuroCargo 2004 Joachim Ritter. Technical Consultant, ProSyst Software

ProSyst Software AG. for a smarter world. EuroCargo 2004 Joachim Ritter. Technical Consultant, ProSyst Software ProSyst Software AG for a smarter world. EuroCargo 2004 Joachim Ritter Technical Consultant, ProSyst Software 1 Overview Telematic Services Driver-Centric Services Safety (Curve warning) Efficiency (Predictive

More information

The Cross-Media Contact Center

The Cross-Media Contact Center Whitepaper The Cross-Media Contact Center The Next-Generation Replacement for the Traditional Call Center Intel in Communications Executive Summary Because call centers are a principal point of contact

More information

Workflow/Business Process Management

Workflow/Business Process Management 1 Workflow/Business Process Management Andy C. Tran Staff Systems Engineer 2 Agenda Business Process Management Overview Demo 3 Generic Case based Work Flow Pattern Case Initiation Case Assessment & Assignment

More information

A Model for Component Based E-governance Software Systems

A Model for Component Based E-governance Software Systems A Model for Component Based E-governance Software Systems A.SHRABAN KUMAR 1, G.JAYARAO 2,B.SHANKAR NAYAK 3, KBKS. DURGA 4 A.ESWARA RAO 5 1,2,3,4 Associate Professor CSE, St.MARTIN S ENGINEERING COLLEGE,

More information

APIs vs. SOA Integrations with SX without the ION Investment

APIs vs. SOA Integrations with SX without the ION Investment APIs vs. SOA Integrations with SX without the ION Investment There has been a lot of hype over Service Oriented Architecture (SOA), Enterprise Service Architecture (ESB) and Intelligent Open Network (ION)

More information

Business Rules and SOA: Parallels and Synergies

Business Rules and SOA: Parallels and Synergies Business Rules and SOA: Parallels and Synergies White Paper As of January 2006 Innovations Software Technology GmbH, 2009. All rights reserved. Dissemination or reproduction of this publication or any

More information

Sybase Unwired Platform 2.1.x

Sybase Unwired Platform 2.1.x white paper Sybase Unwired Platform 2.1.x Development Paradigm www.sybase.com Table of Contents 1 Sybase Unwired Platform 2 Mobile Application Development 3 Mobile Business Object (MBO) Development 5 Mobile

More information

Service Oriented Architecture Case: IBM SOA Reference Architecture

Service Oriented Architecture Case: IBM SOA Reference Architecture Service Oriented Architecture Case: IBM SOA Reference Architecture Group 6: 0309441 Mikko Seppälä 0275669 Puranen Sami Table of Contents 1 International Business Machines Corporation... 3 2 IBM and Services

More information

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2008 Vol. 7 No. 7, September-October 2008 Applications At Your Service Mahesh H. Dodani, IBM,

More information

SERVICE-ORIENTED MODELING FRAMEWORK (SOMF ) SERVICE-ORIENTED SOFTWARE ARCHITECTURE MODEL LANGUAGE SPECIFICATIONS

SERVICE-ORIENTED MODELING FRAMEWORK (SOMF ) SERVICE-ORIENTED SOFTWARE ARCHITECTURE MODEL LANGUAGE SPECIFICATIONS SERVICE-ORIENTED MODELING FRAMEWORK (SOMF ) VERSION 2.1 SERVICE-ORIENTED SOFTWARE ARCHITECTURE MODEL LANGUAGE SPECIFICATIONS 1 TABLE OF CONTENTS INTRODUCTION... 3 About The Service-Oriented Modeling Framework

More information

Redundancy in enterprise storage networks using dual-domain SAS configurations

Redundancy in enterprise storage networks using dual-domain SAS configurations Redundancy in enterprise storage networks using dual-domain SAS configurations technology brief Abstract... 2 Introduction... 2 Why dual-domain SAS is important... 2 Single SAS domain... 3 Dual-domain

More information

LS/ATN Living Systems Adaptive Transportation Networks

LS/ATN Living Systems Adaptive Transportation Networks W HITESTEI Technologies N Product Brochure LS/ATN Living Systems Adaptive Transportation Networks LS/ATN is a comprehensive solution for the dynamic optimization and dispatching of full and part truck

More information