Research and Application on a Wireless GPS Data Collection and Display

Size: px
Start display at page:

Download "Research and Application on a Wireless GPS Data Collection and Display"

Transcription

1 Research and Application on a Wireless GPS Data Collection and Display System 1 Yikui Zhang, 2 Liwei Zhu, 3 Yisheng Lai, 4 Yan Zhang 1,2,4 School of Computer Software, Tianjin University Tianjin City, , P. R. China zhangyk@tju.edu.cn 3 International School, Beijing University of Posts & Telecom Beijing City, , P. R. China tommylys@gmail.com Abstract The main purpose of this paper is to build a system that can complete the whole process from collecting GPS data, transmitting through GSM network, processing GPS data, to displaying position in maps. Also, two further applications relied on this system is proposed in this paper. There are two modules in this system. One is GPSLogger, which can collect instant position data and transmit those data into the server, running on AVR Atmage64 microcontroller. The other one is GPSTracer that can gather GPS data from the logger calculate the geographic information and display position on the map. Keywords: GPS, Logger, Tracer, GPRS, Atmega64, Google Map JavaScript API, NMEA 1. Introduction GPS (Global Positioning System) is a brand-new space satellite navigation Positioning System. The original intention of developing this system is for U.S. troops to provide navigation services and some other military purposes. However, with the development of computers, communication and space technology, the needs of the navigation equipments are increasing. GPS now has been used widely in people s daily life and the scientific research. [1] In the past, the object of GPS is the cars, ships, aircraft, moving objects. But the GPS system itself has certain limitations. It can receive the GPS satellite transmitted data to access the users location of the 3D coordinate, movement direction, speed and so on. [2] But it did not have the ability to analyze path information (for example calculation length, calculation path center). This paper studies the problems from the needs of everyday life and research. Based on the traditional GPS technology, this study creates a separate system of the GPS data to process and display in the customer's network terminal. This paper explains the complete realization of GPS data receiving, real-time transmission storage, processing, and the function of display. Through the results in this paper, the customer can review their own trajectory more intuitively. At the same time, they can obtain and share the position of information with others. Furthermore, by the research in this paper, it will be possible to design an easy navigation algorithm and develop abundant applications on GPS, like booking intelligent taxi and the platform of making friends based on position, which provide more diversified GPS service for the vehicles and pedestrians. This paper mainly introduces the general structure of the system in the second part of the paper. It is composed of two parts. One is realizing the GPS recorder of being used for collecting and transmitting in the client; the other is realizing data collection and handling software, which is used for the function of GPS data collection, treatment and display in the server. In the third part of this paper, it mainly introduces the process of the system operation, including the relationship and sequencer of each module between the two parts. The fourth part of the paper tests the whole system. A group of testers with GPSLogger walk on campus, another group observes the first group s location and the path in real-time through the GPSTracer. The last part, or the fifth part, puts forward two possible applications based on this system. Taking two applications, for example, this paper proves practicability of the study, which also obtains the purpose of this study. International Journal of Digital Content Technology and its Applications(JDCTA) Volume6,Number1,January 2012 doi: /jdcta.vol6.issue

2 2. System structure The system developed by this work can be divided as two parts, the GPSLogger and the GPSTracer, which are based on a different platform and taken respective responsibilities to fulfill the whole function [3]. The GPSLogger is a portable mobile device, with embedded GPS module, can collect GPS data in real time, sent data to the server and record them in the SD card plotted in the device. The GPSTracer is software installed on PC side, can gather and store data from the GPSLogger and can display the position or moving path on Google Map. The overall structure of the system is shown in Fig. 1. Figure 1. Overall System Structure Diagram Through this structure, user can access the terminal s instant location information using the GPSTracer, to determine the location, motion parameters of terminals and show on the map, which enables many remote real-time monitoring and tracking applications. The two aspects of the system will be explained in more details. 2.1 GPSLogger The GPSLogger system includes the following functions: System Initialize, GPS data process, GPS data collect, network transmit. The structure of the system function is shown in Fig. 2. The System Initialization function contains all the initialization work need in the system, such as clearing the registers in the processor, setting USART serial port, enabling the receive and transmit interrupts, setting the GPS geodetic system for GPS-52D module [4]. Then the system needs the GPS Data Process function. In this function, receiving GPS data should be checked, if invalid the data will be discarded. If valid the key information will be resolved according to the NMEA-0138 protocol and store into appropriate intermediate variables. Next is the GPS Data Collect function which includes the ISR function to catch interrupts. Every time, the GPS data are collected in USART, it will be stored in the buffer. This part will call the function of GPS Data Process and finally store the data in SD card. The last and important function is network Transmit, covering two modules, can upload the data in SD card to the server every minutes, enabling the real-time updating of user information. When the condition of networks is bad, the information will be hold and wait for retransmit. The first module is 455

