Open-Source-based Visualization of Flight Waypoint Tracking Using Flight Manipulation System

Size: px
Start display at page:

Download "Open-Source-based Visualization of Flight Waypoint Tracking Using Flight Manipulation System"

Transcription

1 Open-Source-based Visualization of Flight Waypoint Tracking Using Flight Manipulation System Myeong-Chul Park a, Hyeon-Gab Shin b, Yong Ho Moon b, Seok-Wun Ha b*, a Dept. of Biomedical Electronics, Songho College, Namsanri, HoengseongEup, HoengseongGun , Republic of Korea b,b* Dept. of Informatics, Gyeongsang National University, 900 Gajwadong, Jinju , Republic of Korea a africa@songho.ac.kr, b hkshin2@gmail.com, yhmoon5@gnu.ac.kr b* swha@gnu.ac.kr ( * corresponding author) Abstract Flight Waypoint visualization of the aircraft is the system which is widely used to solve the threat against a low altitude task and terrain altitude. But, it is difficult to implement the system because of restrictions that a GPS data and a huge geographic information should be stored. In this paper, an open-source-based Moving Map system for an economic visualization of the flight Waypoint is proposed. First, a simulated flight path information transferred from Flight Manipulation System interlocked with X-Plane through UDP is acquired and then from this a terrain altitude information is earned and simultaneously demonstrated on Google Earth. In the proposed Moving Map system, flight waypoints are visualized on the map information downloaded from a Map server using the mapping data between the present altitude of the aircraft and the present terrain altitude. Also, the monitoring screen is provided that indicates the terrain location which has the dangerous characteristic of collision at the projected course by comparing the terrain altitude and the aircraft s altitude which it follows in time interval. The outgrowths of this paper could be used an economic tool in the field of flight Waypoint visualization and the flight algorithm research. Keywords: Flight Waypoint, Visualization, Manipulation, Open Source, Moving Map. 1. Introduction Flight visualization has been widely used to more effectively cope with the various threats from skies and an accidental situation change [1], [2]. In recent, the related studies of automatic generation of waypoints considering terrain altitude information and of waypoint generation to avoid the multiple threats using optimization method are proposed. [3], [4]. But, these researches provide only a path or waypoints of aircrafts. In order to represent the generated waypoints to the user, a moving map system should be built with the map and the terrain information, it is used as a tool to guide the flight path. But the most moving map has restrictions that it needs databases with the vast amount of geographical and terrain information, and it is difficult for them to apply to a system have an intension of a game or a research. In this paper, we propose a visualization tool to track the waypoints in effect by establishing an economic moving map system with the use of various software based on the 1

2 open-sources. Data for visualization is earned from a Flight Manipulation System designed as an external flight system interlocked with X-plane because of difficulties of the flight data extraction on an aircraft flight in real. Simulated flight data is transferred from the Flight Manipulation System using UDP protocol. And the position data earned from the Flight Manipulation System is represented on the Google Earth and the corresponding terrain data of the position is transferred to the moving map system. Using data of the altitude and the orientation data of the aircraft an estimated vertical ascending speed rate or descending speed rate of the aircraft is calculated and from this one the terrain altitude toward the proceeding direction is extracted. Lastly all the flight data is represented on the moving map through the visualization modules using the OpenGL libraries and the map information is transferred from the MapServer of ArcGIS [5] at real-time Our proposed system has a problem of a time delay because the map information is transferred through Web database but it would not give a serious affect to the simulation level system that demands a real-time operation because it could be implemented using multi-core system. 2. Background Song, J. and others [6] have been presented a system for the flight path visualization which using the state transition information without a terrain information [6]. Figure 1 shows the flight path visualization system. In this system there is a limit that it lacks in reality and it simply represents the location information of the aircraft because this system merely appears the flight path. Figure 1. Flight Path Visualization System by Song, J. and others And Park, M. and Hur, H [1] introduced a visualization system which the flight information is visualized on the Google Earth but does not present the path information besides the flight condition and the instrument information. Also Park, S. and Park, M. [2] presented a three-dimensional visualization tool to recognize the flight situation. This tool represents a simple moving path but does not alert the threat factors according to the terrain altitude information. In short, the existing flight information visualization tools don t provide a data worthy of reference during the flight state else than the simple visualization of the flight results. 2

3 3. Visualization System Figure 2 shows the overall structure of the proposed waypoint tracking visualization system. The structure is composed of Flight Manipulation System interlocked with X-Plane, Visualization and UDP Engines, and Visualization Module includes Map View that the waypoint tracking could be represented. Figure 2. Architecture of the Visualization System In this section we design Flight Manipulation System, Visualization/UDP engine, and Visualization Module including Map View. 3.1 Flight Manipulation System Figure 3 represents a visual view of the Flight Manipulation System. This system has a role to generate the flight data such as pitch, roll, headings, and speeds operating a external flight control device and receive the flight data such as latitude, longitude, altitude, and vertical speed rates from the interlocked X-Plane, and then send these information to the Flight Data Collector connected with Visualization/UDP Engines. Figure 3. Flight Manipulation System 3

4 3.2 UDP Engine An UDP Engine Module is designed to receive a UDP packet from the Flight Data Collector and operate UDP Server, then analysis the received UDP packet and transfer to the Visualization Engine Module. Figure 4 shows a structure of UDP Engine Module. Figure 4 shows the block diagram of the UDP Engine module Figure 4. Diagram of the UDP Engine A data packet transferred from Flight Manipulation System has a type of UDP with the data corresponding to its packet index number. One UDP packet is composed of independent data of 8 at the most and each of them have a float type of 4 bytes. Table 1 defines items of an UDP packet for visualization. Table 1. Items of the UDP Packet for Visualization Packet No. Information Index UDP 01 Times 0 UDP 03 Aircraft Speeds 0 UDP 04 Vertical Speed Indicator 1 UDP 18 Pitch, Roll, Headings 0,1,2 UDP 20 Lat, Lon, Altitude 0,1,2 UDP 37 Engine RPM 0 UDP 41,42 N1, N2 0 The packet structure format for the received UDP packet is a form of code 1. Code 1 : Structures type for UDP packet format typedef struct data_struct { int index; float data[8]; } FMS_UDP; 4

