Disaster Information System Using Geofence

Size: px
Start display at page:

Download "Disaster Information System Using Geofence"

Transcription

1 Disaster Information System Using Geofence Komal Wagh 1, Shreya Thakur 2, Saraswati Yadav 3,Assistant Prof.Shivsager Gondil 4 1,2,3,4 Computer Engg,BVCOE Abstract This paper proposes a disaster information system with the geofencing equipment to spot the association of users as well as provide in a row of the risk in favour of them. The system is collected of client-server planning; the head waiter collect danger information from a variety of information sources and the client watches the user on the way to inform the in sequence as the need arise. To notice the user s society the client creates a virtual barrier called geofencing at the dangerous region based lying on the danger information stored into the head waiter, and monitor the user's entrance as well as outlet of the fence. so the scheme can deliver warning and advices suitable to specific users failing. We implemented a prototype system and evaluated the accuracy of the system. The location of the user was detected among high correctness while incoming the fence, but the correctness was low when exiting the fence. Keywords geofencing; location-based services; navigate user, swift; ios application. I. INTRODUCTION Japan suffers big damage from natural disasters every year. The cause of this is due to no correct information to the people who need it. There is a report entitled Evacuation instructions and questionnaire survey about evacuation directive by the Japanese Cabinet Office [1]. Table I and Table II show the questionnaire results. In Table I, they asked the behaviors when people knew evacuation instructions or evacuation directives. The answer Remained in their houses was the first place. In Table II, top reasons for this were They thought evacuation was dangerous because of heavy rain during the night and They did not think that they suffer from the disaster. Thus, it is obvious that the current information delivery method is not suitable to residents. In particular, the current evacuation advices and instructions do not inform risk enough, because the scope of these advices and instructions are too wide. If a system can deliver directly such risk information only to people who need it, the damage may be possibly reduced. This research aims at developing a system that detects people's movement and delivers risk information. For this purpose, we inspected the accuracy of detection of people s movement using geofencing, which dynamically defines geographic area of interest. By using geofencing, it is possible to detect entries and exits of people at the specific area. Thus our system can deliver what is happening at a particular area directly to the users. Table 1 the behavior when people knew evacuation instructions or evacuation directives (kani city ) (the top four items) The Behavior % Remained in their houses 68.9 Watched or listened the disaster situation on television and radio 50.0 Contacted their family members who were outside their house 10.7 Prepared for evacuation 6.7 DOI: /IJRTER ZIWKK 397

2 Table 2 the reason why people remained in their house instructions or evacuation directives (kani city) (the top four items) The Reason % They did not think that they suffers from the disaster 68.9 They thought evacuation was dangerous because of heavy rain during the night 50.0 They thought evacuation was dangerous because of traffic congestion 10.7 They thought evacuation is unnecessary because they lived on the 2 nd or higher Floors of 6.7 building II THE GOAL Our system delivers risk information timely to specific users who are in the area where a disaster has occurred or may occur with high probability. We assume that each user has a smart phone with position detection and Internet connection capabilities. Because the users usually handle their smart phones, they can also acquire information smoothly when a disaster occurs. Moreover, it is possible to detect the user's current location and receive information on the disaster from the Internet. III. THE PROPOSED METHOD 3.1 WHAT IS GEOFENCING Geofencing is a mechanism that makes a virtual fence in a specific area [2]. The application sets a geofence at a dangerous area and gives risk information to the user. Fig. 1 shows the movement against a geofence. Fig.1. Geofencing action example[10] In order to define a fence, the coordinate (latitude and longitude) of the place are required. A circular area is defined by the coordinate and radius. A geofence is set to the circular area [3]. 3.2 HOW TO USE THE GEOFENCING The system using geofencing is possible to deliver the disaster information to the user who has just entered the fence. In this research, we implement geofencing with the Core Location framework All Rights Reserved 398

3 ios. This framework provides a detection of the entries and exits of the user with the observation of a specific geographic region. The geographic region is an area defined by a circle with a specified radius around a known point on the earth. Every time the user crosses the boundary of the region, the system generates an event for our application. This enables the notification of the disaster information. That is, by using the observations of geographical area, it is possible to detect user behavior in the same manner as the definition of geofencing. Moreover, the system does not report the event until the user goes into the region further from the boundary plus a system-defined cushion distance. This cushion value prevents the system to generate numerous events while the user is traveling close to the boundary. The cushion distance is determined by the hardware and the location technologies that are currently available [4].The system navigate the user to come out from disaster affected area. V. SYSTEM CONFIGURATION The system is composed of clients, a server and information sources. Fig. 2 shows the system structure. Fig. 2. System structure[10] Each client is an application program running on ios. It connects to the Internet and obtains the information from the server. Moreover, it defines a geofence based on information from the server, and notifies disaster information to the user. The client is implemented by using Xcode7 and swift2, and tested by ios simulator and real iphone6. The server is a web application running on Linux (Centos7). It is composed of Apache, MariaDB, and PHP. The server acquires disaster information from information sources. It analyzes the information and stores the result in a database. The database is used to define a fence by the client. An information source is the RSS file of Weather Warnings and Advisories that Yahoo! JAPAN provides [5]. The RSS file, provided in the RSS 2.0 format, contains Special alert, Weather Warnings, or Advisories across Japan. The RSS file is updated regularly according to the information announced by the Japan Meteorological Agency. VI. PROCESSING FLOW As an example, suppose that the possibility of flood increased due to a heavy rain continued for long time. As the result, a flood warning has been issued to the All Rights Reserved 399