3 Figure 2. GPSLogger system function Diagram the transmit control, which can ensure the QoS of the transmission and fulfill UDP protocol. The other module is the GPRS module, can communicate with server through the GSM network [5]. 2.2 GPSTracer The GPSTracer contains 5 main system functions, Data gather, GPS Data Calculate, Parameter Configure, HTML map file dispose, GUI Design and Process. The function diagram is shown in Fig. 3. Figure 3. GPSTracer system function diagram Data Gather function includes two parts, first is monitoring network port to gather information sending from GPSLogger and store those data, second is read data from SD card, which is manually selected, can copy all information from the SD card into system. Then, the GPS Data Calculate function can generate all kinds of data files needed in the program, such as path script file, standard data files. Also, this function can be used to compute some geographical parameters, for instance, overage altitude, path length and center path. Further, the function of parameter configure need to implement interact with configuration files with software that should allows the ability of read and write with configuration files. Moreover, the HTML Map File function need to generate the map html files contains the Google Map API, which will be called by WebKit in QT to display maps in applications [6]. Also, it needs to provide the javascript files including all kinds of configuration information. Last is the GUI Design and Process function, which will write a UI file representing the whole interface of the software by the QT Designer. In this part, all interface element event handing mechanism have been considered and every event has a rational processing method. 3. Operation sequence In this part, the operation sequence of GPSLogger and GPSTracer are mainly discussed. GPSLogger, which run at AVR Atmega64, is first focused. Its sequence is shown in Fig. 4 [7]. 456

4 When switch power on, the first thing GPSLogger do is to get everything initialized. Then Logger will enter the receive loop, which means the processor will continue try to receive GPS data. If success, data process module will be called. Then data validation will be checked according to NMEA protocol. If the data is invalid, it will be discarded and program will return to receive next data. Otherwise, the data will be parsed by NMEA to extract key information and then write into SD card [8]. Then the data process module will also be ended and return to data collect loop. In addition, the transmission module will be triggered every 60 seconds and try to send the latest GPS data to the server. The amount of data to be transmitted will be decided by a data pointer. If the transmission succeeds, the data pointer will be move to the end of data. If failed, the module will try another 3 times. If all these attempts are failed, the data pointer will remain in the last position and these data will be retransmit in next time. Then the GPSTracer s operation sequence is discussed. The data gather function will always run in the background waiting for data transmission. It will follow the UDP protocol to receive and analyze the data packet. However, the map display part is called on demand. So it doesn t have a definite operate sequence. The core operation rounding the software configuration file is shown in Fig. 5. The map and moving path is display according to the parameters in the configuration file provided by GUI interface. Thus, every time the program run, the configuration file is needed. If the reading process failed, the default configuration will be invoked. And after the process is ended, the configuration parameters will be automatically saved for next time using. Another important function in the GPSTracer is generating standard data file and path script based on the GPS data gathered from GPSLogger. These two modules make up the function of GPS Data Calculate. Its operation is shown in Fig. 6. Standard data file is used to calculate geographic parameters, such as overage altitude, path length and center of path. The result of the path length is got by adding all the great-circle distance of adjacent points. To calculate the great-circle distance from the longitudes and latitudes of points, haversine formula is admitted [9]. The file is store in ASCII format, which makes it convenient to read and write for the GPSTracer, and have the same data content as GPS data file. Instead, the Path Script will extract the grid location of all points from GPS data. Then store the latitude and longitude information in a Javascript file for the map module to display path on the map. System Initialization GPS Data Collect Collect Success? New Configuration Files GPS Data Check Save Succeed? Use Default File Data Valid? GPS Data Process HTML Map File Read Configuration File Save Application Write in SD card Use Default Configure Read Succeed? Continue? Display Map Figure 4. GPSLogger Operate Sequence Figure 5. GPSTracer Operation Sequence Diagram 457

5 Figure 6. GPS Data Calculate Module Operation 4. System test Followed by the above design, the whole system has been build and tested. In this part, the result of the work will be shown. Fig. 7 shows the raw GPS data collected by GPSLogger. Figure 7. Screenshot of data collect by GPSLogger Then after the data process function in GPSLogger, the key information is extracted and stored. Fig. 8 shows the data processed by GPSLogger and will transmit to GPSTracer. These data in Fig. 8 is gathered from the raw data in Fig. 7. When GPSTracer receive these data, it will rearrange these data to generate the standard data file for further using in reading and writing. The standard data file is shown in Fig. 9 are got from above data. Figure 8. Screenshot of the Processed Data Figure 9. Standard Data File The initial UI of the GPSTracer is shown in Fig. 10. The default map will display and user can adjust the map parameter in the right hand side panel. 458

6 Figure 10. Initial Interface of GPSTracer When the GPS data file is open, the path will be display in the map. As shown in Fig. 11. By adjusting the button in the right, the pattern of the path can be changed. Also, information of the path can be calculated by GPSTracer, such as the start and end time, the total length of the path. This function is shown in Fig. 12. Figure 11. Path displayed in the map Figure 12. Display of path information 5. Related application The creating of GPS is for the military programs in the United States at the beginning, and then it has developed as dual-use in the field of military and common people. It has brought earthshaking changes on the scientific research of human beings, Engineering Technology, Military technology and daily life, which once again leads to the improvement of Human productivity. In the United States, the market of GPS alone has reached 3 billion dollars. And in China, it almost has reached 5 billion RMB. Thus, it can be seen that the market of GPS Technology has an optimistic perspective. Based on the creating combination of the technology on GPS record and display with instant transmit by wireless Network, the study applies this innovation to the research on following the tracks of a special crowd such as children and the elder and children with the mental disabilities, escorting the precious valuables, Car Black Box and inductor between taxis and customers [11]. In the application to special people, this study embedded this kind of product on special groups. Then the wireless network will upload the position of carriers in real-time to make terminal managers see the location of the objectives and his mobile route so as to achieve the purpose of tracking and preventing getting lost. What s more, because of the function of record and display in the SD card, the application can also record the route even if it lost contract with wireless networks, which will display the track route once connecting a wireless network or meet the same GPS device. The function of display track route not only reduces the burden of people who has the worries about losing children and the elder and children with mental disabilities but also strengthen the protection of these special people. In the same way, this technique can be used in escorting valuables to ensure a safe and effective tracking route for valuables. Based on the research of technology has been applied, this paper has a realizable future design. The structure of the system is shown in Fig