5 3.3 Visualization Engine The UDP Packet information stored to the packet structure is transferred to the flight waypoint generation module for the waypoint visualization and this module compares altitudes between the aircraft and the terrain by using map and vertical speed rate information received from the Map Server. Vertical speed rate is calculated on a next equation and here means aircraft s descending or ascending speed. Vertical speed rate Aircraft speed / 60 tan In order to visualize the aircraft s past path and the estimated proceeding path on the basis of the flight waypoints several consecutive rectangular boxes are utilized by using heading, pitch, roll data from UDP Engine. Heading data is an information for a proceeding direction and pitch is one for ascending/descending activities, and roll data is used for left/right rotation. And to represent the estimated proceeding path of the aircraft using vertical speed rate information a blue dotted line is used in figure Visualization Panel Figure 5. Representation of the Flight Waypoint Tracking In addition to visualization of the waypoint tracking, all of the flight information is needed to display on the instrumental panel so that the pilot can be recognized the current flight state. In this study, using various functions of the open-source OpenGL the basic instruments with Map View is designed and implemented. Figure 6 shows the manipulated cockpit instrumental panel of the simulation aircraft. It is composed of MFD(Multi-Function Display) instruments on the left side and Map Viewer on the right side and on the middle part PFD(Primary Function Display) instruments are arranged. These instruments are designed on the basis of the real cockpit instrument images and so it is enhanced the reality. 5

6 Figure 6. Integration of Simulation Instruments and Map View In the instruments, a mapping between a flight data and instrument indicator is operated in method of mapping to the corresponding area by calculating the rotational coordinate, using the central coordinates as a guide. Because the rotation functions to be provided from OpenGL affects to other image area, a method is used which mapping by extracting the corresponding area on the image through a specific rotation coordinate calculation procedure. The coordinate arrangement follows the range mapping on the figure 7. Figure 7. Texture Mapping for Rotary Coordinate The following source code 2 is one part of the real-time maps for MFD mapping descriptions. Code 2 : Implementation of MFD using rotary coordinate glbindtexture(gl_texture_2d, texture[0]); glbegin(gl_quads); x1=(sm_x-cen); y1=(sm_y-cen); x2 = x1 * cos(roll) - y1 * sin(roll)+cen; 6

7 y2 = x1 * sin(roll) + y1 * cos(roll)+cen-pitch; gltexcoord2f(x2,y2); glvertex3f(x, y, 0.0f); x1=(la_x-cen); y1=(sm_y-cen); x2 = x1 * cos(roll) - y1 * sin(roll)+cen; y2 = x1 * sin(roll) + y1 * cos(roll)+cen-pitch; gltexcoord2f(x2,y2); glvertex3f(x+x_s, y, 0.0f); x1=(la_x-cen); y1=(la_y-cen); x2 = x1 * cos(roll) - y1 * sin(roll)+cen; y2 = x1 * sin(roll) + y1 * cos(roll)+cen-pitch; gltexcoord2f(x2,y2); glvertex3f(x+x_s,y+y_s, 0.0f); x1=(sm_x-cen); y1=(la_y-cen); x2 = x1 * cos(roll) - y1 * sin(roll)+cen; y2 = x1 * sin(roll) + y1 * cos(roll)+cen-pitch; gltexcoord2f(x2,y2); glvertex3f(x, y+y_s, 0.0f); glend(); And real-time map view of the right side on the figure 6 has extension steps of 10 levels and it displays the map information online. Map information is provided from MapServer for World Street Map of ArcGIS and the MapServer supplies the scale of from 1 to 73,874,399 to 1 to 144,285. If up-and-down directional keys is pressed the scale is automatically changed and the corresponding level is represented in the left side. In the middle part of the map the longitude and latitude coordinates for current flight are arranged and the divided map images of 2,097,152 pieces at the most are arranged on the display view to fit to the corresponding longitude and latitude degrees. Next code 3 presents one part of the code to make a mapping in real-time. Code 3 : Fuction for texture mapping of Map void textures_run(){ int i, j, no=1; x_st=abs((int)(((-180)-lon)/zoom_ra)); y_st=abs((int)((lat-90)/zoom_ra)); for(i=-1;i<=1;i++) { for(j=-1;j<=1;j++,no++){ sprintf(str1,"%d/%d/%d.jpg",zoom,y_st+i,x_st+j); BuildTexture(str1, texture[no]); } } } As shown in code 3 a total of 9 map images are loaded from Web on the basis of the center coordinate of the map and 8-neighbor map images around the center are participated to the 7

8 mapping. Because the number of images are 2,097,152 that corresponds to the maximum level, all of the map images could not be loaded at a time. In our approach, when the center coordinate gets out of current image area new 9 map images would be loaded and mapped. In figure 8(A), if the current longitude and latitude of the aircraft is located at (i+1, j+1) the maps are loaded that corresponds to the locations (i,j), (i,j+1), and (i+1,j) and arranged on the Map View as figure 8(B). i-1, j-1 i-1, j i-1, j+1 i, j-1 i, j i, j+1 i+1, j-1 i+1, j i+1, j+1 (A) Combinational positions of the 9 map images for mapping 4. Experimental Results Figure 8. Arrangement of Map Image (B) Example of the image arrangement In order to extract the flight information from the Flight Manipulation System interlocked to X-Plane, the test flight simulation using the input flight control device is operated on an airport. The test flight is operated at Yosu airport in Jeollanam-do district online. To visualize the aircraft s landing using the input driving device of the Flight Manipulation System the Google Earth System is utilized. Figure 9 shows the landing scenes of the test aircraft operated on the airport Yosu. (A) Takeoff (0 Sec) (B) After 10 seconds (C) After 20 seconds (D) After 35 seconds Figure 9. Flight Visualization of Google Earth The Interlocked X-Plane is not displayed and all of the flight data is extracted from Flight Manipulation System and X-Plane. The extracted flight data is sent to the visualization 8

9 system for Map View and Flight Waypoint Tracking and this data is realized on the Map View. Figure 10 is the visualized result of the Moving Map screen and the flight waypoint tracking on the Map Screen for the aircraft on the area of Yosu at Jeollanam-do district. In lower part, a black line presents the aircraft proceeding direction estimated by the flight waypoint tracking and the blue area means the terrain altitude information. And On the aircraft proceeding direction, the altitude region is represented with a red line that the collision danger exists and it alerts the dangerous state. 5. Conclusion Figure 10. Moving Map and Flight Waypoint Tracking In this paper we presented the visualization system for the Flight Waypoint Tracking using Flight Manipulation System interlocked to X-Plane on the basis of open-source OpenGL. Using this Flight Waypoint Tracking system the path search of an aircraft and the collision avoidance could be provided to the pilot in visual. Also this tool becomes a more economical tool than the existing tools for providing the flight information. This proposed system could be a basis for the integrated flight visual system in field of avionics. Acknowledgement This research was supported by the MKE (The Ministry of Knowledge Economy), Korea, under the ITRC (Information Technology Research Center) support program supervised by the NIPA (National IT Industry Promotion Agency) (NIPA-2010-C ). References [1] Park, M., Hur, H.: Implementation of the Flight Information Visualization System using Google Earth. Journal of The Korea Society of Computer and Information, vol. 15, No. 10, pp (Oct 2010) 9