4 Then, the server's PHP program acquires the warning by means of RSS files from the Internet. Then, it stores the disaster information in the database. On the other hand, a client periodically accesses the server to check new information. The server program retrieves the database based on the client s request and returns the result including location data to define a fence in a JSON format. In this research, we assume that the specification of the fence is decided on the server-side. The client sets the fence by using the CLCircularRegion class. Then, the client starts monitoring of the entry and exit of the user to the fence by calling the startmonitoringforregion method of the CLLocationManager object. When the user enters the fence, the locationmanager:didenterregion method is invoked. Then, the client warns the user that you have entered the dangerous area. When the user exits the fence, the location Manager: didexitregion method is invoked. Then, the client notifies the user that you have exited the danger Area. Fig 3:work flow of the All Rights Reserved 400

5 Fig 4: Screenshot at foreground When operating in the background, the notification is performed using the notification banner. In the background, Background fetch of Background Modes is used to acquire disaster information automatically. Background fetch enables the application to regularly download and process a small amount of contents from the network. Fig. 5 shows the screen when operating in the background. VIII. CONCLUSION A system to present disaster information based on person's movement was proposed. We implemented an experimental system by using geofencing and evaluated the system in an urban area. We confirmed that our system notifies disaster information when a user enters the fence with Wi-Fi on by the experiment. The location was at 20-30m outside the fence. When exiting the fence with Wi-Fi off, we found that the information is delivered at the place more than 100m outside the fence. Wi-Fi is necessary for precise detection of location by using geofencing. For large-scale disasters, the fence will be several kilometers of length. Further study is necessary to evaluate the system in case of larger fence sizes. Improvement of the location accuracy is also very important to deliver risk information timely to users. Our system should be able to define multiple fences at the same time to support real natural disasters. Information sources also should be added to our system, including government agency announcements and social networking services.it also navigate the user REFERENCES I. Central Disaster Prevention Council, Professional investigation meeting about refuge at the time of an accident, The 4th Professional investigation meeting about refuge at the time of an accident, Jan. 2011, 2.pdf (in Japanese). II. Fujitsu, Geofencing in ios with Objective-C, (in Japanese). III. Android Developers, Creating and Monitoring Geofences, IV. Yahoo! Weather & Disasters, (in All Rights Reserved 401