7 The taxis and mass population are all equipped this GPS real-time record and display device. Due to the terminal management, people actually can learn other people s location by authorization. So with this device, people can clearly see what sections of traffic are blocked so that they can avoid unknowingly crowded and easing the traffic pressure [12]. Furthermore, by uploading the location of these taxis and pedestrian, taxis could directly search for the passengers nearby, which effectively avoid unnecessary looking for customers, reduce the energy consumption, save the time of pedestrians and taxi drivers. This research produces a breakthrough of the embedded GPS chip with the real-time position information of data acquisition [11]. The service handles all uploaded information and put the entire position signal back to the message sender, which effectively shares the location of related people. And because of the service provider which makes the embedded chip access mobile phone applied to individuals and ensures accurate flows of information between people and vehicles [13]. It will truly realize the GPS application s low-cost and high performance. In other aspects, the high-quality data produced by the GPS record and display device can be used as black box s reference data. After the traffic accident, this device can provide the speed and route information at accident time to help person analysis the reason of the accident. Based on the technology, this study will concentrate on further designing the easy navigation algorithms that can provide vehicles and pedestrians more diversified GPS service. 6. Conclusion Figure 13. The Structure of Taxi s Monitoring System This paper mainly introduces the structure of a real-time GPS record and display system with wireless network, its operation process, the results and related applications. Different from traditional GPS navigation, the innovation of this study is to store the received GPS data with a specific file format in the SD card according to the analytical of NMEA protocol and record the real-time movement track by using the GSM module connecting the wireless network which eventually delivery the location information to the server. This study realizes the low cost high performance of the GPS innovation system that no matter when and where you are can it track mobile location. In the public life, this study greatly increases the convenience of travel and ensures the special people s security, reducing the burden of the special groups guardian. We believe as in this paper that the low-cost and high performance GPS system will create inestimable value in the future, and it is also waiting for more and more excellent explorers to study together. 460

8 7. References [1] Dingfa HUANG, Yongliang XIONG, Linguo YUAN, Global Positioning System: Theory and Practice, Southwest Jiao Tong University Publisher, Chendu, 2004 [2] Shengxiang HUANG, Yingqi GUO, Qinglin YI, The Application of The Gps in Surveying and Mapping, Surveying And Mapping Publisher, Beijing, 2002 [3] NMEA Official Site NMEA 0183 Standard [EB/OL] [4] WikipediaGPS[EB/OL] [5] Clark, M.P. (2003). Data Networks IP and the Internet, 1st ed. West Sussex, England: John Wiley & Sons Ltd. [6] Google MAP APIGPS[EB/OL] [7] Beijing University of Aeronautics and Astronautics. Microcontrollers and Embedded Systems [J] Beijing: Microcontrollers and Embedded Systems magzine, 2001 [8] Hui Hu, The Realization of GPS Data Acquisition Software [J]. Global Positioning System, 2008(1): [9] R. W. Sinnott, "Virtues of the Haversine", Sky and Telescope 68 (2), 159 (1984) [10]Shuangli Wu, Jian Cui, Bopling Wang, AVR-GCC And AVR MCU C Language Development [M] Beijing: Beijing University of Aeronautics and Astronautic Press, [11]Wenyu Guo, The software development of GPS location information collection and display system, The School of Software Engineering in Tianjin University. [12]Joo-Yen Choi, Ja-Hyun Jung, Sungmi Park, Hyun-Jeong Shin, Byeong-Mo Chang, A Smart Location-Aware Application for Bus Guide based on GPS, International Journal of Information Processing and Management, vol.2, no.1, pp , 2011 [13] Cui-Xia Li, Wei-Ming Liu, Zi-Nan Fu, "GPS/TDOA Hybrid Location Algorithm Based on Federal Kalman Filter", Journal of Convergence Information Technology, vol.5, no.7, pp ,

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Xi Wang 1 and Hui Gao 2 1 Heilongjiang Bayi Agricultural Reclamation University, Daqing 163319, China 2 Lanzhou Jiaotong

More information

A Balancing Algorithm in Wireless Sensor Network Based on the Assistance of Approaching Nodes

A Balancing Algorithm in Wireless Sensor Network Based on the Assistance of Approaching Nodes Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com A Balancing Algorithm in Wireless Sensor Network Based on the Assistance of Approaching Nodes 1,* Chengpei Tang, 1 Jiao Yin, 1 Yu Dong 1

More information

Participatory Sensing for Public Transportation Information Service

Participatory Sensing for Public Transportation Information Service GRD Journals Global Research and Development Journal for Engineering International Conference on Innovations in Engineering and Technology (ICIET) - 2016 July 2016 e-issn: 2455-5703 Participatory Sensing

More information

Cemetery Navigation and Information Query System Based on Android and Java Web

Cemetery Navigation and Information Query System Based on Android and Java Web 2017 3rd International Conference on Computational Systems and Communications (ICCSC 2017) Cemetery Navigation and Information Query System Based on Android and Java Web Chao Ding1, a, Yongjie Yang1, b,