10 [2] Park, S., Park, M.: 3D Visualization for Flight Situational Awareness using Google Earth. Journal of The Korea Society of Computer and Information, Vol. 15, No. 12, pp (Dec 2010) [3] Park, J., Park, S., Ryoo, C., Shin, S.: A Study on the Algorithm for Automatic Generation of Optimal Waypoint with Terrain Avoidance. Journal of The Korea Society for Aeronautical and Space Sciences, Vol. 37, No. 11, pp (Nov 2009) [4] Kim, B., Ryoo, C., Bang, H., Chung, E.: Optimal Path Planning for UAVs under Multiple Ground Threats. Journal of The Korea Society for Aeronautical and Space Sciences, Vol. 34, No. 1, pp (Jan 2006) [5] World Street Map, [6] Song, J., Park, T., Kim, J., Choy, Y.: Flight Path Visualization Using State Transition Information of Track. In: Proc. of the 34th KIISE Fall Conference, KIISE vol. 34(2), pp (2007) Authors Myeong-Chul Park received B.S. degree in the Dept. of Computer Science from Korea National Open University. and M.S. and Ph.D. degree in the Dept. of Computer Science from Gyeongsang National University. Since 2007 to now, he has been a professor in the Dept. of Biomedical Electronics, SongHo College, HoengseongGun, Korea. His research interests include Computer Vision, Image Processing, Visualization, Simulator, Parallel Programs and Debugging. Hyeon-Gab Shin received B.S. degree in the Dept. of Animal Science from Jinju National University, Korea in 2000 and his M.S. degree in the Dept. of Computer Science from Gyeongsang National University, Korea in Currently, he is ph.d. degree in the Dept. of Computer Science from Gyeongsang National University. His research interests include Embedded Software, Avionics Software, Flight Simulator and Computer Vision System. Yong Ho Moon received his B.S, M.S, and Ph.D. degrees in electronics engineering from Pusan National University in 1992, 1994, and 1998, respectively. From 1998 to 2001, he worked for the Corporate Research and Development Center of Samsung Electronics Co. Ltd. From 2001 to 2002, he was a BK21 assistant professor at the School of Electrical and Computer Engineering at Pusan National University. From 2003 to 2006, he was an assistant professor in Division of Digital Media Engineering at Pusan University of Foreign Studies. From 2007, he has been working as assistant/associate professor of Department of Informatics at Gyeongsang National University. His research interests include video coding and related VLSI design, image processing, and image communication. Seok-Wun Ha received the B.S., M.S. and Ph.D. degrees in the Dept. of Electronic Engineering from Pusan National University. Since 1993, he has been a professor in the Dept. of Informatics, Gyeongsang National University, Jinju, Korea. His research interests include Digital Signal Processing, Neural Network, Image Processing and Computer Vision. 10

Modeling and Autonomous Flight Simulation of a Small Unmanned Aerial Vehicle

Modeling and Autonomous Flight Simulation of a Small Unmanned Aerial Vehicle 13 th International Conference on AEROSPACE SCIENCES & AVIATION TECHNOLOGY, ASAT- 13, May 26 28, 2009, E-Mail: asat@mtc.edu.eg Military Technical College, Kobry Elkobbah, Cairo, Egypt Tel : +(202) 24025292

More information

Computational Modeling and Simulation for Learning an Automation Concept in Programming Course

Computational Modeling and Simulation for Learning an Automation Concept in Programming Course Computational Modeling and Simulation for Learning an Automation Concept in Programming Course Yong Cheon Kim, Dai Young Kwon, and Won Gyu Lee Abstract Computational thinking is a fundamental skill for

More information

A Dynamic Programming Approach for 4D Flight Route Optimization

A Dynamic Programming Approach for 4D Flight Route Optimization A Dynamic Programming Approach for 4D Flight Route Optimization Christian Kiss-Tóth, Gábor Takács Széchenyi István University, Győr, Hungary IEEE International Conference on Big Data Oct 27-30, 2014 Washington

More information

Characteristics of Ship Movements in a Fairway

Characteristics of Ship Movements in a Fairway International Journal of Fuzzy Logic and Intelligent Systems, vol. 1, no. 4, December 1, pp. 85-89 http:// dx.doi.org/ 1.5391/IJFIS.1.1.4.85 PISSN 1598-645 eissn 93-744X Characteristics of Ship Movemen

More information

Efficient Data Replication Scheme based on Hadoop Distributed File System

Efficient Data Replication Scheme based on Hadoop Distributed File System , pp. 177-186 http://dx.doi.org/10.14257/ijseia.2015.9.12.16 Efficient Data Replication Scheme based on Hadoop Distributed File System Jungha Lee 1, Jaehwa Chung 2 and Daewon Lee 3* 1 Division of Supercomputing,

More information

Effective Interface Design Using Face Detection for Augmented Reality Interaction of Smart Phone

Effective Interface Design Using Face Detection for Augmented Reality Interaction of Smart Phone Effective Interface Design Using Face Detection for Augmented Reality Interaction of Smart Phone Young Jae Lee Dept. of Multimedia, Jeonju University #45, Backma-Gil, Wansan-Gu,Jeonju, Jeonbul, 560-759,

More information

Effective Use of Android Sensors Based on Visualization of Sensor Information

Effective Use of Android Sensors Based on Visualization of Sensor Information , pp.299-308 http://dx.doi.org/10.14257/ijmue.2015.10.9.31 Effective Use of Android Sensors Based on Visualization of Sensor Information Young Jae Lee Faculty of Smartmedia, Jeonju University, 303 Cheonjam-ro,

More information

Development of IaaS-based Cloud Co-location and Management System using Open Source Cloud Stack

Development of IaaS-based Cloud Co-location and Management System using Open Source Cloud Stack Development of IaaS-based Cloud Co-location and Management System using Open Source Cloud Stack Chil-Su Kim, HyunKi Ryu, Myung-Jin Jang and Chang-Hyeon Park Abstract The weakness of server-based hosting

More information

A Study on IP Exposure Notification System for IoT Devices Using IP Search Engine Shodan