6 V. J. P. Munson, and V. G. Gupta, Location-based notification as a general-purpose service, Proceedings of 2nd International Workshop on Mobile Commerce (WMC '02), ACM, September 2002, pp VI. P. Szczytowski, "Geo-fencing based disaster management service," Agent Technology for Intelligent Mobile Services and Smart Societies, Springer Berlin Heidelberg, 2015, pp VII. S. Yelne, and V. Kapade, Human Protection with the Disaster Management Using an Android Application, International Journal of Scientific Research in Science, Engineering and Technology (IJSRSET), vol. 1, no. 5, September-October 2015, pp VIII. T. Nakagawa et al., "Variable interval positioning method for smartphone-based power-saving geofencing," Proceedings of 2013 IEEE 24th International Symposium on Personal Indoor and Mobile Radio Communications (PIMRC),, September 2013, pp IX. M. Alsaqer, B. Hilton, T. Horan, and O. Aboulola, Performance assessment of geo-triggering in small geofences: accuracy, reliability, and battery drain in different tracking profiles and trigger directions, Procedia Engineering, Elsevier, vol. 107, 2015, pp X. Using Geofencing for a Disaster Information All Rights Reserved 402

Using Geofencing for a Disaster Information System

Using Geofencing for a Disaster Information System Using Geofencing for a Disaster Information System Akira Suyama Graduate School of Engineering Tokyo Denki University Tokyo, Japan 16kmc16@ms.dendai.ac.jp Ushio Inoue Dept. of Information and Communication

More information

ihelp Phone APP User Guide

ihelp Phone APP User Guide ihelp Phone APP User Guide Outline Programming is included in the cost of the unit. If you choose to make programming changes, be aware that Medi Alarm will have no record of any modifications you make.

More information

BookAidee: Managing Evacuees from Natural Disaster by RFID Tagged Library Books

BookAidee: Managing Evacuees from Natural Disaster by RFID Tagged Library Books BookAidee: Managing Evacuees from Natural Disaster by RFID Tagged Library Books Markus Liuska 1,EmmiMakkonen 1,andItiroSiio 2 1 Centria University of Applied Sciences, RF-Media Laboratory Vierimaantie

More information

Information Providing System for Commuters Unable to Get Home at the Time of Disaster by Constructing Local Network using Single-board Computers

Information Providing System for Commuters Unable to Get Home at the Time of Disaster by Constructing Local Network using Single-board Computers Int'l Conf. Par. and Dist. Proc. Tech. and Appl. PDPTA'17 221 Information Providing System for Commuters Unable to Get Home at the Time of Disaster by Constructing Local Network using Single-board Computers

More information

Development of the framework for disaster mitigating information sharing platform and its application to a local government

Development of the framework for disaster mitigating information sharing platform and its application to a local government Risk Analysis VI 433 Development of the framework for disaster mitigating information sharing platform and its application to a local government T. Suzuki 1 & Y. Hada 2 1 Interdiciplinary Graduate School

More information

Making a Family Emergency Communications Plan

Making a Family Emergency Communications Plan Making a Family Emergency Communications Plan OEM Open House 9/9/17 Arline Stith, presenter Content mostly based on MEMA Massachusetts Emergency Management Agency mass.gov/eopss/agencies/mema/ Cell/Mobile

More information

Joint Research Project on Disaster Reduction using Information Sharing Technologies

Joint Research Project on Disaster Reduction using Information Sharing Technologies 2 nd International Conference on Urban Disaster Reduction November 27~29, 2007 Joint Research Project on Disaster Reduction using Sharing Technologies Takeyasu Suzuki 1*, Yasunori Hada 2 and Yozo Goto

More information

White Paper: Next generation disaster data infrastructure CODATA LODGD Task Group 2017

White Paper: Next generation disaster data infrastructure CODATA LODGD Task Group 2017 White Paper: Next generation disaster data infrastructure CODATA LODGD Task Group 2017 Call for Authors This call for authors seeks contributions from academics and scientists who are in the fields of

More information

Procedia Computer Science

Procedia Computer Science Procedia Computer Science 3 (2011) 949 953 Procedia Computer Science 00 (2010) 000 000 Procedia Computer Science www.elsevier.com/locate/procedia www.elsevier.com/locate/procedia WCIT 2010 An Implementation

More information

Supporting Growth in Society and Industry Using Statistical Data from Mobile Terminal Networks Overview of Mobile Spatial Statistics

Supporting Growth in Society and Industry Using Statistical Data from Mobile Terminal Networks Overview of Mobile Spatial Statistics Supporting Growth in Society and Industry Using Statistical Data from Mobile Terminal Networks Overview of Mobile Spatial Statistics MSS Estimation Privacy Protection Mobile Spatial Statistics Supporting

More information

The Critical Role of Emergency Telecommunications and ICTs: Impacts of Natural and Man-made Disasters

The Critical Role of Emergency Telecommunications and ICTs: Impacts of Natural and Man-made Disasters The Critical Role of Emergency Telecommunications and ICTs: Impacts of Natural and Man-made Disasters 8th Symposium on ICTs, the Environment and Climate Change First Meeting of the Focus Group on Smart

More information

Early Warning Services for Councils

Early Warning Services for Councils Early Warning Services for Councils AT A GLANCE EWN provides early warning services, technology and systems for emergency management and public notification purposes. Features of the service and technology:

More information

Emergency Telecommunications as the ASP Regional Initiative

Emergency Telecommunications as the ASP Regional Initiative 0 Emergency Telecommunications as the ASP Regional Initiative Japan s International Contribution in the Field of ICT for Disaster Risk Reduction Mutsuharu NAKAJIMA Director for International Policy Coordination

More information

Mobile, Smartphones, Wi-Fi, and Apps

Mobile, Smartphones, Wi-Fi, and Apps Mobile, Smartphones, Wi-Fi, and Apps What Are We Talking About Today? 1. Mobile 2. Different Needs 3. Geolocation & Georeference 4. Mobile-Friendliness 5. Location-Based Services 6. Wi-Fi 7. Apps vs. Websites

More information

TARGETING CITIZENS WITH LOCATION BASED NOTIFICATIONS.

TARGETING CITIZENS WITH LOCATION BASED NOTIFICATIONS. TARGETING CITIZENS WITH LOCATION BASED NOTIFICATIONS Introduction State and local government departments, agencies and groups face a wide variety of events. Each have their own unique characteristics.

More information

Setting up alert notifications in Sferic Maps Alerting

Setting up alert notifications in Sferic Maps Alerting Setting up alert notifications in Sferic Maps Alerting Sferic Maps allows customers to send custom alerts over email, text message (by formatting the phone number as an email address), or as a push notification

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

Uses of ICT for Disaster Risk Reduction

Uses of ICT for Disaster Risk Reduction For Presentation at World Bank Uses of ICT for Disaster Risk Reduction February 23, 2018 Contents 1. Japan s Implementation of flow of Disaster information Page 3 2. Overview of Disaster Management Systems

More information

Using GIS in Designing and Deploying Wireless Network in City Plans

Using GIS in Designing and Deploying Wireless Network in City Plans Using GIS in Designing and Deploying Wireless Network in City Plans Iyad Aldasouqi Royal Scientific Society The Middle East Scientific Institute for Security Jordan Walid A. Salameh Princess Sumaya University

More information

JOINT RESEARCH PROJECT ON THE DISASTER MITIGATING INFORMATION SHARING PLATFORM AND ITS APPLICATION TO A TEST FIELD

JOINT RESEARCH PROJECT ON THE DISASTER MITIGATING INFORMATION SHARING PLATFORM AND ITS APPLICATION TO A TEST FIELD JOINT RESEARCH PROJECT ON THE DISASTER MITIGATING INFORMATION SHARING PLATFORM AND ITS APPLICATION TO A TEST FIELD Takeyasu Suzuki 1 and Yozo Goto 2 1 Professor, Interdisciplinary Graduate School of Medical

More information

Android Application. User Guide

Android Application. User Guide Android Application User Guide Table of Contents Table of Contents Introduction:... 3 Installation:... 4 Login... 5 Create New Account... 6 Dashboard... 7 Multiple Childs Selection... 8 Locations... 9

More information

Emergency Contact for Real World Social Community

Emergency Contact for Real World Social Community Emergency Contact for Real World Social Community 1 M. KISHORE ANAND, 2 Dr.P.MARIKKANNU 1,2 DEPARTMENT OF INFORMATION TECHNOLOGY, COIMBATORE, INDIA Abstract: Android is a java based operating system which

More information

SatGuide Symbian User Manual. SatGuide Symbian OS USER MANUAL

SatGuide Symbian User Manual. SatGuide Symbian OS USER MANUAL SatGuide Symbian User Manual SatGuide Symbian OS USER MANUAL CONTENTS 1 - INTRODUCTION...1 WHAT IS SATGUIDE?...1 SATGUIDE FEATURES...1 2 - SMART PRACTICES WHILE DRIVING...2 DRIVE SAFE, CALL SMART SM...2

More information

Introduction. Precautions when Using ZEED T-Connect. Digital Map Information for Route Guidance Purposes. Navigation System Operations

Introduction. Precautions when Using ZEED T-Connect. Digital Map Information for Route Guidance Purposes. Navigation System Operations 0.8 Introduction About this Manual This manual represents the start-up guide for the ZEED T-Connect smartphone application provided to users who purchase new Toyota vehicles. It provides details on initial

More information

Proposal of the Integrative Class Assistance System Using Smart Phone

Proposal of the Integrative Class Assistance System Using Smart Phone Proposal of the Integrative Class Assistance System Using Smart Phone Kazuya Murata, Takayuki Fujimoto Graduate School of Engineering, Toyo University Kujirai2100, Kawagoe-City, Saitama, Japan murata@medianation.jp,

More information

Spark Nano 3.0. User s Guide WHEN YOU NEED TO KNOW.

Spark Nano 3.0. User s Guide WHEN YOU NEED TO KNOW. 1 Spark Nano 3.0 User s Guide WHEN YOU NEED TO KNOW. 2 What s Inside Spark Nano Wall Charger Cellular SIM Card (Already in device)* Optional Accessories * The missing card is already installed inside of

More information

AT&T Disaster Preparedness Survey Hurricane Katrina & Rita Results. August 2006

AT&T Disaster Preparedness Survey Hurricane Katrina & Rita Results. August 2006 AT&T Disaster Preparedness Survey Hurricane Katrina & Rita Results August 2006 Methodology Results are drawn from N=400 completed surveys among residents age 18+ from 4 states: Alabama, Louisiana, Mississippi,

More information

A Mobile Scenario for the XX Olympic Winter Games Torino 2006

A Mobile Scenario for the XX Olympic Winter Games Torino 2006 A Mobile Scenario for the XX Olympic Winter Games Torino 2006 LUCIA TERRENGHI Fraunhofer Institute for Applied Information Technology, Information in Context Department, Schloss Brilinghoven, 53754 Sankt

More information

Asia Wireless Infrastructure Seminar

Asia Wireless Infrastructure Seminar Asia Wireless Infrastructure Seminar ~Package Strategy for Disaster Risk Reduction with Wireless Infrastructure~ Co-Organizers World Bank Tokyo Development Learning Center(TDLC) Asian Disaster Reduction

More information

Providing free Wi-Fi to ensure a means of communication in the event of disaster

Providing free Wi-Fi to ensure a means of communication in the event of disaster Yamanashi Prefecture case study Providing free Wi-Fi to ensure a means of communication in the event of disaster During ordinary times, it can be used for tourism and to provide administrative information

More information

Development of Auto-Notification Application for Mobile Device using Geofencing Technique

Development of Auto-Notification Application for Mobile Device using Geofencing Technique Development of Auto-Notification Application for Mobile Device using Geofencing Technique Development of Auto-Notification Application for Mobile Device using Geofencing Technique M. S. I. M. Zin, M. A.

More information

Smartphone Enabled Dangerous Driving Report System

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

More information

To Study the Usage & Awareness of M- Commerce and its services with reference to Nagpur City

To Study the Usage & Awareness of M- Commerce and its services with reference to Nagpur City To Study the Usage & Awareness of M- Commerce and its services with reference to Nagpur City Prof. Prerna Thakwani Assistant Professor, Dept. of MBA, Tirpude Institute of Management Education, Nagpur,

More information

Intelligent Transportation Systems Using Short Range Wireless Technologies

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

More information

Emergency Response: How dedicated short range communication will help in the future. Matthew Henchey and Tejswaroop Geetla, University at Buffalo

Emergency Response: How dedicated short range communication will help in the future. Matthew Henchey and Tejswaroop Geetla, University at Buffalo Emergency Response: How dedicated short range communication will help in the future. 1.0 Introduction Matthew Henchey and Tejswaroop Geetla, University at Buffalo Dedicated short range communication (DSRC)

More information

Quick Guide for Mynaportal

Quick Guide for Mynaportal Quick Guide for Mynaportal Introduction of Mynaportal and About This Guide Mynaportal is an online service managed by the government of Japan. You can apply to services online related to parenting by the

More information

ANDROID HERO + SHIELD GUIDE:

ANDROID HERO + SHIELD GUIDE: ANDROID HERO + SHIELD GUIDE: For ease of setup have the following prerequisites prior to continuing. Prerequisites: Hero+ Shield installed and set up on your smart devices Introduction: Hero+Shield consists

More information

Location Based Reminder

Location Based Reminder Location Based Reminder Sushant Shamrao Patil 1, Akshay Arvind Jadhav 2, Prof. S. R. Kadam 3 1,2 (UG Students, Department of Computer Science Engineering, Shivaji University, NMCOE, Peth) 3 (Assistant

More information

United Nations/Abdus Salam 2014 Workshop on the Use of Global Navigation Satellite Systems for Scientific Applications

United Nations/Abdus Salam 2014 Workshop on the Use of Global Navigation Satellite Systems for Scientific Applications Location Based Social applications and crowd sourced efforts future role in disaster management scenarios Presentation for the United Nations/Abdus Salam International Centre for Theoretical Physics Workshop

More information

Smartphone apps. To download the Android version, go to;

Smartphone apps. To download the Android version, go to; Introduction Getting ready Smartphone apps Create your account Connect to Wi-Fi Main screen More screen Geofence screen Settings screen About screen Health steps Using your device User Guide Introduction

More information

MEMORANDUM. City Council. David J. Deutsch City Manager. SUBJECT: Alert Bowie 2.0. DATE: March 12, 2015

MEMORANDUM. City Council. David J. Deutsch City Manager. SUBJECT: Alert Bowie 2.0. DATE: March 12, 2015 MEMORANDUM TO: FROM: City Council David J. Deutsch City Manager SUBJECT: Alert Bowie 2.0 DATE: March 12, 2015 The City of Bowie has offered a free alerting system to residents since 2006 and has used it

More information

On Information Sharing Scheme for Automatic Evacuation Guiding System Using Evacuees Mobile Nodes

On Information Sharing Scheme for Automatic Evacuation Guiding System Using Evacuees Mobile Nodes On Information Sharing Scheme for Automatic Evacuation Guiding System Using Evacuees Mobile Nodes Nobuhisa Komatsu, Masahiro Sasabe, and Shoji Kasahara Graduate School of Information Science, Nara Institute

More information

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

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

More information

Postat: A Cross-Platform, RSS-Based Advertising and Event Notification System for Educational Institutions

Postat: A Cross-Platform, RSS-Based Advertising and Event Notification System for Educational Institutions Available online at www.sciencedirect.com Procedia - Social and Behavioral Sciences 73 ( 2013 ) 120 127 The 2nd International Conference on Integrated Information Postat: A Cross-Platform, RSS-Based Advertising

More information

Construction of School Temperature Measurement System with Sensor Network

Construction of School Temperature Measurement System with Sensor Network Construction of School Temperature Measurement System with Sensor Network Ayahiko Niimi, Masaaki Wada, Kei Ito, and Osamu Konishi Department of Media Architecture, Future University-Hakodate 116 2 Kamedanakano-cho,

More information

REAL TIME PUBLIC TRANSPORT INFORMATION SERVICE

REAL TIME PUBLIC TRANSPORT INFORMATION SERVICE Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 7, July 2015, pg.88

More information

DEVELOPMENT OF INDOOR AND OUTDOOR LOCATION TRACKING SYSTEM FOR ALZHEIMER S PATIENT

DEVELOPMENT OF INDOOR AND OUTDOOR LOCATION TRACKING SYSTEM FOR ALZHEIMER S PATIENT DEVELOPMENT OF INDOOR AND OUTDOOR LOCATION TRACKING SYSTEM FOR ALZHEIMER S PATIENT Ooi WeiHan, Shahrizal I.M, Noordin A. Space Application and Technology Development Division National Space Agency (ANGKASA)

More information

Wireless Public Alerting

Wireless Public Alerting Wireless Public Alerting 1. What is wireless public alerting? Wireless public alerting allows governments across Canada to send public safety messages directly to smartphones in a region. If there is an

More information

Optimizing Simulation of Movement in Buildings by Using People Flow Analysis Technology

Optimizing Simulation of Movement in Buildings by Using People Flow Analysis Technology Mobility Services for Better Urban Travel Experiences Optimizing Simulation of Movement in Buildings by Using People Flow Analysis Technology The high level of progress in urban planning is being accompanied

More information

Thorsten Reibel, Jürgen Schilder, Martin Wichary & Ilija Zivadinovic

Thorsten Reibel, Jürgen Schilder, Martin Wichary & Ilija Zivadinovic DECEMBER 2017 New ABB-free@home features Webinar Competence Center Europe Building Automation Thorsten Reibel, Jürgen Schilder, Martin Wichary & Ilija Zivadinovic Webinar ABB-free@home Update 2.1.4 New

More information

INTRODUCTION... 6 CONCEPTS... 8 THE MAPPING VIEWER CONFIGURATION OVERVIEW ADMINISTRATOR CONFIGURATION DASHBOARD CONFIGURATION...

INTRODUCTION... 6 CONCEPTS... 8 THE MAPPING VIEWER CONFIGURATION OVERVIEW ADMINISTRATOR CONFIGURATION DASHBOARD CONFIGURATION... TABLE OF CONTENTS INTRODUCTION... 6 How this Manual is Organized... 6 Types of User... 7 CONCEPTS... 8 What is Map Intelligence?... 8 What is a Layer?... 8 Layer Types... 8 THE MAPPING VIEWER... 12 What

More information

A DESCRIPTION-BASED HYBRID COMPOSITION METHOD OF MASHUP APPLICATIONS FOR MOBILE DEVICES

A DESCRIPTION-BASED HYBRID COMPOSITION METHOD OF MASHUP APPLICATIONS FOR MOBILE DEVICES Journal of Web Engineering, Vol. 15, No. 3&4 (2016) 277 309 c Rinton Press A DESCRIPTION-BASED HYBRID COMPOSITION METHOD OF MASHUP APPLICATIONS FOR MOBILE DEVICES KORAWIT PRUTSACHAINIMMIT, TAKEHIRO TOKUDA

More information

Small-cell-based Solution to Make Diverse Services Possible

Small-cell-based Solution to Make Diverse Services Possible Small-cell-based Solution to Make Diverse Services Possible Masanori Hashimoto Hideo Iwamoto The of Things (IoT) has brought the age of connection where everything is linked to a network, but it is also

More information

Location Based Task Reminder System Using Android Mobile

Location Based Task Reminder System Using Android Mobile Location Based Task Reminder System Using Android Mobile Adarrsh Paul 1, Akkshansh Paul 2, S.Jaya Kumar 3 1, 2 Student, Department of Computer Engineering, SRM IST, Chennai, Tamil Nadu, India. 3 Assistant

More information

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

Available online at   ScienceDirect. Procedia Computer Science 60 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 60 (2015 ) 1720 1727 19th International Conference on Knowledge Based and Intelligent Information and Engineering Systems

More information

MOBILE COMPUTING 2/11/18. Location-based Services: Definition. Convergence of Technologies LBS. CSE 40814/60814 Spring 2018

MOBILE COMPUTING 2/11/18. Location-based Services: Definition. Convergence of Technologies LBS. CSE 40814/60814 Spring 2018 MOBILE COMPUTING CSE 40814/60814 Spring 2018 Location-based Services: Definition LBS: A certain service that is offered to the users based on their locations. Convergence of Technologies GIS/ Spatial Database

More information

COUNTRY PRESENTATION : MALAYSIA

COUNTRY PRESENTATION : MALAYSIA RISK MANAGEMENT INFORMATION SYSTEM FOR SOUTH-EAST AND EAST ASIA AND THE PACIFIC 20-23 February 2013 Kingdom of Thailand MALAYSIA S Geo-DRM : EMERGENCY COMMAND CENTER PRESENTER S PROFILE MR KHAIRIL HILMI

More information

A PORTAL SYSTEM AND ITS APPLICATION BASED ON DACS WEB SERVICE

A PORTAL SYSTEM AND ITS APPLICATION BASED ON DACS WEB SERVICE A PORTAL SYSTEM AND ITS APPLICATION BASED ON DACS WEB SERVICE Kazuya Odagiri¹, Naohiro Ishii², Rihito Yaegashi³ and Masaharu Tadauchi 4 1 Advanced Institute of Industrial Technology, Japan, 2 Aichi Institute

More information

For more information: FONETRAC - FULL INTEGRATION WITH GLOBAL MONITORING

For more information:   FONETRAC - FULL INTEGRATION WITH GLOBAL MONITORING FONETRAC - FULL INTEGRATION WITH GLOBAL MONITORING For more information: http://fonetrac-go.com 1995-2018 IMG GlobalSecur, Inc. All Rights Reserved. GlobalSecur & FoneTrac are registered trademarks of

More information

Install Cielo Breezi inside your AC/ Heat Pump preferably, through your maintenance technician.

Install Cielo Breezi inside your AC/ Heat Pump preferably, through your maintenance technician. User Manual Step 1a: Unpacking and Plugging-in Cielo Breezi Install Cielo Breezi inside your AC/ Heat Pump preferably, through your maintenance technician. Note: USB connector (female type) is offered

More information

Android Application Development using Kotlin

Android Application Development using Kotlin Android Application Development using Kotlin 1. Introduction to Kotlin a. Kotlin History b. Kotlin Advantages c. How Kotlin Program Work? d. Kotlin software Prerequisites i. Installing Java JDK and JRE

More information

Is there anything I should bear in mind when pairing my

Is there anything I should bear in mind when pairing my Is my HUAWEI WATCH 2 compatible with an iphone or other ios device? Yes. Your HUAWEI WATCH 2 can be used with ios devices (ios 9.0 or later). You can download the ios version of the Wear OS by Google app

More information

Automated Control System for Accident and Air Pollution Detection in Vehicle by using GSM and GPS modem

Automated Control System for Accident and Air Pollution Detection in Vehicle by using GSM and GPS modem Automated Control System for Accident and Air Pollution Detection in Vehicle by using GSM and GPS modem Suhas Sayajirao Jadhav 1, Bhagyashri Nagorao dhondge 2 1. HOD, Department of E&TC Engineering, Aditya

More information

Such parameters as user s name, , phone numbers to send tracking information, password can be changed in the user settings.

Such parameters as user s name,  , phone numbers to send tracking information, password can be changed in the user settings. 1. Entering the system The system is accessed on the website pandora-on.com On the home page you should enter login (email) and password that was given to you by the developer after signing the contract.

More information

What should I do when something unexpected happens with an alert or warning?

What should I do when something unexpected happens with an alert or warning? These tips and quirks are intended to help emergency managers using the Integrated Public Alert & Warning System (IPAWS), Emergency Alert System (EAS), and Wireless Emergency Alerts (WEA) systems, and

More information

The Best Keying Protocol for Sensor Networks

The Best Keying Protocol for Sensor Networks The Best Keying Protocol for Sensor Networks Taehwan Choi Department of Computer Science The University of Texas at Austin Email: ctlight@cs.utexas.edu H. B. Acharya Department of Computer Science The

More information

Battery Power Saving Tips

Battery Power Saving Tips Battery Power Saving Tips ios Android Page 1 Table of Contents Page No 1. IOS BATTERY LIFE HINTS & TIPS... 03 I. VIEW BATTERY USAGE INFORMATION. 03 II. DUPLICATE ACTIVESYNC CONFIGURATIONS. 04 III. IOS

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

DigiTraq STA. SIGFOX Ready GPS Tracker. Or Contact us: Please visit the HidnSeek Website for more info:

DigiTraq STA. SIGFOX Ready GPS Tracker.  Or Contact us: Please visit the HidnSeek Website for more info: DigiTraq STA SIGFOX Ready GPS Tracker Please visit the HidnSeek Website for more info: www.hidnseek.fr Or Contact us: contact@hidnseek.fr FEATURES Built-in with IP67 enclosure DigiTraq SIGFOX Ready GPS

More information

By Ashbindu Singh. Division of Early Warning & Assessment North America

By Ashbindu Singh. Division of Early Warning & Assessment North America UNEP Global Environmental Alert Service By Ashbindu Singh United Nations Environment Programme Division of Early Warning & Assessment North America as@rona.unep.org Vision Vision: Mission: Goal: Everyone

More information

Emergency Response for Demand Response Transportation Systems

Emergency Response for Demand Response Transportation Systems Emergency Response for Demand Response Transportation Systems Trapeze Rapid Response North America Copyright 2011 Trapeze Software Inc., its subsidiaries and affiliates. All rights reserved. March 22,

More information

Smart Waste Management using Internet-of-Things (IoT)

Smart Waste Management using Internet-of-Things (IoT) Smart Waste Management using Internet-of-Things (IoT) Gopal Kirshna Shyam 1, Sunilkumar S. Manvi 2, Priyanka Bharti 3 School of Computing & Information Technology REVA University, Bengaluru 560 064 Email:

More information

People- and Environment-friendly Urban Development Utilizing Geospatial Information

People- and Environment-friendly Urban Development Utilizing Geospatial Information People- and Environment-friendly Urban Development Utilizing Geospatial Information 112 People- and Environment-friendly Urban Development Utilizing Geospatial Information Hitoshi Tomita So Maeda Yoshihiro

More information

Electronic Capstone Paper Sample

Electronic Capstone Paper Sample Improving the quality of life for people with disabilities and the growing share of older people becomes an increasingly important task for the European society. One of the ways to improve the quality

More information

Available online at ScienceDirect. Procedia Computer Science 98 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 98 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 98 (2016 ) 515 521 The 3rd International Symposium on Emerging Information, Communication and Networks (EICN 2016) A Speculative

More information

SENSOLIGHT SYSTEM FOR HUMP DETECTION IN MOTORCYCLE

SENSOLIGHT SYSTEM FOR HUMP DETECTION IN MOTORCYCLE SENSOLIGHT SYSTEM FOR HUMP DETECTION IN MOTORCYCLE Manjunatha K N 1, Kiran B 1 1 Assistant Professor, Department of Electronics and Communication Engineering, School of Engineering and Technology, Jain

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

ONLINE BIOMETRIC VERIFICATION USING APACHE STORM ON PUBLIC CLOUD

ONLINE BIOMETRIC VERIFICATION USING APACHE STORM ON PUBLIC CLOUD ONLINE BIOMETRIC VERIFICATION USING APACHE STORM ON PUBLIC CLOUD Prof. Shraddha More 1, Jigar Maniyar 2, Mrunmayee Vartak 3, Prasobh Nair 4, Chirag Raul 5 1,2,3,4,5 Department of Information Technology,

More information

Your MSU App - Rave. Alerts, Guardian Safety App and E-TIPS

Your MSU App - Rave. Alerts, Guardian Safety App and E-TIPS Your MSU App - Rave Alerts, Guardian Safety App and E-TIPS Montclair State University continues to be a leader amongst higher education institutions in utilizing mobile technology for students to assist

More information

MES: a System for Location-Aware Smart Messaging in Emergency Situations

MES: a System for Location-Aware Smart Messaging in Emergency Situations MES: a System for Location-Aware Smart Messaging in Emergency Situations Alaa Almagrabi¹, Seng W. Loke² and Torab Torabi³ Department of Computer Science and Computer Engineering Latrobe University, Melbourne,

More information

WorldTracker Enduro Users Manual

WorldTracker Enduro Users Manual Users Manual Contents of the Box...................... 1 Sign Up for Service...................... 2 LEDS................................... Viewing Data............................ 4 Downloading Data........................

More information

3CX Mobile Device Manager

3CX Mobile Device Manager 3CX Mobile Device Manager Manual 1 Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used in examples

More information

TomTom BRIDGE Reference Guide

TomTom BRIDGE Reference Guide TomTom BRIDGE Reference Guide 15100 Contents Welcome to the TomTom BRIDGE 6 Starting the TomTom BRIDGE 8 Using gestures 10 Apps on the TomTom BRIDGE 11 Connecting the TomTom BRIDGE 12 About connecting

More information

Smartwatch Interaction More than just Notifications

Smartwatch Interaction More than just Notifications A. Weisbecker, M. Burmester & A. Schmidt (Hrsg.): Mensch und Computer 2015 Workshopband, Stuttgart: Oldenbourg Wissenschaftsverlag, 2015, S. 299-302. Smartwatch Interaction More than just Notifications

More information

Family Information Sharing System using an Access Control Method which depends on the Situation based on a Judgement of Emergency

Family Information Sharing System using an Access Control Method which depends on the Situation based on a Judgement of Emergency Family Information Sharing System using an Access Control Method which depends on the Situation based on a Judgement of Emergency Yuka Hasegawa Ochanomizu University Bunkyo, Tokyo, Japan Email: hasegawa.yuka@is.ocha.ac.jp

More information

The Real-time Disaster Damage Information Sharing System for Information Acquiring in Large-scale Natural Disaster

The Real-time Disaster Damage Information Sharing System for Information Acquiring in Large-scale Natural Disaster The Real-time Disaster Damage Information Sharing System for Information Acquiring in Large-scale Natural Disaster Tomoyuki Ishida 1, Kazuhiro Takahagi 1, Akira Sakuraba 2, Noriki Uchida 3, and Yoshitaka

More information

CS 4518 Mobile and Ubiquitous Computing Lecture 10: Location-Aware Computing Emmanuel Agu

CS 4518 Mobile and Ubiquitous Computing Lecture 10: Location-Aware Computing Emmanuel Agu CS 4518 Mobile and Ubiquitous Computing Lecture 10: Location-Aware Computing Emmanuel Agu Reminder: Final Project 1-slide from group next Monday (2/6): 2/40 of final project grade Slide should contain

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

Proposed Cooperative ICT Projects. Mie Mie Thet Thwin. Rector University of Computer Studies, Yangon, Myanmar

Proposed Cooperative ICT Projects. Mie Mie Thet Thwin. Rector University of Computer Studies, Yangon, Myanmar Proposed Cooperative ICT Projects Mie Mie Thet Thwin Rector University of Computer Studies, Yangon, Myanmar Contents Cyber Security Projects Big Data Analytic Projects Research & Education Network Other

More information

Consumer Travel & Media

Consumer Travel & Media IAB Travel Report Consumer Travel & Media IAB and BIG Insights Travel is #1 Upcoming Big Ticket Purchase Nearly One in Four Consumers Are Planning a Vacation in the Next 6 Months Do you plan to make any

More information

Development of a guidance system for tourism by using archived data

Development of a guidance system for tourism by using archived data Journal of Global Tourism Research, Volume 3, Number 1, 2018 Development of a guidance system for tourism by using archived data Original Article Mari Endo (Faculty of Information Design and Sociology,

More information

TomTom Bridge User Manual

TomTom Bridge User Manual TomTom Bridge User Manual Contents Welcome to the TomTom Bridge 5 The TomTom Bridge 6 Starting the TomTom Bridge... 7 Using gestures... 9 Apps on the TomTom Bridge... 10 Connecting the TomTom Bridge...

More information

Proximity FAQ Version 1.12

Proximity FAQ Version 1.12 Version 1.12 1) Which iphone is compatible with the Proximity App and watch? Proximity FAQ Due to the Bluetooth technology required, (BLE 4.0 and above), The Proximity watch and app integrate with the

More information

The trackers use about 1MB of data in 24 hours of live tracking (5p on Giffgaff) so relatively speaking it s not so much data.

The trackers use about 1MB of data in 24 hours of live tracking (5p on Giffgaff) so relatively speaking it s not so much data. FAQ s How does it work and why do I need a SIM? The tracker is effectively a mini satnav which can tell a server where it is by sending its GPS location data via the sim s mobile internet connection. Without

More information

Key Features: Be notified of incoming calls, texts, , calendar and social media events with vibration and LED light

Key Features: Be notified of incoming calls, texts,  , calendar and social media events with vibration and LED light Product Overview Congratulations on your purchase of the MARTIAN WATCH! MARTIAN provides you with connectivity to your voice-command-enabled smartphone or tablet via Bluetooth wireless technology. Key

More information

Subject: University Information Technology Resource Security Policy: OUTDATED

Subject: University Information Technology Resource Security Policy: OUTDATED Policy 1-18 Rev. 2 Date: September 7, 2006 Back to Index Subject: University Information Technology Resource Security Policy: I. PURPOSE II. University Information Technology Resources are at risk from

More information

MOBILE DEVICES FOR SURVEY WORK

MOBILE DEVICES FOR SURVEY WORK MOBILE DEVICES FOR SURVEY WORK Guidelines for administrators (Sep 6, 2013) Mobile Devices: Android-based phones and tablets, also referred to as mobile devices, have become a reliable tool in assisting

More information

GARMIN DRIVELUXE 51. Owner s Manual

GARMIN DRIVELUXE 51. Owner s Manual GARMIN DRIVELUXE 51 Owner s Manual 2016 Garmin Ltd. or its subsidiaries All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of

More information

Mobile Tracking System using Web Application and Android Apps

Mobile Tracking System using Web Application and Android Apps http:// Mobile Tracking System using Web Application and Android Apps Mia Md. Karimul Hoq Department of Computer Science and Information Technology, Mohammad Jahangir Alam Department of Computer Science

More information

Users Guide. GPS/Online Fleet Management solution to Track, Monitor and Manage your fleet.

Users Guide. GPS/Online Fleet Management solution to Track, Monitor and Manage your fleet. Users Guide GPS/Online Fleet Management solution to Track, Monitor and Manage your fleet. SolarTrak was designed by www.solar-trak.com If you have any questions, the SolarTrak Support Team is ready and

More information