More information

A Design of Remote Monitoring System based on 3G and Internet Technology

A Design of Remote Monitoring System based on 3G and Internet Technology National Conference on Information Technology and Computer Science (CITCS 2012) A Design of Remote Monitoring System based on 3G and Internet Technology Shouxian WEN Lei XU Xingguo SUN Xiaohui LI* Abstract

More information

Traffic Flow Prediction Based on the location of Big Data. Xijun Zhang, Zhanting Yuan

Traffic Flow Prediction Based on the location of Big Data. Xijun Zhang, Zhanting Yuan 5th International Conference on Civil Engineering and Transportation (ICCET 205) Traffic Flow Prediction Based on the location of Big Data Xijun Zhang, Zhanting Yuan Lanzhou Univ Technol, Coll Elect &

More information

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,*

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,* 2016 Joint International Conference on Service Science, Management and Engineering (SSME 2016) and International Conference on Information Science and Technology (IST 2016) ISBN: 978-1-60595-379-3 The

More information

Accuracy of Matching between Probe-Vehicle and GIS Map

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

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK DESIGN & IMPLEMENTATION OF LOCATION AWARENESS & SHARING SYSTEM USING GPS & GPRS

More information

Remote Monitoring System of Ship Running State under Wireless Network

Remote Monitoring System of Ship Running State under Wireless Network Journal of Shipping and Ocean Engineering 7 (2017) 181-185 doi 10.17265/2159-5879/2017.05.001 D DAVID PUBLISHING Remote Monitoring System of Ship Running State under Wireless Network LI Ning Department

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

Performance Enhancement of Routing Protocols for VANET With Variable Traffic Scenario

Performance Enhancement of Routing Protocols for VANET With Variable Traffic Scenario Performance Enhancement of Routing Protocols for VANET With Variable Traffic Scenario Uttara Vyas 1, Prof. Kamlesh Chopra 2, Prof. Prashant Lakkadwala 3 1 Computer Science and Engineering,Acropolis Technical

More information

Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring

Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Application of Theory and Technology of Wireless Sensor Network System for Soil Environmental Monitoring 1,2,3 Xu Xi, 3 Xiaoyao Xie, 4 Zhang

More information

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption Zeng Rong 1, a, Xia Wei 2, Wang Hongkai

More information

Reliable Mobile IP Multicast Based on Hierarchical Local Registration

Reliable Mobile IP Multicast Based on Hierarchical Local Registration Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Reliable Mobile IP Multicast Based on Hierarchical Local Registration Huanming ZHANG, * Quanlong GUAN, Zi Zhao ZHU, Weiqi

More information

International Journal of Modern Trends in Engineering and Research e-issn No.: , Date: 2-4 July, Bus Notification System

International Journal of Modern Trends in Engineering and Research  e-issn No.: , Date: 2-4 July, Bus Notification System International Journal of Modern Trends in Engineering and Research www.ijmter.com e-issn No.:2349-9745, Date: 2-4 July, 2015 Bus Notification System Mr.S.B.Ambhore 1, Chaitanya Tondlekar 2, Payal Chopda

More information

Construction and Application of Cloud Data Center in University

Construction and Application of Cloud Data Center in University International Conference on Logistics Engineering, Management and Computer Science (LEMCS 2014) Construction and Application of Cloud Data Center in University Hong Chai Institute of Railway Technology,

More information

Geospatial Information Service Based on Ad Hoc Network

Geospatial Information Service Based on Ad Hoc Network I. J. Communications, Network and System Sciences, 2009, 2, 91-168 Published Online May 2009 in SciRes (http://www.scirp.org/journal/ijcns/). Geospatial Information Service Based on Ad Hoc Network Fuling

More information

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM Lijun Gao Beijing Information

More information

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS Key Engineering Materials Online: 2009-10-08 ISSN: 1662-9795, Vols. 419-420, pp 557-560 doi:10.4028/www.scientific.net/kem.419-420.557 2010 Trans Tech Publications, Switzerland Utilizing Restricted Direction

More information

Research Article. ISSN (Print) *Corresponding author Chen Hao

Research Article. ISSN (Print) *Corresponding author Chen Hao Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 215; 3(6):645-65 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources)

More information

A Novel Method for Activity Place Sensing Based on Behavior Pattern Mining Using Crowdsourcing Trajectory Data

A Novel Method for Activity Place Sensing Based on Behavior Pattern Mining Using Crowdsourcing Trajectory Data A Novel Method for Activity Place Sensing Based on Behavior Pattern Mining Using Crowdsourcing Trajectory Data Wei Yang 1, Tinghua Ai 1, Wei Lu 1, Tong Zhang 2 1 School of Resource and Environment Sciences,

More information

Chapter 2 The Research on Wireless Positioning Base on ZigBee

Chapter 2 The Research on Wireless Positioning Base on ZigBee Chapter 2 The Research on Wireless Positioning Base on ZigBee Hong Li and Lian-he Cui Abstract With the development of modern sensor and wireless communication technology, the content networking technology

More information

The Study and Implementation of Text-to-Speech System for Agricultural Information

The Study and Implementation of Text-to-Speech System for Agricultural Information The Study and Implementation of Text-to-Speech System for Agricultural Information Huoguo Zheng 1,2,*, Haiyan Hu 1,2, Shihong Liu 1,2, and Hong Meng 1,2 1 Agricultural Information Institute, Chinese Academy