A Study on IP Exposure Notification System for IoT Devices Using IP Search Engine Shodan , pp.61-66 http://dx.doi.org/10.14257/ijmue.2015.10.12.07 A Study on IP Exposure Notification System for IoT Devices Using IP Search Engine Shodan Yun-Seong Ko 1, Il-Kyeun Ra 2 and Chang-Soo Kim 1* 1 Department

More information

Personal Health Care Management System Developed under ISO/IEEE 11073 with Bluetooth HDP

Personal Health Care Management System Developed under ISO/IEEE 11073 with Bluetooth HDP Vol.8, No.3 (2014), pp.191-196 http://dx.doi.org/10.14257/ijsh.2014.8.3.18 Personal Health Care Management System Developed under ISO/IEEE 11073 with Bluetooth HDP Am suk Oh 1, Doo Heon Song 2 and Gwan

More information

DEVELOPMENT OF CAMPUS SPACE NAVIGATION AND GUIDE SYSTEM

DEVELOPMENT OF CAMPUS SPACE NAVIGATION AND GUIDE SYSTEM DEVELOPMENT OF CAMPUS SPACE NAVIGATION AND GUIDE SYSTEM Yan-Chyuan Shiau Chung Hua University, Hsin-Chu, Taiwan ycshiau@ms22.hinet.net Tsung-Pin Tsai Chung Hua University, Hsin-Chu, Taiwan winnie.bear@msa.hinet.net

More information

Aerospace Information Technology Topics for Internships and Bachelor s and Master s Theses

Aerospace Information Technology Topics for Internships and Bachelor s and Master s Theses Aerospace Information Technology s for Internships and Bachelor s and Master s Theses Version Nov. 2014 The Chair of Aerospace Information Technology addresses several research topics in the area of: Avionic

More information

The Digital Signage System Supporting Multi-Resources Schedule on an Elevator

The Digital Signage System Supporting Multi-Resources Schedule on an Elevator , pp. 219-228 http://dx.doi.org/10.14257/ijsh.2015.9.8.23 The Digital Signage System Supporting Multi-Resources Schedule on an Elevator Woon-Yong Kim and SoonGohn Kim (Corresponding Author) Department

More information

Research and Performance Analysis of HTML5 WebSocket for a Real-time Multimedia Data Communication Environment

Research and Performance Analysis of HTML5 WebSocket for a Real-time Multimedia Data Communication Environment Vol.46 (Multimedia 2014), pp.307-312 http://dx.doi.org/10.14257/astl.2014.46.64 Research and Performance Analysis of HTML5 WebSocket for a Real-time Multimedia Data Communication Environment Jin-tae Park

More information

Development of a Service Robot System for a Remote Child Monitoring Platform

Development of a Service Robot System for a Remote Child Monitoring Platform , pp.153-162 http://dx.doi.org/10.14257/ijsh.2014.8.5.14 Development of a Service Robot System for a Remote Child Monitoring Platform Taewoo Han 1 and Yong-Ho Seo 2, * 1 Department of Game and Multimedia,

More information

Cloud Computing based Livestock Monitoring and Disease Forecasting System

Cloud Computing based Livestock Monitoring and Disease Forecasting System , pp.313-320 http://dx.doi.org/10.14257/ijsh.2013.7.6.30 Cloud Computing based Livestock Monitoring and Disease Forecasting System Seokkyun Jeong 1, Hoseok Jeong 2, Haengkon Kim 3 and Hyun Yoe 4 1,2,4

More information

Lets3D: A Collaborative 3D Editing Tool Based On Cloud Storage

Lets3D: A Collaborative 3D Editing Tool Based On Cloud Storage , pp.189-198 http://dx.doi.org/10.14257/ijmue.2015.10.9.20 Lets3D: A Collaborative 3D Editing Tool Based On Cloud Storage Yeoun-Ui Ha 1, Jae-Hwan Jin 1 and Myung-Joon Lee 2* Department of Electrical/Electronic

More information

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN 02 NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN Stefano Mottura, Giampaolo Viganò, Luca Greci, Marco Sacco Emanuele Carpanzano Institute of Industrial Technologies and Automation National Research

More information

Remote Android Assistant with Global Positioning System Tracking

Remote Android Assistant with Global Positioning System Tracking IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. III (Mar-Apr. 2014), PP 95-99 Remote Android Assistant with Global Positioning System Tracking

More information

User Manual GPS Travelling System (Produced By: Bonrix Software System)

User Manual GPS Travelling System (Produced By: Bonrix Software System) User Manual GPS Travelling System (Produced By: Bonrix Software System) GPS Bonrix System is GPS based system which gives all the flexible functionalities like location your place, tracking your device.

More information

How To Test A Robot Platform And Its Components

How To Test A Robot Platform And Its Components An Automated Test Method for Robot Platform and Its Components Jae-Hee Lim 1, Suk-Hoon Song 1, Jung-Rye Son 1, Tae-Yong Kuc 2, Hong-Seong Park 3, Hong-Seok Kim 4 1,2 School of Information and Communication,

More information

Using UDP Packets to Detect P2P File Sharing

Using UDP Packets to Detect P2P File Sharing 188 IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.8, August 27 Using UDP Packets to Detect P2P File Sharing Tsang-Long Pao and Jian-Bo Chen Tatung University, Taipei,

More information

Design and Implementation of Automatic Attendance Check System Using BLE Beacon

Design and Implementation of Automatic Attendance Check System Using BLE Beacon , pp.177-186 http://dx.doi.org/10.14257/ijmue.2015.10.10.19 Design and Implementation of Automatic Attendance Check System Using BLE Beacon Mi-Young Bae and Dae-Jea Cho * Dept. Of Multimedia Engineering,

More information

Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control

Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control 보안공학연구논문지 (Journal of Security Engineering), 제 8권 제 3호 2011년 6월 Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control Ji-Hoon Lim 1), Seoksoo Kim 2) Abstract With

More information

Developing a Video-based Smart Mastery Learning through Adaptive Evaluation

Developing a Video-based Smart Mastery Learning through Adaptive Evaluation , pp. 101-114 http://dx.doi.org/10.14257/ijseia.2014.8.11.09 Developing a Video-based Smart Mastery Learning through Adaptive Evaluation Jeongim Kang 1, Moonhee Kim 1 and Seong Baeg Kim 1,1 1 Department

More information

FINAL INVESTIGATION REPORT Loss of Altitude during cruise of M/s Jet Airways B777-300ER aircraft VT-JEL on 08.08.2014

