Advanced Vehicle Monitoring System Based on Arcgis Silverlight

Size: px
Start display at page:

Download "Advanced Vehicle Monitoring System Based on Arcgis Silverlight"

Transcription

1 Proceedings of 0 International Conference on Modelling, Identification and Control, Wuhan, China, June 4-6, 0 Advanced Vehicle Monitoring System Based on Arcgis Silverlight SHANG Wenli, HE Chao, ZHOU Xiaofeng, HAN Zhonghua, PENG Hui and SHI Haibo Abstract Intelligent Vehicle Services System is currently a hot research issue of Internet of Things (IOT) application in automotive industry, and real-time monitoring of vehicles is one of the core and key modules. This paper discusses ArcGIS API for Silverlight and its application on Vehicle Monitor System, and introduces design principles and framework of Vehicle Monitoring System, as well as map matching and history track algorithm. A vehicle monitoring system is realized by using Arcgis API,.NET Framework, Visual Studio and Silverlight Tools. At last, design principle of main functions as split-screen monitor, vehicle location, map mark, electronic fence and historical track realized in Vehicle Monitoring System are introduced. Index Terms ArcGIS Silverlight Vehicle monitoring Map matching T I. INTRODUCTION HE Vehicle Monitoring System is background application system based on vehicle information, which integrates vehicle driving data, satellite positioning and communication functions, can provide a simple and effective vehicle management methods for service providers, and provide real-time vehicle information for passengers or customers []. Traffic blocking improvement, vehicles emergency dispatch, fleet management and other practical applications demand real-time vehicle monitoring. With rapid development of Global Satellite Positioning System and wireless communication technologies, real-time remote monitoring and positioning of moving targets is becoming possible, and the technology is becoming more mature [-4]. Now main fleet board system including CARMINAT vehicle positioning and dispatch system (France), TravTek vehicle location and dispatch system (General Motor Company in American), automotive electronic navigation system (SUMITOMO electronics Manuscript received March, 0. This work was supported in part by the National Natural Science Foundation of China ( , 6640) and Major Scientific and Technological project of Liaoning Province (06008). Shang Wenli is with Shenyang Institute of Automation, Chinese Academy of Science, Shenyang, China (corresponding author to provide phone: fax: shangwl@ sia.cn). He Chao is with Graduate school of the Chinese Academy of Sciences, Shenyang, China ( hechao5549@sina.com). Zhou Xiaofeng is with Shenyang Institute of Automation, Chinese Academy of Science, Shenyang, China and the Graduate School of Chinese Academy of Science, Beijing ( zhouxf@sia. cn). Han Zhonghua is with Shenyang Jianzhu University, Shenyang, China ( hanzhonghua@sia.cn). Peng Hui is with Shenyang Institute of Automation, Chinese Academy of Science, Shenyang, China ( penghui@sia.cn). Shi Haibo is with Shenyang Institute of Automation, Chinese Academy of Science, Shenyang, China ( hbshi@sia.cn). company of Japanese), and Mercedes Benz FleetBoard fleet management systems, etc. [5]. Vehicle monitoring system is realized by combining GPS, GPRS and GIS, vehicle location and status information are collected with vehicle terminal, and data is transmitted from moving vehicles to monitoring center by wireless network communication technology. At last, vehicle location and status information is displayed dynamically in the monitoring center. Lei[6] gives a detailed description on functional modules and business processes of a fleet management information system, but not descripts system implementation process. Wu[7] and Li[8] introduce vehicle monitoring system developed based on C/S pattern in VB environment with ArcGIS Engine, which is now leading development modes. In this paper, a vehicle monitoring system is developed using API interface provided by ArcGIS Silverlight, Google Maps slice cache technology, and Visual Studio.NET Framework. Main functions of the system including split-screen monitoring, vehicle positioning, map mark, electronic fence, historical track, and vehicle inquiry. The paper is organized as following: Section is dedicated to introduce vehicle monitoring technology development. In Section, system framework, system design principles and map matching algorithm is described. In Section 3, we will introduce several key functions, including: Split Screen Monitoring, Electronic Fence, Vehicle Positioning, Map Mark, and Historical Track. The conclusion of this paper is given in Section 4. II. SYSTEM DESIGN A. System Framework The proposed system design framework based on WebGIS is shown in Figure. The entire system framework is divided into four layers: presentation layer, application layer, WCF service layer, and data layer. ) Data layer, which is used to maintain requirment space data and attribute data of the vehicle monitoring system. ArcgSDE database is adopted. ) WCF service layer, raw data used by silverlight application client program is provided by WCF service layer. 3) Application layer, which processes requests of the silverlight client in vehicle monitoring system and the ArcGIS map services. 4) Presentation Layer, which is visual interface provided by system to the client, and provides a variety of interoperability like queries, set, etc. 83