More information

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network Applied Mechanics and Materials Submitted: 2014-06-18 ISSN: 1662-7482, Vol. 665, pp 674-678 Accepted: 2014-07-31 doi:10.4028/www.scientific.net/amm.665.674 Online: 2014-10-01 2014 Trans Tech Publications,

More information

A Remote Mobile Controlling and Monitoring Vehicle System

A Remote Mobile Controlling and Monitoring Vehicle System International Conference on Advances in Energy, Environment and Chemical Engineering (AEECE-2015) A Remote Mobile Controlling and Monitoring Vehicle System Xutao.Liu 1, a, Feng.Luo 2, b 1 Clean Energy

More information

An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles

An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles 2016 2 nd International Conference on Energy, Materials and Manufacturing Engineering (EMME 2016) ISBN: 978-1-60595-441-7 An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles

More information

Design of the Refueling Card Information Transmission System Based On DTMF

Design of the Refueling Card Information Transmission System Based On DTMF Design of the Refueling Card Information Transmission System Based On DTMF Yingzhi Wang 1, Han Lin 2, Zewen Chang 3, Jia Yang 4 1 Changchun University of Science and Technology, Changchun 130022 China

More information

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

More information

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 673 678 International Workshop on Automobile, Power and Energy Engineering The IIC interface based on ATmega8 realizes the applications

More information

Tracking Misplaced Objects Using Bluetooth and GPS with Arm Cortex M3 Development Board * 1 D. Aswani, 2 P. Chandramouli, 1, 2

Tracking Misplaced Objects Using Bluetooth and GPS with Arm Cortex M3 Development Board * 1 D. Aswani, 2 P. Chandramouli, 1, 2 DOI 10.29042/2018-2664-2668 Helix Vol. 8(1): 2664-2668 Tracking Misplaced Objects Using Bluetooth and GPS with Arm Cortex M3 Development Board * 1 D. Aswani, 2 P. Chandramouli, 1, 2 ECE Department, SVEW,

More information

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,* International Conference on Computational Science and Engineering (ICCSE 2015) Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

More information

THE STUDY AND IMPLEMENTATION OF TEXT-TO-SPEECH SYSTEM FOR AGRICULTURAL INFORMATION

THE STUDY AND IMPLEMENTATION OF TEXT-TO-SPEECH SYSTEM FOR AGRICULTURAL INFORMATION THE STUDY AND IMPLEMENTATION OF TEXT-TO-SPEECH SYSTEM FOR AGRICULTURAL INFORMATION Huoguo Zheng,2,* 1, Haiyan Hu 1, 2,Shihong Liu 1, 2, Hong Meng 1, 2 1 Agricultural Information Institute, Chinese Academy

More information

Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus

Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus Research on Approach of Equipment Status and Operation Information Acquisition Based on Equipment Control Bus Xu Li a, *, Chen Meng, Huixia Jiang, Cheng Wang Army Engineering University, Shijiazhuang 050003,

More information

Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer Hao ZHANG 1, Jun-yu LIU 2, Yi-ying ZHANG 3 and Kun LIANG 3,*

Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer Hao ZHANG 1, Jun-yu LIU 2, Yi-ying ZHANG 3 and Kun LIANG 3,* 2017 International Conference on Computer, Electronics and Communication Engineering (CECE 2017) ISBN: 978-1-60595-476-9 Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer

More information

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b Applied Mechanics and Materials Submitted: 2014-11-12 ISSN: 1662-7482, Vol. 740, pp 782-785 Accepted: 2014-12-02 doi:10.4028/www.scientific.net/amm.740.782 Online: 2015-03-09 2015 Trans Tech Publications,

More information

Design and implementation of the visualization tourism help system Based on the android Yan Wang 1,a,Wang CJ 2,b, Yang HS 3, c

Design and implementation of the visualization tourism help system Based on the android Yan Wang 1,a,Wang CJ 2,b, Yang HS 3, c 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Design and implementation of the visualization tourism help system Based on the android Yan Wang 1,a,Wang

More information

Design of Remote GPRS-based Gas Data Monitoring System

Design of Remote GPRS-based Gas Data Monitoring System IOP Conference Series: Earth and Environmental Science PAPER OPEN ACCESS Design of Remote GPRS-based Gas Data Monitoring System To cite this article: Xiyue Yan et al 2018 IOP Conf. Ser.: Earth Environ.

More information

Temperature Control System of Cold Storage

Temperature Control System of Cold Storage International Conference on Electromechanical Control Technology and Transportation (ICECTT 2015) Temperature Control System of Cold Storage Ting Lu 1 and Zeliang Liu 2 School of Electronic Engineering,

More information

Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests

Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests Study on Jabber Be Applied to Video Diagnosis for Plant Diseases and Insect Pests Wei Zhang *, JunFeng Zhang, Feng Yu, JiChun Zhao, and RuPeng Luan Agriculture and Forestry Academy of Beijing; Beijing

More information

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 380-384, pp 4796-4799 doi:10.4028/www.scientific.net/amm.380-384.4796 2013 Trans Tech Publications, Switzerland Construction of

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 CADDM Aircraft wing box rapid modeling based on skeleton model Zhang Chao, Xi Ping School of Mechanical Engineering

More information

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Research on Multi-service Unified Bearing Electric Power Communication Access Bao Feng1,a, Yang

More information

Wireless Sensor Environment Monitoring System for Chemical Industrial Areas Based on Path Selection Routing Algorithm