FINAL INVESTIGATION REPORT Loss of Altitude during cruise of M/s Jet Airways B777-300ER aircraft VT-JEL on 08.08.2014 FINAL INVESTIGATION REPORT Loss of Altitude during cruise of M/s Jet Airways B777-300ER aircraft VT-JEL on 08.08.2014 1. Aircraft Type : Boeing Model : B777-300ER Nationality : Indian Registration : VT-JEL

More information

How to Send Video Images Through Internet

How to Send Video Images Through Internet Transmitting Video Images in XML Web Service Francisco Prieto, Antonio J. Sierra, María Carrión García Departamento de Ingeniería de Sistemas y Automática Área de Ingeniería Telemática Escuela Superior

More information

An AR-based Wiring Practice for PLC Training

An AR-based Wiring Practice for PLC Training Journal of International Council on Electrical Engineering Vol. 1, No. 4, pp. 425~429, 2011 425 Ji-O Lee* and Yoon Sang Kim Abstract With rapid developments in the manufacturing industry, there has been

More information

A Study on Integrated Security Service Control Solution Development about CRETA Security

A Study on Integrated Security Service Control Solution Development about CRETA Security A Study on Integrated Security Service Control Solution Development about CRETA Security Yongwon (Conrad) Cho 1, Jinwon (Frank) Choi 2 1 Director Research Engineer, Virtual Builders Co., Ltd. 2 CEO & Co-Founder,

More information

Understanding Video Latency What is video latency and why do we care about it?

Understanding Video Latency What is video latency and why do we care about it? By Pete Eberlein, Sensoray Company, Inc. Understanding Video Latency What is video latency and why do we care about it? When choosing components for a video system, it is important to understand how the

More information

Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System

Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System , pp.97-108 http://dx.doi.org/10.14257/ijseia.2014.8.6.08 Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System Suk Hwan Moon and Cheol sick Lee Department

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

RF Coverage Validation and Prediction with GPS Technology

RF Coverage Validation and Prediction with GPS Technology RF Coverage Validation and Prediction with GPS Technology By: Jin Yu Berkeley Varitronics Systems, Inc. 255 Liberty Street Metuchen, NJ 08840 It has taken many years for wireless engineers to tame wireless

More information

Data Review and Analysis Program (DRAP) Flight Data Visualization Program for Enhancement of FOQA

Data Review and Analysis Program (DRAP) Flight Data Visualization Program for Enhancement of FOQA 86 Data Review and Analysis Program (DRAP) Flight Data Visualization Program for Enhancement of FOQA Koji MURAOKA and Noriaki OKADA, Flight Systems Research Center, E-mail: muraoka@nal.go.jp Keywords:

More information

Smart Integrated Multiple Tracking System Development for IOT based Target-oriented Logistics Location and Resource Service

Smart Integrated Multiple Tracking System Development for IOT based Target-oriented Logistics Location and Resource Service , pp. 195-204 http://dx.doi.org/10.14257/ijsh.2015.9.5.19 Smart Integrated Multiple Tracking System Development for IOT based Target-oriented Logistics Location and Resource Service Ju-Su Kim, Hak-Jun

More information

Forced Low latency Handoff in Mobile Cellular Data Networks

Forced Low latency Handoff in Mobile Cellular Data Networks Forced Low latency Handoff in Mobile Cellular Data Networks N. Moayedian, Faramarz Hendessi Department of Electrical and Computer Engineering Isfahan University of Technology, Isfahan, IRAN Hendessi@cc.iut.ac.ir

More information

Introduction to Computer Graphics

Introduction to Computer Graphics Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 torsten@sfu.ca www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics

More information

Vehicle Tracking System using GPRS

Vehicle Tracking System using GPRS Urban Transport XIII: Urban Transport and the Environment in the 21st Century 409 Vehicle Tracking System using GPRS S. Ikram 1 & F. T. Shah 2 1 Seidco Communication L.L.C, Abu Dhabi, UAE 2 COMSATS Institute

More information

Performance-Centric Business Activity Monitoring Framework for Continuous Process Improvement

Performance-Centric Business Activity Monitoring Framework for Continuous Process Improvement Performance-Centric Business Activity Monitoring Framework for Continuous Process Improvement KWAN HEE HAN *1, SANG HYUN CHOI *2, JIN GU KANG **, GEON LEE *3 Department of Industrial & Systems Engineering,

More information

An Empirical Study On Smart Android Based Security Surveillance For Detective Applications

An Empirical Study On Smart Android Based Security Surveillance For Detective Applications An Empirical Study On Smart Android Based Security Surveillance For Detective Applications Preeti 1, Sunita Rani 2 1 M.Tech Network Security, Bhagat Phool Singh Women University, CSE and IT Department,

More information

Cloud Computing for Agent-based Traffic Management Systems

Cloud Computing for Agent-based Traffic Management Systems Cloud Computing for Agent-based Traffic Management Systems Manoj A Patil Asst.Prof. IT Dept. Khyamling A Parane Asst.Prof. CSE Dept. D. Rajesh Asst.Prof. IT Dept. ABSTRACT Increased traffic congestion

More information

Jeppesen Mobile FliteDeck

Jeppesen Mobile FliteDeck Jeppesen Mobile FliteDeck Frequently Asked Questions Introduction and How to Get Mobile FliteDeck Q. What is Jeppesen Mobile FliteDeck? A: Jeppesen Mobile FliteDeck provides pilots who subscribe to Jeppesen

More information

How To Monitor Performance On Eve

How To Monitor Performance On Eve Performance Monitoring on Networked Virtual Environments C. Bouras 1, 2, E. Giannaka 1, 2 Abstract As networked virtual environments gain increasing interest and acceptance in the field of Internet applications,

More information

Vehicle Tracking system with GPS GSM Interface and Self Created Map

Vehicle Tracking system with GPS GSM Interface and Self Created Map Vehicle Tracking system with GPS GSM Interface and Self Created Map Modi Nirav D. Department of Electronics, Bharati Vidyapeeth Deemed University, College of Engineering Pune, Pune ABSTRACT Safety and

More information

Real-Time DMB Video Encryption in Recording on PMP

Real-Time DMB Video Encryption in Recording on PMP Real-Time DMB Video Encryption in Recording on PMP Seong-Yeon Lee and Jong-Nam Kim Dept. of Electronic Computer Telecommunication Engineering, PuKyong Nat'l Univ. sylee9997@pknu.ac.kr, jongnam@pknu.ac.kr

More information

Visual Servoing using Fuzzy Controllers on an Unmanned Aerial Vehicle