2 Proceedings of 0 International Conference on Modelling, Identification and Control, Wuhan, China, June 4-6, 0 Fig.. System framework Microsoft Silverlight is a cross-browser, cross-client platform technology, which can be used to design, develop and distribute network interaction program with rich interactive (RIAs, the Rich the Interface Application) multimedia experience. ArcGIS API for Silverlight is a programming interface for Application of WebGIS in Silverlight platform, which is based on the ArcGIS Server REST interface, and allows integration of services and functions provide by ArcGIS Server, ESRI, Inc. MapIt, and Bing Maps. B. System Design Principles In order to improve system coupling and components reusability, each client interface is designed in form of control set. Each control can re-use controls designed, so a good interface can be formed by assembly custom controls. For handling the client's request, the control itself does not include core handler, which needs to call event handle interface provided by application layer, and pass appropriate parameters. The mode can reduce maintenance complex of control and improve control flexibility. Control is designed using controls template provided by silverlight, both control contents and control structure are costumed according to system requirements. Specific XMAL syntax is as follows: <Style Target="self definition control"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType=" self definition control"> <!---here define control template -> </ControlTemplate> </Setter.Value> </Setter> </Style > Each control is encapsulated in <DictionaryResource/>, and is managed with generic.xaml files. C. Map Matching Arithmetic For GIS functions, package of Google Maps is used as base map, various elements layers are added in the above, and information and interfaces provide by layers is used to realize variety functions. Vehicle positioning and map mark use JSON data format, ArcGIS Silverlight provides API interface for receiving JSON format data, which encapsulates element attribute information as data in JSON format, and add them to layers. The mode improves system performance effectively. Interaction between interface and data is realized by data binding. Each Silverlight UI elements has DataContext property, which is used to bind data sources. System uses DataGrid control to bind data. For bound object collection, collection ObservableCollection is used. After data binding mode is set, while object collection data source changes, the control can effectively access notifications about the data source change. Vehicle positioning in vehicle monitoring system is based on GPS data. There is a certain error between GPS latitude and longitude data collected and the practical maps, so a series of algorithm is used to match position point with the correct travel path. Through study of related map matching algorithm [9-], an improved algorithm is proposed as follows: Algorithm steps: Step0: Initialization the vehicle location information and travel information at time t 0 Step: Obtain GPS location data at time t i Step: According to nearest point estimation algorithm, search for road space A Step3: According to vehicle travel information at time ti, predict possible vehicles road space B at time t i Step4: Candidate road space S=AUB Step5: According to nearest point estimation algorithm, take road with the shortest distance from as matching road. The algorithm can improve accuracy of map matching. Fig.. Map matching algorithm 833

3 Proceedings of 0 International Conference on Modelling, Identification and Control, Wuhan, China, June 4-6, 0 Historical track is achieved by processing a lot of historical data [0-]. In this paper, we use a algorithm based on the road model to reduce amount of historical travel data, which reduces also the data size, and using the optimized data to generate historical track. Specific method is used to extract feature points from the original data, and history track is formed according to these characteristics. Feature points are referred to main special point data that represents large amount of vehicle travel history data. Vehicle track data is selected according to deviation of vehicle direction. Set S as all track data set collection, Q as selected feature points collection, andq S. Set P,P as any two consecutive points in the collection Q. According to different application, set a threshold δ, then P,P must satisfy the condition d d [3] ( d is the direction of P, d is the direction of P ). Based on above principles, we design an algorithm, which get the feature points collection Q according to original data collection S and start point P 0, then generate vehicle history track, which greatly improves the system performance. The algorithm is as follows: Algorithm steps: Step0: Take GPS data ( S ) at time t 0 as track starting position, and add it to the collection Q. Update current travel direction data in collection Q with direction value in data. Step: Read next GPS data ( S ) in time order. Go to Step3 if position that represent is end point, algorithm is finished. Otherwise, go to Step. Step: Compare difference between vehicle travel direction data d t of GPS at time t with d. If d t d ( is the threshold value), then go to Step3 otherwise abnegate this data, and go to Step. Step3: Add position that GPS data represents into collection Q, Update current travel direction data d in collection Q with direction value in GPS data. History track generated based on the optimized data set cannot cover all the historical data, so track playback also involves a matching problem. Track playback matching is that while position which GPS data t represents is not on track ( t Q ), then match this GPS location to track. Track playback matching algorithm is as follows: Command and as two GPS data with adjacent time, and t t t (where t is time value in data, t is time value in data ), is track generated by and, then track matching is to projection position at time track. III. SYSTEM IMPLEMENTATION t to A. Split Screen Monitoring Split Screen Monitoring provides multiple windows on a display output device, and monitors different vehicles respectively at the same time. Number of monitor window is variable according to user's choice, and each monitoring window status is independent. Monitoring window is designed with the custom layout panel, mainly with silverlight Grid layout control. Row and Column values are set through window parameters, and defined map control is added to each cell. Firstly, layout panel class CustomPanel is defined, the class has a Grid class property, which corresponding to the Grid Control in XMAL file. The Grid class has two collection attributes as ColumnDefinitions and RowDefinitions. CustomPanel class defines a int property for receiving user input parameters, ColumnDefinitions and RowDefinitions are set according to attribute value. Then RowDefinitions and ColumnDefinitions is used to create the appropriate number of columns and row. Map service is bound to each windows according to Grid.SetColumn () and Grid.SetRow () method. Split Screen Monitoring is shown in Figure 3. Fig.3. Four Split Screen Monitoring windows B. Electronic Fence Electronic Fence can realize division of the polygon according to administrative regions, including provinces, municipalities and county levels. Polygon division use Draw class provide by ArcGIS Silverlight. According to the system design principles, this function is encapsulated into a control. While initialize control class, a Draw class is declared. MonitorDrawObject = new Draw() { LineSymbol = user-defined symbol FillSymbol= user-defined symbol } Add an event to this class so as to deal witn operation after draw graphics. MonitorDrawObject.DrawComple+=MonitorDrawObject _DrawComplete 834