Wireless Sensor Environment Monitoring System for Chemical Industrial Areas Based on Path Selection Routing Algorithm 769 A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 62, 2017 Guest Editors: Fei Song, Haibo Wang, Fang He Copyright 2017, AIDIC Servizi S.r.l. ISBN 978-88-95608-60-0; ISSN 2283-9216 The Italian

More information

3 The standard grid. N ode(0.0001,0.0004) Longitude

3 The standard grid. N ode(0.0001,0.0004) Longitude International Conference on Information Science and Computer Applications (ISCA 2013 Research on Map Matching Algorithm Based on Nine-rectangle Grid Li Cai1,a, Bingyu Zhu2,b 1 2 School of Software, Yunnan

More information

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology 2010 China International Conference on Electricity Distribution 1 Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology Zhang Hong-tao, Ye Ying, An Qing China Zhoukou Power

More information

The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals

The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals Huan-Huan BIAN, Yu-Duo

More information

Quality Assessment of Power Dispatching Data Based on Improved Cloud Model

Quality Assessment of Power Dispatching Data Based on Improved Cloud Model Quality Assessment of Power Dispatching Based on Improved Cloud Model Zhaoyang Qu, Shaohua Zhou *. School of Information Engineering, Northeast Electric Power University, Jilin, China Abstract. This paper

More information

High Level Architecture and Agent Technology based Astronautics Simulation Platform and Cluster Computing Environment s Construction

High Level Architecture and Agent Technology based Astronautics Simulation Platform and Cluster Computing Environment s Construction High Level Architecture and Agent Technology based Astronautics Simulation Platform and Cluster Computing Environment s Construction Zhen SHEN And Jing YAO And Dong-yun YI ABSTRACT The astronautics oriented

More information

CrowdPath: A Framework for Next Generation Routing Services using Volunteered Geographic Information

CrowdPath: A Framework for Next Generation Routing Services using Volunteered Geographic Information CrowdPath: A Framework for Next Generation Routing Services using Volunteered Geographic Information Abdeltawab M. Hendawi, Eugene Sturm, Dev Oliver, Shashi Shekhar hendawi@cs.umn.edu, sturm049@umn.edu,

More information

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 504-509 doi:10.4028/www.scientific.net/amm.519-520.504 2014 Trans Tech Publications, Switzerland Realization of Automatic

More information

GPS Vehicle and personal location tracker

GPS Vehicle and personal location tracker Version Number Modified by Change Content Type Date V1.0 Amy create 2014.06.23 GPS Vehicle and personal location tracker User Manual GPS Vehicle and personal location tracker User Manual 1 Contents 1.

More information

ITS (Intelligent Transportation Systems) Solutions

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

More information

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun Advanced Materials Research Online: 2014-05-21 ISSN: 1662-8985, Vol. 933, pp 516-520 doi:10.4028/www.scientific.net/amr.933.516 2014 Trans Tech Publications, Switzerland The Design of CAN Bus Communication

More information

Research on WSN Secure Communication Method Based on Digital Watermark for the Monitoring of Electric Transmission Lines

Research on WSN Secure Communication Method Based on Digital Watermark for the Monitoring of Electric Transmission Lines DOI: 10.23977/acss.2019.31002 EISSN 2371-8838 Advances in Computer, Signals and Systems (2019) 3: 8-14 Clausius Scientific Press, Canada Research on WSN Secure Communication Method Based on Digital Watermark

More information

ARM 7 Based Smart Monitor and Control on Bus Stand

ARM 7 Based Smart Monitor and Control on Bus Stand ARM 7 Based Smart Monitor and Control on Bus Stand Shital M. Dharrao 1 PG Scholar shitaldharrao257@gmail.com Vijay D. Chaudhari 2 Asstt. Prof. vinuda_chaudhari@yahoo.co.in Dr. K. P. Rane 3 Head, E&TC department

More information

Research Article. Three-dimensional modeling of simulation scene in campus navigation system

Research Article. Three-dimensional modeling of simulation scene in campus navigation system Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2013, 5(12):103-107 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Three-dimensional modeling of simulation scene

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

More information

Design of Smart Home System Based on ZigBee Technology and R&D for Application

Design of Smart Home System Based on ZigBee Technology and R&D for Application Energy and Power Engineering, 2016, 8, 13-22 Published Online January 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.81002 Design of Smart Home System Based on ZigBee

More information

Design and Implementation of Digital Library Fanqi Wei, Yan Zhang and Xiaoping Feng

Design and Implementation of Digital Library Fanqi Wei, Yan Zhang and Xiaoping Feng Advances in Computer Science Research (ACSR), volume 73 7th International Conference on Education, Management, Information and Computer Science (ICEMC 2017) Design and Implementation of Digital Library

More information

Vehicle and personal location tracker

Vehicle and personal location tracker Version Number Modified by Change Content Type Date V1.0 Amy create 2016.08.28 GPS Vehicle and personal location tracker User Manual GPS Vehicle and personal location tracker User Manual Version Number

More information

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Research of tooling test collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 1 School

More information

Research on monitoring technology of Iu-PS interface in WCDMA network

Research on monitoring technology of Iu-PS interface in WCDMA network Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2354 2358 Advanced in Control Engineering and Information Science Research on monitoring technology of Iu-PS interface in WCDMA

More information

Research and Implementation of Server Load Balancing Strategy in Service System

Research and Implementation of Server Load Balancing Strategy in Service System Journal of Electronics and Information Science (2018) 3: 16-21 Clausius Scientific Press, Canada Research and Implementation of Server Load Balancing Strategy in Service System Yunpeng Zhang a, Liwei Liu

More information

Keywords: Cloud computing, ZigBee, Smart home, Security cloud

Keywords: Cloud computing, ZigBee, Smart home, Security cloud 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: 978-1-60595-375-5 Design of the Smart-home Security System based on Cloud Computing Yan Wang 1,a,

More information

Research on Measured Course Accuracy Based on Relative Measure between Azimuth and Relative Bearing

Research on Measured Course Accuracy Based on Relative Measure between Azimuth and Relative Bearing nd International Conference on Education Technology, Management and Humanities Science (ETMHS 016) Research on Measured Course Accuracy Based on Relative Measure etween Azimuth and Relative Bearing Wang

More information

Research on Anti-collision Algorithm Optimization of RFID Tag Based on Binary Search

Research on Anti-collision Algorithm Optimization of RFID Tag Based on Binary Search Research on Anti-collision Algorithm Optimization of RFID Tag Based on Binary Search Jinyan Liu, Quanyuan Feng School of Information Science and Technology, Southwest Jiaotong University, Chengdu 610031,

More information

Immune Optimization Design of Diesel Engine Valve Spring Based on the Artificial Fish Swarm

Immune Optimization Design of Diesel Engine Valve Spring Based on the Artificial Fish Swarm IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-661, p- ISSN: 2278-8727Volume 16, Issue 4, Ver. II (Jul-Aug. 214), PP 54-59 Immune Optimization Design of Diesel Engine Valve Spring Based on

More information

GPS Vehicle and personal location tracker. User manual

GPS Vehicle and personal location tracker. User manual GPS Vehicle and personal location tracker User manual 1 Contents 1. Product overview... 2 2. Safety instruction... 3 3. Specification and parameters... 3 4. Getting started... 4 4.1 Hardware and accessories...

More information

A New Method Of VPN Based On LSP Technology

A New Method Of VPN Based On LSP Technology 2nd Joint International Information Technology, Mechanical and Electronic Engineering Conference (JIMEC 2017) A New Method Of VPN Based On LSP Technology HaiJun Qing 1, 2 1, 2, ChaoXiang Liang, LiPing

More information

An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing

An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing International Forum on Energy, Environment and Sustainable Development (IFEESD 206) An Improved Method of Vehicle Driving Cycle Construction: A Case Study of Beijing Zhenpo Wang,a, Yang Li,b, Hao Luo,

More information

Tourism Guide for Tamilnadu (Android Application)

Tourism Guide for Tamilnadu (Android Application) IJIRST International Journal for Innovative Research in Science & Technology Volume 4 Issue 11 April 2018 ISSN (online): 2349-6010 Tourism Guide for Tamilnadu (Android Application) P. K. Jithin P. Prasath

More information

Design and Development of Control System for Three- Dimensional Wireless Human-Computer

Design and Development of Control System for Three- Dimensional Wireless Human-Computer IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 3 Ver. II (May Jun. 2014), PP 71-76 Design and Development of Control System for

More information

Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang Tang 1, Huichun Peng 2

Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang Tang 1, Huichun Peng 2 International Conference on Automation, Mechanical Control and Computational Engineering (AMCCE 2015) Test Analysis of Serial Communication Extension in Mobile Nodes of Participatory Sensing System Xinqiang

More information

An Solution of Network Service Oriented Operator Network Intrusion Prevention

An Solution of Network Service Oriented Operator Network Intrusion Prevention International Symposium on Computers & Informatics (ISCI 2015) An Solution of Network Service Oriented Operator Network Intrusion Prevention Jie Li, Yang Li DIGITAL CHINA(CHINA)LIMITED, Beijing, China

More information

Smart Security For Car Using OT

Smart Security For Car Using OT Smart Security For Car Using OT M.N Aishwarya 1, Dr. Priyatam Kumar 1 1 Department of Electronics and Communication Engineering, B.V.B College of Engineering Technology, Hubli, Karnataka, India Abstract-

More information

Detection of Water Pollution and Water Management Using Smart Sensors with IOT

Detection of Water Pollution and Water Management Using Smart Sensors with IOT Detection of Water Pollution and Water Management Using Smart Sensors with IOT J.Navarajan, B. Aswin kumar, S. venkatesh, T. jayachandran Professor J.Navarajan, Department of Electronics and Communication

More information

An Environment Monitoring System Design Based on IOT and Web 2.0

An Environment Monitoring System Design Based on IOT and Web 2.0 1 Zhu Quanyin, 2 Fu Chen *1, Faculty of Computer Engineering, Huaiyin Institute of Technology, Huaian, 223003, China, hyitzqy@126.com 2, Faculty of Computer Engineering, Huaiyin Institute of Technology,

More information

A Field Monitor System of Rodpumped Wells Based on GPRS

A Field Monitor System of Rodpumped Wells Based on GPRS A Field Monitor System of Rodpumped Wells Based on GPRS Item Type text; Proceedings Authors Zhaodong, Xing; Yanhong, Kou; Qishan, Zhang Publisher International Foundation for Telemetering Journal International

More information

A GPS Based Novel Bull Tracking System for Jallikattu

A GPS Based Novel Bull Tracking System for Jallikattu This work by IJARBEST is licensed under Creative Commons Attribution 4.0 International License. Available at https://www.ijarbest.com A GPS Based Novel Bull Tracking System for Jallikattu T.R.S.Muthukumaar

More information

A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things

A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things A Data Collecting and Caching Mechanism for Gateway Middleware in the Web of Things Xuchao Chang, Chunhong Zhang, Li Sun Beijing University of Posts and Telecommunications, Beijing, 100876, China E-mail:

More information

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN 2016 International Conference on Wireless Communication and Network Engineering (WCNE 2016) ISBN: 978-1-60595-403-5 Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 1

More information

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture Yuan-ni Liu Hong Tang, Guo-feng Zhao The School of Communication and Information Engineering of ChongQing University of Posts and

More information

Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network

Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network Design of Smart home System Based on Basic Radio Frequency Wireless Sensor Network https://doi.org/10.3991/ijoe.v14i04.8389 Fang Tian!! " Hunan Institute of Science and Technology, Yueyang, China 3151088628@qq.com

More information

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015)

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) ARINC - 429 airborne communications transceiver system based on FPGA implementation Liu Hao 1,Gu Cao 2,MA