Visual Servoing using Fuzzy Controllers on an Unmanned Aerial Vehicle Visual Servoing using Fuzzy Controllers on an Unmanned Aerial Vehicle Miguel A. Olivares-Méndez mig olivares@hotmail.com Pascual Campoy Cervera pascual.campoy@upm.es Iván Mondragón ivanmond@yahoo.com Carol

More information

S TEC. List of Effective Pages. Record of Revisions

S TEC. List of Effective Pages. Record of Revisions List of Effective Pages * Asterisk indicates pages changed, added, or deleted by current revision. Retain this record in front of handbook. Upon receipt of a Record of Revisions revision, insert changes

More information

3D VISUALIZATION OF GEOTHERMAL WELLS DIRECTIONAL SURVEYS AND INTEGRATION WITH DIGITAL ELEVATION MODEL (DEM)

3D VISUALIZATION OF GEOTHERMAL WELLS DIRECTIONAL SURVEYS AND INTEGRATION WITH DIGITAL ELEVATION MODEL (DEM) Presented at Short Course VII on Exploration for Geothermal Resources, organized by UNU-GTP, GDC and KenGen, at Lake Bogoria and Lake Naivasha, Kenya, Oct. 27 Nov. 18, 2012. GEOTHERMAL TRAINING PROGRAMME

More information

DESIGN OF CLUSTER OF SIP SERVER BY LOAD BALANCER

DESIGN OF CLUSTER OF SIP SERVER BY LOAD BALANCER INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE DESIGN OF CLUSTER OF SIP SERVER BY LOAD BALANCER M.Vishwashanthi 1, S.Ravi Kumar 2 1 M.Tech Student, Dept of CSE, Anurag Group

More information

Multi-level Metadata Management Scheme for Cloud Storage System

Multi-level Metadata Management Scheme for Cloud Storage System , pp.231-240 http://dx.doi.org/10.14257/ijmue.2014.9.1.22 Multi-level Metadata Management Scheme for Cloud Storage System Jin San Kong 1, Min Ja Kim 2, Wan Yeon Lee 3, Chuck Yoo 2 and Young Woong Ko 1

More information

An Application of Data Leakage Prevention System based on Biometrics Signals Recognition Technology

An Application of Data Leakage Prevention System based on Biometrics Signals Recognition Technology Vol.63 (NT 2014), pp.1-5 http://dx.doi.org/10.14257/astl.2014.63.01 An Application of Data Leakage Prevention System based on Biometrics Signals Recognition Technology Hojae Lee 1, Junkwon Jung 1, Taeyoung

More information

Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations

Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Ryu HyunKi, Moon ChangSoo, Yeo ChangSub, and Lee HaengSuk Abstract In this paper,

More information

MAXIMIZING RESTORABLE THROUGHPUT IN MPLS NETWORKS

MAXIMIZING RESTORABLE THROUGHPUT IN MPLS NETWORKS MAXIMIZING RESTORABLE THROUGHPUT IN MPLS NETWORKS 1 M.LAKSHMI, 2 N.LAKSHMI 1 Assitant Professor, Dept.of.Computer science, MCC college.pattukottai. 2 Research Scholar, Dept.of.Computer science, MCC college.pattukottai.

More information

Simulation of wireless ad-hoc sensor networks with QualNet

Simulation of wireless ad-hoc sensor networks with QualNet Advanced Seminar Embedded Systems 2008/2009 Simulation of wireless ad-hoc sensor networks with QualNet Documentation by Tobias Doerffel Chemnitz, April 9, 2009 Contents Contents 1 Introduction 3 1.1 The

More information

Warszawy 8, 35-959 Rzeszów, Poland

Warszawy 8, 35-959 Rzeszów, Poland Solid State Phenomena Vols. 147-149 (2009) pp 231-236 Online available since 2009/Jan/06 at www.scientific.net (2009) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/ssp.147-149.231

More information

THE RESEARCH OF DEM DATA COMPRESSING ARITHMETIC IN HELICOPTER NAVIGATION SYSTEM

THE RESEARCH OF DEM DATA COMPRESSING ARITHMETIC IN HELICOPTER NAVIGATION SYSTEM THE RESEARCH OF DEM DATA COMPRESSING ARITHMETIC IN HELICOPTER NAVIGATION SYSTEM Gao Bo, Wan Fangjie Mailbox 1001, 860 Part, Zhengzhou, Henan, China 450002 Galber@vip.sina.com The helicopter is an important

More information

Visualization of 5D Assimilation Data for Meteorological Forecasting and Its Related Disaster Mitigations Utilizing Vis5D of Software Tool

Visualization of 5D Assimilation Data for Meteorological Forecasting and Its Related Disaster Mitigations Utilizing Vis5D of Software Tool Visualization of 5D Assimilation Data for Meteorological Forecasting and Its Related Disaster Mitigations Utilizing Vis5D of Software Tool Kohei Arai 1 Graduate School of Science and Engineering Saga University

More information

A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools

A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools Dong-Joo Kang and Sunju Park Yonsei University unlimit0909@hotmail.com, boxenju@yonsei.ac.kr Abstract

More information

Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads

Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads Prof. D. N. Rewadkar, Pavitra Mangesh Ratnaparkhi Head of Dept. Information

More information

An Improvement Technique for Simulated Annealing and Its Application to Nurse Scheduling Problem

An Improvement Technique for Simulated Annealing and Its Application to Nurse Scheduling Problem An Improvement Technique for Simulated Annealing and Its Application to Nurse Scheduling Problem Young-Woong Ko, DongHoi Kim, Minyeong Jeong, Wooram Jeon, Saangyong Uhmn and Jin Kim* Dept. of Computer

More information

A Study on Cooperative System between Devices to Construct Internet of Things

A Study on Cooperative System between Devices to Construct Internet of Things , pp. 83-90 http://dx.doi.org/10.14257/ijsh.2015.9.11.10 A Study on Cooperative System between Devices to Construct Internet of Things Chang-Su Kim 1, Sang-Keun Yoo 2, Young-Sic Jeong 2, Yong-Woon Kim

More information

Game Design From Concepts To Implementation

Game Design From Concepts To Implementation Game Design From Concepts To Implementation Overview of a Game Engine What is a Game Engine? (Really) Technical description of game: A Soft real-time interactive agent-based computer simulation A game

More information

A Study on Intelligent Video Security Surveillance System with Active Tracking Technology in Multiple Objects Environment