4 Proceedings of 0 International Conference on Modelling, Identification and Control, Wuhan, China, June 4-6, 0 Administrative areas division is completed by query geographic base data stored in spatial database. These geographic data and draw graphics are Polygon class, vehicle cross-border is determined by judging whether vehicle regional is contained in the Polygon class. Editing function of the monitoring region is realized by using Editor class of ArcGIS Silverlight, which provides many command tool like edit, delete draw, etc. }, ""geometry"" : { <! set coordinate value--> } } ] }" Then FeatureSet.FromJson() is used to resolve data, Graphic class is created for each vehicle and added to the corresponding layer. The interface is provided by Maptip attributes of class Graphic in ArcGIS Silverlight is also used to create information prompt window while mouse appear at the top for each vehicle. Fig.4. Set the monitoring area C. Vehicle Positioning Vehicle positioning needs to converse the spatial reference system. Vehicle coordinates raw data transmitted by GPS is based on the geographic coordinate system, such as WGS84 latitude and longitude data, and the spatial reference is system defined with ID 436 in EPSG. But projection coordinate system is used in network map, such as Web Mercator projection. Projection transformation is firstly done before vehicle is located with coordinates. FromGeographic and ToGeographic method in class WebMercator provide projection conversion functions, but only adopt to converse the projection coordinate system with ID 000 and geographic coordinate system with ID 436. Other coordinate system need to call ISpatialReferenceFactory3 interface in ArcGIS Object Library. Position vehicles on the map is mainly realized through adding Graphics Layer on the map, namely adding GraphicsLayer, where vehicle attribute data is encapsulated in JSON format. The mode can improve system performance. Format is shown as following: string ""displayfieldname"" : ""AREANAME"", ""geometrytype"": ""esrigeometrypoint"", ""spatialreference"" : {""wkid"" : reference values}, ""fieldaliases"" : { <! set attribute other name--> }, ""features"" : [ { "attributes"" : { <! set attribute and value--> Fig.5. Vehicle location D. Map Mark Map mark function is achieved through three steps: capture mark position, pop-up information input window and add a label layers. For capture mark position, MouseClick event is added to the Map, then an event handler function new EventHandler <Map.MouseEventArgs> (Map_MouseClick) is created. MapPoint class of click position can be get by the MouseEventArgs parameter, so location information is obtained according to the MapPoint class. A BOOL value is declared in event handler function to control whether trigger event processing. Information window is realized by InfoWindow class in API, a control is defined and added to InfoWindow, which is used to process the input information. For add a label layer, MapPoint class is encapsulated into Graphic class, and then a GraphicsLayer layer is declared, and Graphics attribute of the GraphicsLayer class is added to the Graphic class. Fig.6. Add map mark 835

5 Proceedings of 0 International Conference on Modelling, Identification and Control, Wuhan, China, June 4-6, 0 E. History Track New GPS data are collected continually in process of vehicles moving, track optimization algorithm is used to generate track data. These data is used to generate Polyline elements, and then is added to the layers and displayed on the map. Fig.7. History track [7] Wu Jianhua. Development of Vehicle Monitoring-based GIS system based on ArcGIS Engine, Geo-Information Science, 0(): (in Chinese) [8] Li Chunli, Zeng Zhiyuan, Xu Xuejun. Vehicle monitoring system based on ArcGIS Engine [J], Computer Engineering, 006, 3(4): (in Chinese) [9] SUN Dihua, WEN Cunfing. Research of map-matching technology for moving fleet. Computer Engineering and Applications, 0, 47(): (in Chinese) [0] LAI Yunbo, SUN Dihua, LIAO Xiaoyong, SUN Huanshan. Algorithm of map-matching based on road buffer analysis [J]. Application Research of Computers, 0, 8(9): (in Chinese) [] CHEN Fei, ZOU Tao, WANG Lun. Improved projection-based map matching algorithm. Computer Engineering and Applications, 0, 47(3): (in Chinese) [] Gao Haihui, Jia Kebin, He Ji. On Algorithms of path matching and track palyback and their implementation [J]. Computer Applications and Software, 00, 7(4): 6-8, 9. (in Chinese) [3] LI Xiang, LIN Hui, GUO Zhong-yang, ZHANG Xi-hui. Reducing Vehicle Tracking Data Volume through a Network-based Approach [J]. ACTA GEODAETICA et CARTOGRAPHICA SINICA, 008, 37(): (in Chinese) IV. CONCLUSION A vehicle monitoring system is developed based on ArcGIS Silverlight, which has a higher interactivity and user experience. The system is now running well, and each function is modularized with high maintenance. This system still exist some problems, such as there is a certain deviation in vehicle map matching, and internal data structures of the historical track playback function need to be improved, better algorithm should be used to improve its operating efficiency. A scheduling mechanism is also needed to allocate instance object within vehicle monitoring system. ACKNOWLEDGMENT The authors would also like to acknowledge the helpful comments and suggestions of the Internet of Things (IOT) application technology software group. Their efforts are greatly appreciated. REFERENCES [] Berg Insight, Fleet Management and Wireless MM-5th Edition, March 00. [] Qimin CHENG, Chongjun YANG, ZhenFeng SHAO. Design and implementation of WebGIS-based GPS vehicle monotoring system [J]. Geo-information Science, 004,7 (): (in Chinese) [3] Yong Wang, Dafang Zhuang, Runhe Shi. A WebGIS-based system model of vehicle monitoring central platform [J]. Proceeding of Geoscience and Remote Sensing Symposium, 005. IGARSS '05. Proceedings. 005 IEEE International, Volume:. [4] Zechun Huanga, Dingfa Huanga, Zhu Xua, et al. GPS Vehicle Positioning Monitoring System Integrated with CORS and Mobile GIS [J]. Procedia Environmental Sciences, 0, 0 (C): [5] Cheng Yipei. Design and Development of Vehicle Monitoring and Management System Based on GPS/GIS/GPRS [D], Master degree thesis, 009, 4. (in Chinese) [6] Lei Yuhai, Wang Yu. Research and development of management information system software for auto distribution office [J]. Technology & Economy in Areas of Communications (TEAC), 004, 6(3): (in Chinese) 836

Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing

Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing www.ijcsi.org 579 Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing Zhang Ming 1, Hu Chunyang 2 1 Department of Teaching and Practicing, Guilin University of Electronic Technology

More information

ArcGIS Server 9.3.1 mashups

ArcGIS Server 9.3.1 mashups Welcome to ArcGIS Server 9.3.1: Creating Fast Web Mapping Applications With JavaScript Scott Moore ESRI Olympia, WA smoore@esri.com Seminar agenda ArcGIS API for JavaScript: An Overview ArcGIS Server Resource

More information

A Geographic Interactive Supply Chain Management System for Construction Projects

A Geographic Interactive Supply Chain Management System for Construction Projects , 23-25 October, 2013, San Francisco, USA A Geographic Interactive Supply Chain Management System for Construction Projects Mansour N. Jadid and Mobin M. Idrees Abstract The diversity of the construction

More information

PERSONALIZED WEB MAP CUSTOMIZED SERVICE

PERSONALIZED WEB MAP CUSTOMIZED SERVICE CO-436 PERSONALIZED WEB MAP CUSTOMIZED SERVICE CHEN Y.(1), WU Z.(1), YE H.(2) (1) Zhengzhou Institute of Surveying and Mapping, ZHENGZHOU, CHINA ; (2) North China Institute of Water Conservancy and Hydroelectric

More information

Tracking System for GPS Devices and Mining of Spatial Data

Tracking System for GPS Devices and Mining of Spatial Data Tracking System for GPS Devices and Mining of Spatial Data AIDA ALISPAHIC, DZENANA DONKO Department for Computer Science and Informatics Faculty of Electrical Engineering, University of Sarajevo Zmaja

More information

APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE

APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE Chengda Lin, Lingkui Meng, Heping Pan School of Remote Sensing Information Engineering Wuhan University, 129 Luoyu Road, Wuhan 430079, China Tel: (86-27)-8740-4336

More information

Remote Sensitive Image Stations and Grid Services

Remote Sensitive Image Stations and Grid Services International Journal of Grid and Distributed Computing 23 Remote Sensing Images Data Integration Based on the Agent Service Binge Cui, Chuanmin Wang, Qiang Wang College of Information Science and Engineering,

More information

Modern Agricultural Digital Management Network Information System of Heilongjiang Reclamation Area Farm

Modern Agricultural Digital Management Network Information System of Heilongjiang Reclamation Area Farm Modern Agricultural Digital Management Network Information System of Heilongjiang Reclamation Area Farm Xi Wang, Chun Wang, Wei Dong Zhuang, and Hui Yang Engineering Collage, Heilongjiang August the First

More information

GIS COMPONENTS AND MAP VISUALIZATION OBJECTS* LUO Yingwei, WANG Xiaolin and XU Zhuoqun

GIS COMPONENTS AND MAP VISUALIZATION OBJECTS* LUO Yingwei, WANG Xiaolin and XU Zhuoqun GIS COMPONENTS AND MAP VISUALIZATION OBJECTS* LUO Yingwei, WANG Xiaolin and XU Zhuoqun Dept. of Computer Science and Technology, Peking University, Beijing, P.R.China, 100871 ABSTRACT In component-based

More information

One Map Database and Its Importance

One Map Database and Its Importance Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 105-109 105 Open Access Study on One Map Organizational Model for Land Resources Data Used in Supervision

More information

A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION

A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION Jiaojiao Tian, Xinming Tang, Huabin Wang Key Laboratory of Geo-informatics of State Bureau of Surveying and Mapping,

More information

Visualization Method of Trajectory Data Based on GML, KML

Visualization Method of Trajectory Data Based on GML, KML Visualization Method of Trajectory Data Based on GML, KML Junhuai Li, Jinqin Wang, Lei Yu, Rui Qi, and Jing Zhang School of Computer Science & Engineering, Xi'an University of Technology, Xi'an 710048,

More information

Urban planning and management information systems analysis and design based on GIS

Urban planning and management information systems analysis and design based on GIS Available online at www.sciencedirect.com Physics Procedia 33 (2012 ) 1440 1445 2012 International Conference on Medical Physics and Biomedical Engineering Urban planning and management information systems

More information

Developing Fleet and Asset Tracking Solutions with Web Maps

Developing Fleet and Asset Tracking Solutions with Web Maps Developing Fleet and Asset Tracking Solutions with Web Maps Introduction Many organizations have mobile field staff that perform business processes away from the office which include sales, service, maintenance,

More information

Tracking Anomalies in Vehicle Movements using Mobile GIS

Tracking Anomalies in Vehicle Movements using Mobile GIS Tracking Anomalies in Vehicle Movements using Mobile GIS M.Saravanan Ericsson Research India Ericsson India Global Services Pvt.Ltd. Chennai, India Abstract--- Detecting fraud activities and anomalies

More information

A Network Simulation Experiment of WAN Based on OPNET

A Network Simulation Experiment of WAN Based on OPNET A Network Simulation Experiment of WAN Based on OPNET 1 Yao Lin, 2 Zhang Bo, 3 Liu Puyu 1, Modern Education Technology Center, Liaoning Medical University, Jinzhou, Liaoning, China,yaolin111@sina.com *2

More information

The Attendance Management System Based on Micro-cellular and GIS technology

The Attendance Management System Based on Micro-cellular and GIS technology I.J. Education and Management Engineering 2012, 5, 54-59 Published Online May 2012 in MECS (http://www.mecs-press.net) DOI: 10.5815/ijeme.2012.05.09 Available online at http://www.mecs-press.net/ijeme

More information

Trace Desktop Workforce / Fleet Management System

Trace Desktop Workforce / Fleet Management System Trace Desktop Workforce / Fleet Management System Introduction TRACE is an extension of SD s Geographical Information System (SPACE) which incorporates a range of GPS tracking devices that enable users

More information

Development of information management system of dams in China based on. WebGIS

Development of information management system of dams in China based on. WebGIS Development of information management system of dams in China based on WebGIS ZHU Xing-ming 1, GENG Qing-zhai 1,2 (1.China Institute of Water Resources and Hydropower Research, Beijing 100044, China, zhuxm@iwhr.com;

More information

Introduction to GIS software

Introduction to GIS software Introduction to GIS software There are a wide variety of GIS software packages available. Some of these software packages are freely available for you to download and could be used in your classroom. ArcGIS

More information

Research on Aggregation Service-oriented Spatial Subdivision Data

Research on Aggregation Service-oriented Spatial Subdivision Data Research on Aggregation Service-oriented Spatial Subdivision Data Storage Scheduling Model 1 Du Gen-yuan, 2 Qiu Ying-yu, 3 Miao Fang 1 International School of Education, Xuchang University, China, xcdgy1974@126.com

More information

GIS and Mapping Solutions for Developers. ESRI Developer Network (EDN SM)

GIS and Mapping Solutions for Developers. ESRI Developer Network (EDN SM) GIS and Mapping Solutions for Developers ESRI Developer Network (EDN SM) GIS and Mapping Solutions for Developers If you are a software developer looking for an effective way to bring geographic and mapping

More information

Capability Service Management System for Manufacturing Equipments in

Capability Service Management System for Manufacturing Equipments in Capability Service Management System for Manufacturing Equipments in Cloud Manufacturing 1 Junwei Yan, 2 Sijin Xin, 3 Quan Liu, 4 Wenjun Xu *1, Corresponding Author School of Information Engineering, Wuhan

More information

Zorba Asset Tracking Solution

Zorba Asset Tracking Solution Asset Tracking Solution State-of-the art fleet management and vehicle tracking solution to increase your productivity. Affordable installation and operating costs Easy to install and operate User friendly

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

Hong Yao 1,2, Yong-xing Wu 1* * Corresponding author. juddy_yao@163.com

Hong Yao 1,2, Yong-xing Wu 1* * Corresponding author. juddy_yao@163.com A Research about the Application of Information Technology in the Precision Agriculture Taking the Operating System of Shanghai Agriculture Economy as an Example Hong Yao 1,2, Yong-xing Wu 1* 1 College

More information

The application of Web GIS in emergency flood control system

The application of Web GIS in emergency flood control system 80 GIS and Remote Sensing in Hydrology, Water Resources and Environment (Proceedings of ICGRHWE held at the Three Gorges Dam, China, September 2003). IAHS Pub!. 289. 2004 The application of Web GIS in

More information

The soil nutrient monitoring system

The soil nutrient monitoring system Advanced Science and Technology Letters, pp.88-95 http://dx.doi.org/10.14257/astl.2014.77.17 The soil nutrient monitoring system Di Zu 1,2,3, Xiaodong Yang 2,3, Zhongbin Su 1*, Xiaohe Gu 2,3, Yancang Wang

More information

ArcGIS Viewer for Silverlight An Introduction

ArcGIS Viewer for Silverlight An Introduction Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight An Introduction Rich Zwaap Agenda Background Product overview Getting started and

More information

Bentley ArcGIS. Connector

Bentley ArcGIS. Connector Bentley ArcGIS Connector Introduction ESRI, as a GIS software products company, and Bentley Systems, Incorporated, as a developer of solutions for architecture/engineering/construction (AEC) professionals,

More information

PHP Web Authoring for Database Management based on MVC Pattern

PHP Web Authoring for Database Management based on MVC Pattern , October 19-21, 2011, San Francisco, USA PHP Web Authoring for Database Management based on MVC Pattern Chanchai Supaartagorn Abstract Nowadays, the MVC pattern is the effective method for the development

More information

Big Data and Analytics: A Conceptual Overview. Mike Park Erik Hoel

Big Data and Analytics: A Conceptual Overview. Mike Park Erik Hoel Big Data and Analytics: A Conceptual Overview Mike Park Erik Hoel In this technical workshop This presentation is for anyone that uses ArcGIS and is interested in analyzing large amounts of data We will

More information

Spatiotemporal Information Organization and Visualization on Tidal Level

Spatiotemporal Information Organization and Visualization on Tidal Level Spatiotemporal Information Organization Visualization on Tidal Level B. Huang a, *, Y. Zhang a, Y. Wang a, Q. Liu b a School of Geoscience, China University of Petroleum,QingDao 266580,China huangbhu@163.com

More information

Vehicle Tracking System,

Vehicle Tracking System, Vehicle Tracking System, The Complete Solution What is GPS? Product Review. Complete system. Contact Us. What is GPS? GPS, which stands for Global Positioning System, is the only system today able to show

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

SuperGuard VT-05 Vehicle Tracking Device

SuperGuard VT-05 Vehicle Tracking Device SuperGuard VT-05 Vehicle Tracking Device The SuperGuard VT-05 Vehicle Tracker is a professional GPS tracking device designed for fleet management and commercial data centers, with customizable data upload

More information

Development of a Kind of Mine Staff Management System

Development of a Kind of Mine Staff Management System Advanced Engineering Forum Online: 2011-12-22 ISSN: 2234-991X, Vols. 2-3, pp 779-784 doi:10.4028/www.scientific.net/aef.2-3.779 2012 Trans Tech Publications, Switzerland Development of a Kind of Mine Staff

More information

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW 1 XINQIN GAO, 2 MINGSHUN YANG, 3 YONG LIU, 4 XIAOLI HOU School of Mechanical and Precision Instrument Engineering, Xi'an University

More information

Research of Smart Space based on Business Intelligence

Research of Smart Space based on Business Intelligence Research of Smart Space based on Business Intelligence 1 Jia-yi YAO, 2 Tian-tian MA 1 School of Economics and Management, Beijing Jiaotong University, jyyao@bjtu.edu.cn 2 School of Economics and Management,

More information

Design on Emergency Dispatch and Command System of Urban Rail Transit 1

Design on Emergency Dispatch and Command System of Urban Rail Transit 1 Design on Emergency Dispatch and Command System of Urban Rail Transit 1 Wang Hua The School of Management The College of Urban Rail Transit Shanghai University of Engineering Science Shanghai China Liu

More information

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Unit 40: Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Learning Outcomes A candidate following a programme of learning leading to this

More information

Real Time Vehicle Monitoring and Tracking System based on Embedded Linux Board and Android Application

Real Time Vehicle Monitoring and Tracking System based on Embedded Linux Board and Android Application Real Time Vehicle Monitoring and Tracking System based on Embedded Linux Board and Android Application Prashant A. Shinde Electronics Department Walchand College of Engineering Sangli, India prashantas15@gmail.com

More information

There are various ways to find data using the Hennepin County GIS Open Data site:

There are various ways to find data using the Hennepin County GIS Open Data site: Finding Data There are various ways to find data using the Hennepin County GIS Open Data site: Type in a subject or keyword in the search bar at the top of the page and press the Enter key or click the

More information

OpenText Information Hub (ihub) 3.1 and 3.1.1

OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1.1 meets the growing demand for analytics-powered applications that deliver data and empower employees and customers to

More information

Metadata Hierarchy in Integrated Geoscientific Database for Regional Mineral Prospecting

Metadata Hierarchy in Integrated Geoscientific Database for Regional Mineral Prospecting Metadata Hierarchy in Integrated Geoscientific Database for Regional Mineral Prospecting MA Xiaogang WANG Xinqing WU Chonglong JU Feng ABSTRACT: One of the core developments in geomathematics in now days

More information

VEHICLE TRACKING SYSTEM

VEHICLE TRACKING SYSTEM Real-Time Vehicle tracking solution Vehicle tracking solution enables to monitor the entire fleet in transit spread across India, which can be monitored from a central location. These locations are subject

More information

Development of a Web-based Information Service Platform for Protected Crop Pests

Development of a Web-based Information Service Platform for Protected Crop Pests Development of a Web-based Information Service Platform for Protected Crop Pests Chong Huang 1, Haiguang Wang 1 1 Department of Plant Pathology, China Agricultural University, Beijing, P. R. China 100193

More information

Vehicle Tracking System using GPS and Android OS

Vehicle Tracking System using GPS and Android OS Vehicle Tracking System using GPS and Android OS Amol Dhumal, Amol Naikoji, Yutika Patwa, Manali Shilimkar, Prof. M. K. Nighot Abstract In today s era everyone is using mobile phones for communication.

More information

Blog Post Extraction Using Title Finding

Blog Post Extraction Using Title Finding Blog Post Extraction Using Title Finding Linhai Song 1, 2, Xueqi Cheng 1, Yan Guo 1, Bo Wu 1, 2, Yu Wang 1, 2 1 Institute of Computing Technology, Chinese Academy of Sciences, Beijing 2 Graduate School

More information

A Cloud Computing-Based ERP System under The Cloud Manufacturing

A Cloud Computing-Based ERP System under The Cloud Manufacturing A Cloud Computing-Based ERP System under The Cloud Manufacturing Environment 1 Nan Yang, 2 Dongbo Li, 3 Yifei Tong 1, First Author Department of Industry Engineering,Nanjing University of Science and Technology,Nanjing210094,People

More information

Esri Maps for Office, SharePoint & Dynamics CRM. Tony Howser Sentha Sivabalan Scott Ball

Esri Maps for Office, SharePoint & Dynamics CRM. Tony Howser Sentha Sivabalan Scott Ball Esri Maps for Office, SharePoint & Dynamics CRM Tony Howser Sentha Sivabalan Scott Ball Agenda Location Analytics Esri Maps for - SharePoint - Office - Dynamics CRM Pricing Road Map Q & A Evolving the

More information

ACCIDENT INFORMATION SYSTEM USING ARM PROCESSOR, GPS AND GSM TECHNOLOGY

ACCIDENT INFORMATION SYSTEM USING ARM PROCESSOR, GPS AND GSM TECHNOLOGY I J I T E ISSN: 2229-7367 3(1-2), 2012, pp. 123-127 ACCIDENT INFORMATION SYSTEM USING ARM PROCESSOR, GPS AND GSM TECHNOLOGY S. VIVEK 1, A. RAMESH 2 AND S. BHARATHI 3 1, 3 M.E-Embedded Systems, EIE 2 Assistant

More information

http://www.paper.edu.cn

http://www.paper.edu.cn 5 10 15 20 25 30 35 A platform for massive railway information data storage # SHAN Xu 1, WANG Genying 1, LIU Lin 2** (1. Key Laboratory of Communication and Information Systems, Beijing Municipal Commission

More information

Introduction to GIS functionality

Introduction to GIS functionality Exercise Introduction to GIS functionality Step 1 Start ArcInfo If necessary, start ArcInfo. Click the Start button in your Windows 2000 Task Bar and select Programs. Click the ArcInfo program group and

More information

Developing Business Intelligence and Data Visualization Applications with Web Maps

Developing Business Intelligence and Data Visualization Applications with Web Maps Developing Business Intelligence and Data Visualization Applications with Web Maps Introduction Business Intelligence (BI) means different things to different organizations and users. BI often refers to

More information

Research of the Combination of Distributed Business Processes Based on Dynamic Planning

Research of the Combination of Distributed Business Processes Based on Dynamic Planning , pp.257-266 http://dx.doi.org/10.14257/ijunesst.2015.8.6.25 Research of the Combination of Distributed Business Processes Based on Dynamic Planning Yuan Gang, Sun Rui-zhi and Shi Yin-xue Key laboratory

More information

Transmitter Station Remote Monitor System Based on Browser/Server Structure

Transmitter Station Remote Monitor System Based on Browser/Server Structure TELKOMNIKA, Vol.11, No.3, March 2013, pp. 1594 ~ 1599 ISSN: 2087-278X 1594 Transmitter Station Remote Monitor System d on Browser/Server Structure Shanshan Li*, Jian Zhou Communication University of China

More information

Study of GML-Based Geographical Data Visualization Strategy

Study of GML-Based Geographical Data Visualization Strategy Study of GML-Based Geographical Data Visualization Strategy ZHANG LIN 1, CHEN SHI-BIN 2 1 College of Information Technology, ZheJiang University of Finance & Economics, HangZhou 310012, China 2 College

More information

The seamless integrating technology of GIS and Management Information Systems (MIS) for water resources

The seamless integrating technology of GIS and Management Information Systems (MIS) for water resources 675 and Remote Sensing in Hydrology, Water Resources and Environment (Proceeding of ICGRHWE held at the Three Gorges Dam, China, September 2003). IAHS Publ. 289.2004 249 The seamless integrating technology

More information

AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM

AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM AUTOMATIC ACCIDENT DETECTION AND AMBULANCE RESCUE WITH INTELLIGENT TRAFFIC LIGHT SYSTEM Mr.S.Iyyappan 1, Mr.V.Nandagopal 2 P.G Scholar, Dept. of EEE, Ganadipathy Tulis s Jain Engineering College, Vellore,

More information

Frame of IoT in China

Frame of IoT in China Frame of IoT in China EuropElectro Summary Orgalime - The European Engineering Industries Association, Brussels Orgalime - 欧 洲 工 程 行 业 协 会, 布 鲁 塞 尔 ZVEI - German Electrical and Electronic Manufacturers

More information

Off The Shelf Approach to ArcGIS Server & The Dashboard Approach to Gaining Insight to ArcGIS Server

Off The Shelf Approach to ArcGIS Server & The Dashboard Approach to Gaining Insight to ArcGIS Server Off The Shelf Approach to ArcGIS Server & The Dashboard Approach to Gaining Insight to ArcGIS Server Robert Lenarcic Latitude Geographics rlenarcic@latitudegeo.co AGENDA Out of the box ArcGIS Server web-mapping

More information

A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER

A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER Liang Huang a,*, Xinyan Zhu a, Wei Guo a, Longgang Xiang a, Xu Chen b, Yifang Mei a State Key

More information

DEVELOPMENT OF A WEB-BASED WIRELESS TELEMONITORING SYSTEM FOR AGRO- ENVIRONMENT

DEVELOPMENT OF A WEB-BASED WIRELESS TELEMONITORING SYSTEM FOR AGRO- ENVIRONMENT DEVELOPMENT OF A WEB-BASED WIRELESS TELEMONITORING SYSTEM FOR AGRO- ENVIRONMENT Keming Du 1, Zhongfu Sun 1,*, Huafeng Han 1, Shuang Liu 1 1 Institute of Environment and Sustainable Development in Agriculture(IEDA),

More information

_ LUCIADRIA PRODUCT DATA SHEET

_ LUCIADRIA PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET V2015.1 LuciadRIA offers browser-based geospatial situational awareness with the fluidity and speed of a desktop application. The software components of LuciadRIA have been

More information

HELCOM Data and Map Service. User Manual

HELCOM Data and Map Service. User Manual HELCOM Data and Map Service User Manual Version 2.2 - February 2015 1 Table of contents 1. General Information... 3 1.1 Background... 3 1.2 Technical requirements... 3 1.3 Contact... 3 2. Accessing HELCOM

More information

Intelligent Fleet Management Platform User Manual (V1.2)

Intelligent Fleet Management Platform User Manual (V1.2) Intelligent Fleet Management Platform User Manual (V1.2) 2015-01-28 1 / 54 Catolog I Introduction... 3 II Login Interface... 4 III Monitor... 5 IV Track... 8 V Report... 9 5.1 Trip Fuel Report by Car...

More information

Digital Modernization of Oilfields Digital Oilfield to Intelligent Oilfield. Karamay Hongyou Software Co., Ltd.

Digital Modernization of Oilfields Digital Oilfield to Intelligent Oilfield. Karamay Hongyou Software Co., Ltd. Digital Modernization of Oilfields Digital Oilfield to Intelligent Oilfield Karamay Hongyou Software Co., Ltd. Professional technologies and information technology enhance the development of the oil industry.

More information

UPS battery remote monitoring system in cloud computing

UPS battery remote monitoring system in cloud computing , pp.11-15 http://dx.doi.org/10.14257/astl.2014.53.03 UPS battery remote monitoring system in cloud computing Shiwei Li, Haiying Wang, Qi Fan School of Automation, Harbin University of Science and Technology

More information

999GPS Tracking Platform Operation Guide

999GPS Tracking Platform Operation Guide 999GPS Tracking Platform Operation Guide Welcome to use this Real Time GPS tracking platform, This software is web based system, it is not necessary to download any software or any plug-in software, just

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Real Time Bus Monitoring System by Sharing the Location Using Google Cloud Server Messaging

Real Time Bus Monitoring System by Sharing the Location Using Google Cloud Server Messaging Real Time Bus Monitoring System by Sharing the Location Using Google Cloud Server Messaging Aravind. P, Kalaiarasan.A 2, D. Rajini Girinath 3 PG Student, Dept. of CSE, Anand Institute of Higher Technology,

More information

About As. In a team with the best. ESRI Bulgaria is the exclusive distributor of Esri Inc. for Bulgaria. Esri Inc.

About As. In a team with the best. ESRI Bulgaria is the exclusive distributor of Esri Inc. for Bulgaria. Esri Inc. About As ESRI Bulgaria is an IT company, leader in the field of Geographic Information Systems (GIS) on the Bulgarian market. Offering the most advanced high-tech products, solutions and services, ESRI

More information

The Visualization Simulation of Remote-Sensing Satellite System

The Visualization Simulation of Remote-Sensing Satellite System The Visualization Simulation of Remote-Sensing Satellite System Deng Fei, Chu YanLai, Zhang Peng, Feng Chen, Liang JingYong School of Geodesy and Geomatics, Wuhan University, 129 Luoyu Road, Wuhan 430079,

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

MDS. Measured Data Server Online Measurement Network. Properties and Benefits »»» »»»» ProduCt information

MDS. Measured Data Server Online Measurement Network. Properties and Benefits »»» »»»» ProduCt information ProduCt information MDS Measured Data Server Online Measurement Network Properties and Benefits Unlimited access to your data via Internet Measured data can be transferred online in minute intervals Economical

More information

Study of Logistics Warehouse Management System Based on RFID

Study of Logistics Warehouse Management System Based on RFID Advanced Materials Research Vol. 748 (2013) pp 1281-1284 Online available since 2013/Aug/30 at www.scientific.net (2013) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amr.748.1281

More information

International Journal of Software and Web Sciences (IJSWS) www.iasir.net. GPS and GSM Based Database Systems for User Access

International Journal of Software and Web Sciences (IJSWS) www.iasir.net. GPS and GSM Based Database Systems for User Access International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International

More information

Open Access Research on Database Massive Data Processing and Mining Method based on Hadoop Cloud Platform

Open Access Research on Database Massive Data Processing and Mining Method based on Hadoop Cloud Platform Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 1463-1467 1463 Open Access Research on Database Massive Data Processing and Mining Method

More information

Visual Studio 2008: Windows Presentation Foundation

Visual Studio 2008: Windows Presentation Foundation Visual Studio 2008: Windows Presentation Foundation Course 6460A: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with the knowledge and skills to build and

More information

A TABLE-FILLING SCHEDULING ALGORITHM FOR THE ROUND ROBIN CALENDAR PROBLEM WITH ARBITRARY COMPETITORS

A TABLE-FILLING SCHEDULING ALGORITHM FOR THE ROUND ROBIN CALENDAR PROBLEM WITH ARBITRARY COMPETITORS 30 th November 01. Vol. 45 No. 005-01 JATIT & LLS. All rights reserved. ISSN: 199-8645 www.jatit.org E-ISSN: 1817-3195 A TABLE-FILLING SCHEDULING ALGORITHM FOR THE ROUND ROBIN CALENDAR PROBLEM WITH ARBITRARY

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

How to use PGS: Basic Services Provision Map App

How to use PGS: Basic Services Provision Map App How to use PGS: Basic Services Provision Map App The PGS: Basic Services Provision Map App The main features of the PGP Basic Services web application includes: Navigation Tools Map Tools Main Map Links

More information

Dr. Shih-Lung Shaw s Research on Space-Time GIS, Human Dynamics and Big Data

Dr. Shih-Lung Shaw s Research on Space-Time GIS, Human Dynamics and Big Data Dr. Shih-Lung Shaw s Research on Space-Time GIS, Human Dynamics and Big Data for Geography Department s Faculty Research Highlight October 12, 2014 Shih-Lung Shaw, Ph.D. Alvin and Sally Beaman Professor

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

A load balancing method to support spatial analysis in XML/GML/SVG-based WebGIS

A load balancing method to support spatial analysis in XML/GML/SVG-based WebGIS A load balancing method to support spatial analysis in XML/GML/SVG-based WebGIS Haosheng Huang, Yan Li & Georg Gartner ABSTRACT: This chapter aims at introducing method for load balancing spatial analysis

More information

Getting Started with the ArcGIS Predictive Analysis Add-In

Getting Started with the ArcGIS Predictive Analysis Add-In Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................

More information

Activity: Using ArcGIS Explorer

Activity: Using ArcGIS Explorer Activity: Using ArcGIS Explorer Requirements You must have ArcGIS Explorer for this activity. Preparation: Download ArcGIS Explorer. The link below will bring you to the ESRI ArcGIS Explorer download page.

More information

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at http://www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2004 Vol. 3, No. 4 (April 2004) Special issue: TOOLS USA 2003 WebGD: A Framework for

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

WFP Liberia Country Office

WFP Liberia Country Office 1 Oscar Gobbato oscar.gobbato@wfp.org oscar.gobbato@libero.it WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic

More information

Internet of Things for Smart Crime Detection

Internet of Things for Smart Crime Detection Contemporary Engineering Sciences, Vol. 7, 2014, no. 15, 749-754 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4685 Internet of Things for Smart Crime Detection Jeong-Yong Byun, Aziz

More information

Implementing ArcGIS for SharePoint Habitat for Humanity of Omaha April, 2013

Implementing ArcGIS for SharePoint Habitat for Humanity of Omaha April, 2013 Ingenuity Innovation Integrity Implementing ArcGIS for SharePoint Habitat for Humanity of Omaha April, 2013 1851 Alexander Bell Drive Suite 350 Reston, VA 20191 703.463.2059 800.483.2434 www.vistronix.com

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

Report on the Train Ticketing System

Report on the Train Ticketing System Report on the Train Ticketing System Author: Zaobo He, Bing Jiang, Zhuojun Duan 1.Introduction... 2 1.1 Intentions... 2 1.2 Background... 2 2. Overview of the Tasks... 3 2.1 Modules of the system... 3

More information

Call Center and Clearing System. ID Technologies Inc

Call Center and Clearing System. ID Technologies Inc Call Center and Clearing System ID Technologies Inc Features Enterprise level ticket generation, clearing and tracking system GIS based integrated graphical information. Multi-format map integration Real

More information

Big Data Storage Architecture Design in Cloud Computing

Big Data Storage Architecture Design in Cloud Computing Big Data Storage Architecture Design in Cloud Computing Xuebin Chen 1, Shi Wang 1( ), Yanyan Dong 1, and Xu Wang 2 1 College of Science, North China University of Science and Technology, Tangshan, Hebei,

More information

Journal of Chemical and Pharmaceutical Research, 2015, 7(3):417-421. Research Article

Journal of Chemical and Pharmaceutical Research, 2015, 7(3):417-421. Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2015, 7(3):417-421 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Design and implementation of pharmaceutical enterprise

More information

Method of Fault Detection in Cloud Computing Systems

Method of Fault Detection in Cloud Computing Systems , pp.205-212 http://dx.doi.org/10.14257/ijgdc.2014.7.3.21 Method of Fault Detection in Cloud Computing Systems Ying Jiang, Jie Huang, Jiaman Ding and Yingli Liu Yunnan Key Lab of Computer Technology Application,

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625. Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625. Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 621-625 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Analysis on the problems and countermeasures for

More information