More information

An Arduino Based Indoor & Outdoor Positioning System (IOPS)

An Arduino Based Indoor & Outdoor Positioning System (IOPS) An Arduino Based Indoor & Outdoor Positioning System (IOPS) Vijaya Khamkar, Shweta Kandgave, Suraj Jamdade,Dinesh Shirsath P.V.P.I.T.Budhgaon, Sangli, India. P.V.P.I.T.Budhgaon, Sangli, India. P.V.P.I.T.Budhgaon,

More information

Application of Three-dimensional Visualization Technology in Real Estate Management Jian Cui 1,a, Jiju Ma 2,b, Dongling Ma 1, c and Nana Yang 3,d

Application of Three-dimensional Visualization Technology in Real Estate Management Jian Cui 1,a, Jiju Ma 2,b, Dongling Ma 1, c and Nana Yang 3,d Applied Mechanics and Materials Online: 2014-07-04 ISSN: 1662-7482, Vols. 580-583, pp 2765-2768 doi:10.4028/www.scientific.net/amm.580-583.2765 2014 Trans Tech Publications, Switzerland Application of

More information

Design and Implementation of Aquarium Remote Automation Monitoring and Control System

Design and Implementation of Aquarium Remote Automation Monitoring and Control System Design and Implementation of Aquarium Remote Automation Monitoring and Control System Yinchi Ma 1,2,* and Wen Ding 1,2 1 Beijing Fisheries Research Institute, Beijing, 100068, China 2 National Engineering