A Study on Intelligent Video Security Surveillance System with Active Tracking Technology in Multiple Objects Environment Vol. 6, No., April, 01 A Stud on Intelligent Video Securit Surveillance Sstem with Active Tracking Technolog in Multiple Objects Environment Juhun Park 1, Jeonghun Choi 1, 1, Moungheum Park, Sukwon Hong

More information

Filtering Erroneous Positioning Data with Moving Window Approach

Filtering Erroneous Positioning Data with Moving Window Approach Filtering Erroneous Positioning Data with Moving Window Approach HA YOON SONG Department of Computer Engineering Hongik University 72-1, Sangsu, Mapo, Seoul KOREA hayoon@hongik.ac.kr HAN GYOO KIM Department

More information

Design of a NAND Flash Memory File System to Improve System Boot Time

Design of a NAND Flash Memory File System to Improve System Boot Time International Journal of Information Processing Systems, Vol.2, No.3, December 2006 147 Design of a NAND Flash Memory File System to Improve System Boot Time Song-Hwa Park*, Tae-Hoon Lee*, and Ki-Dong

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

A Virtual Machine Searching Method in Networks using a Vector Space Model and Routing Table Tree Architecture

A Virtual Machine Searching Method in Networks using a Vector Space Model and Routing Table Tree Architecture A Virtual Machine Searching Method in Networks using a Vector Space Model and Routing Table Tree Architecture Hyeon seok O, Namgi Kim1, Byoung-Dai Lee dept. of Computer Science. Kyonggi University, Suwon,

More information

IMAV: An Intelligent Multi-Agent Model Based on Cloud Computing for Resource Virtualization

IMAV: An Intelligent Multi-Agent Model Based on Cloud Computing for Resource Virtualization 2011 International Conference on Information and Electronics Engineering IPCSIT vol.6 (2011) (2011) IACSIT Press, Singapore IMAV: An Intelligent Multi-Agent Model Based on Cloud Computing for Resource

More information

Web and Mobile GIS Applications Development

Web and Mobile GIS Applications Development Web and Mobile GIS Applications Development Presented by : Aamir Ali Manager Section Head (GIS Software Customization) Pakistan Space and Upper Atmosphere Research Commission (SUPARCO) Geographical Information

More information

An Anomaly-Based Method for DDoS Attacks Detection using RBF Neural Networks

An Anomaly-Based Method for DDoS Attacks Detection using RBF Neural Networks 2011 International Conference on Network and Electronics Engineering IPCSIT vol.11 (2011) (2011) IACSIT Press, Singapore An Anomaly-Based Method for DDoS Attacks Detection using RBF Neural Networks Reyhaneh

More information

AN EFFICIENT STRATEGY OF AGGREGATE SECURE DATA TRANSMISSION

AN EFFICIENT STRATEGY OF AGGREGATE SECURE DATA TRANSMISSION INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE AN EFFICIENT STRATEGY OF AGGREGATE SECURE DATA TRANSMISSION K.Anusha 1, K.Sudha 2 1 M.Tech Student, Dept of CSE, Aurora's Technological

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Background of the Research Agile and precise maneuverability of helicopters makes them useful for many critical tasks ranging from rescue and law enforcement task to inspection

More information

A Resilient Device Monitoring System in Collaboration Environments

A Resilient Device Monitoring System in Collaboration Environments , pp.103-114 http://dx.doi.org/10.14257/ijsh.2014.8.5.10 A Resilient Device Monitoring System in Collaboration Environments KeeHyun Park 1 and JongHwi Lee 1 Department of Computer Engineering, Keimyung

More information

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval , pp.175-186 http://dx.doi.org/10.14257/ijsh.2014.8.1.19 A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval Kil-sung Park and Sun-Hyung Kim Department of Information & Communication

More information

Study of SAP ERP Connection System Driven in Smartphone

Study of SAP ERP Connection System Driven in Smartphone Study of SAP ERP Connection System Driven in Smartphone 1 Jong Youel Park, * 2 Dea-Woo Park, 3 Young Hyun Chang, 4 Kyung Bae Yoon 1, First Author Hoseo Graduate School of Venture Korea, parkjy4567@daum.net

More information

Using Big Data and GIS to Model Aviation Fuel Burn

Using Big Data and GIS to Model Aviation Fuel Burn Using Big Data and GIS to Model Aviation Fuel Burn Gary M. Baker USDOT Volpe Center 2015 Transportation DataPalooza June 17, 2015 The National Transportation Systems Center Advancing transportation innovation

More information

RFID, GPS & GSM Based Vehicle Tracing & Employee Security System

RFID, GPS & GSM Based Vehicle Tracing & Employee Security System RFID, GPS & GSM Based Vehicle Tracing & Employee Security System Ms.S.S.Pethakar, Prof. N. Srivastava, Ms.S.D.Suryawanshi Abstract A RFID, GPS & GSM Based Vehicle Tracking and Employee Security System

More information

MANAGEMENT SYSTEM FOR A FLEET OF VEHICLES BASED ON GPS. João André Correia Telo de Oliveira

MANAGEMENT SYSTEM FOR A FLEET OF VEHICLES BASED ON GPS. João André Correia Telo de Oliveira MANAGEMENT SYSTEM FOR A FLEET OF VEHICLES BASED ON GPS João André Correia Telo de Oliveira Author Affiliation(s) Instituto Superior Técnico, University of Lisbon, Portugal ABSTRACT This dissertation was

More information

A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile

A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile Devendra Thorat, Kalpesh Dhumal, Aniket Sadaphule, Vikas Arade B.E Computer Engineering, Navsahyadri

More information

EFFECT OF TRANSFER FILE SIZE ON TCP-ADaLR PERFORMANCE: A SIMULATION STUDY

EFFECT OF TRANSFER FILE SIZE ON TCP-ADaLR PERFORMANCE: A SIMULATION STUDY EFFECT OF TRANSFER FILE SIZE ON PERFORMANCE: A SIMULATION STUDY Modupe Omueti and Ljiljana Trajković Simon Fraser University Vancouver British Columbia Canada {momueti, ljilja}@cs.sfu.ca ABSTRACT Large

More information

Study on the Vulnerability Level of Physical Security And Application of the IP-Based Devices

Study on the Vulnerability Level of Physical Security And Application of the IP-Based Devices , pp. 63-68 http://dx.doi.org/10.14257/ijsh.2015.9.10.07 Study on the Vulnerability Level of Physical Security And Application of the IP-Based Devices Kwang-Hyuk Park 1, Il-Kyeun Ra 2 and Chang-Soo Kim

More information

A Log Analysis System with REST Web Services for Desktop Grids and its Application to Resource Group-based Task Scheduling

A Log Analysis System with REST Web Services for Desktop Grids and its Application to Resource Group-based Task Scheduling Journal of Information Processing Systems, Vol.7, No.4, December 2011 http://dx.doi.org/10.3745/jips.2011.7.4.707 A Log Analysis System with REST Web Services for Desktop Grids and its Application to Resource

More information

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online...

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online... Table of Contents ArcGIS online Introduction... 2 Module 1: How to create a basic map on ArcGIS online... 3 Creating a public account with ArcGIS online... 3 Opening a Map, Adding a Basemap and then Saving

More information

Developing Safety Management Systems for Track Workers Using Smart Phone GPS

Developing Safety Management Systems for Track Workers Using Smart Phone GPS , pp.137-148 http://dx.doi.org/10.14257/ijca.2013.6.5.13 Developing Safety Management Systems for Track Workers Using Smart Phone GPS Jin-Hee Ku 1 and Duk-Kyu Park 2 1 Dept of Liberal Education and 2 Dept

More information

Advanced Vehicle Tracking System on Google Earth Using GPS and GSM

Advanced Vehicle Tracking System on Google Earth Using GPS and GSM IJECT Vo l. 5, Is s u e Sp l - 3, Ja n - Ma r c h 2014 ISSN : 2230-7109 (Online) ISSN : 2230-9543 (Print) Advanced Vehicle Tracking System on Google Earth Using GPS and GSM 1 Sowjanya Kotte, 2 Hima Bindhu

More information

A Study on Design of Health Device for U-Health System

A Study on Design of Health Device for U-Health System , pp.79-86 http://dx.doi.org/10.14257/ijbsbt.2015.7.2.08 A Study on Design of Health Device for U-Health System Am-Suk Oh Dept. of Media Engineering, Tongmyong University, Busan, Korea asoh@tu.ac.kr Abstract

More information

Redundant Data Removal Technique for Efficient Big Data Search Processing

Redundant Data Removal Technique for Efficient Big Data Search Processing Redundant Data Removal Technique for Efficient Big Data Search Processing Seungwoo Jeon 1, Bonghee Hong 1, Joonho Kwon 2, Yoon-sik Kwak 3 and Seok-il Song 3 1 Dept. of Computer Engineering, Pusan National

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

Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver

Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver , pp.161-165 http://dx.doi.org/10.14257/astl.205.98.41 Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver Jeong MyeongSu 1, Moon ChangSoo 1, Gwon DaeHyeok 1 and Cho

More information

Solutions for Simulation

Solutions for Simulation Solutions for Simulation Data Visualization Vista2D Data Visualization Prototyping Panel Simulation Avionic Bus Integration MIL1553 A/B ASCB/D Arinc 429 CAN 2.0a/b RS 422/232 Instructor Stations Aircraft

More information

QoSIP: A QoS Aware IP Routing Protocol for Multimedia Data

QoSIP: A QoS Aware IP Routing Protocol for Multimedia Data QoSIP: A QoS Aware IP Routing Protocol for Multimedia Data Md. Golam Shagadul Amin Talukder and Al-Mukaddim Khan Pathan* Department of Computer Science and Engineering, Metropolitan University, Sylhet,

More information

The Design of the Network Service Access Control System through Address Control in IPv6 Environments

The Design of the Network Service Access Control System through Address Control in IPv6 Environments 174 IJCSNS International Journal of Computer Science and Network Security, VOL.6 No.6, June 2006 The Design of the Network Service Access Control System through Address Control in IPv6 Environments Summary

More information

A secure face tracking system

A secure face tracking system International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 10 (2014), pp. 959-964 International Research Publications House http://www. irphouse.com A secure face tracking

More information

Current Challenges in UAS Research Intelligent Navigation and Sense & Avoid

Current Challenges in UAS Research Intelligent Navigation and Sense & Avoid Current Challenges in UAS Research Intelligent Navigation and Sense & Avoid Joerg Dittrich Institute of Flight Systems Department of Unmanned Aircraft UAS Research at the German Aerospace Center, Braunschweig

More information

A Prediction-Based Transcoding System for Video Conference in Cloud Computing

A Prediction-Based Transcoding System for Video Conference in Cloud Computing A Prediction-Based Transcoding System for Video Conference in Cloud Computing Yongquan Chen 1 Abstract. We design a transcoding system that can provide dynamic transcoding services for various types of

More information

Efficient Data Recovery scheme in PTS-Based OFDM systems with MATRIX Formulation

Efficient Data Recovery scheme in PTS-Based OFDM systems with MATRIX Formulation Efficient Data Recovery scheme in PTS-Based OFDM systems with MATRIX Formulation Sunil Karthick.M PG Scholar Department of ECE Kongu Engineering College Perundurau-638052 Venkatachalam.S Assistant Professor

More information

Global Avionics Training Specialists, LLC.

Global Avionics Training Specialists, LLC. Global Avionics Training Specialists, LLC. PRIMUS 2000/DORNIER 328 JET INTEGRATED AVIONICS SYSTEM LINE MAINTENANCE FAMILIARIZATION COURSE SYLLABUS I. INTRODUCTION A. SYSTEM DESCRIPTION The PRIMUS 2000

More information

Crime Hotspots Analysis in South Korea: A User-Oriented Approach

Crime Hotspots Analysis in South Korea: A User-Oriented Approach , pp.81-85 http://dx.doi.org/10.14257/astl.2014.52.14 Crime Hotspots Analysis in South Korea: A User-Oriented Approach Aziz Nasridinov 1 and Young-Ho Park 2 * 1 School of Computer Engineering, Dongguk

More information

SIP Registration Stress Test

SIP Registration Stress Test SIP Registration Stress Test Miroslav Voznak and Jan Rozhon Department of Telecommunications VSB Technical University of Ostrava 17. listopadu 15/2172, 708 33 Ostrava Poruba CZECH REPUBLIC miroslav.voznak@vsb.cz,

More information

Firmware Updates on April 27, 2015 Overview Major New Features Firmware Updates on March 03, 2015 Overview Major New Features Special Note:

Firmware Updates on April 27, 2015 Overview Major New Features Firmware Updates on March 03, 2015 Overview Major New Features Special Note: Firmware Updates on April 27, 2015 a) Flight controller firmware has been updated to v3.14. No-Fly Zones have been updated to include a 1.2 km radius centered on the Imperial Palace and a 1 km radius centered

More information