More information

Research on 3G Terminal-Based Agricultural Information Service

Research on 3G Terminal-Based Agricultural Information Service Research on 3G Terminal-Based Agricultural Information Service Neng-fu Xie and Xuefu Zhang Agricultural Information Institute, The Chinese Academy of Agricultural Sciences Key Laboratory of Digital Agricultural

More information

A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo

A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) A Novel Intrusion Detection Method for WSN Sijia Wang a, Qi Li and Yanhui Guo Beijing University of

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Design and Implementation of Intelligent Home Control System under the Concept of IoT

Design and Implementation of Intelligent Home Control System under the Concept of IoT 2018 2nd International Conference on Systems, Computing, and Applications (SYSTCA 2018) Design and Implementation of Intelligent Home Control System under the Concept of IoT Weiliang Li1, Hao Yu2, Yantong

More information

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 1461-1465 1461 Open Access The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based

More information

International Journal of Innovative Research in Technology & Science A DTN ROUTING BASED ON AN ADAPTIVE DYNAMIC AGING FACTOR IN URBAN ENVIRONMENTS

International Journal of Innovative Research in Technology & Science A DTN ROUTING BASED ON AN ADAPTIVE DYNAMIC AGING FACTOR IN URBAN ENVIRONMENTS A DT ROUTIG BASED O A ADAPTIVE DYAMIC AGIG FACTOR I URBA EVIROMETS *Tingwei Fu 1, *Wenzao Li 2, *Yang Liu 3, *Zhan Wen 1 1. School of Communication Engineering, Chengdu University of Information Technology,

More information

Preliminary Research on Distributed Cluster Monitoring of G/S Model

Preliminary Research on Distributed Cluster Monitoring of G/S Model Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 860 867 2012 International Conference on Solid State Devices and Materials Science Preliminary Research on Distributed Cluster Monitoring

More information

Turban and Volonino. Mobile Commerce. Information Technology for Management Improving Performance in the Digital Economy

Turban and Volonino. Mobile Commerce. Information Technology for Management Improving Performance in the Digital Economy Turban and Volonino Chapter 7 Mobile Commerce Information Technology for Management Improving Performance in the Digital Economy 7 th edition John Wiley & Sons, Inc. Slides contributed by Dr. Sandra Reid

More information

Industrial Feedback cum Control System through CAN Protocol

Industrial Feedback cum Control System through CAN Protocol Industrial Feedback cum Control System through CAN Protocol Jaikaran Singh Assoc. Professor, ECE Mukesh Tiwari Assoc. Professor, ECE Manish Shrivastava M. Tech Scholar (VLSI) ABSTRACT Industrial automation

More information

Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS

Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS Ehtesam Zaki M.Tech Student, Dept of ECE, VIF College Of Engineering and Technology. ABSTRACT: Traffic accidents are one of the leading

More information