Location, Location, Location

Similar documents
Location, Location, Location

Location, Location, Location Lecture 8 (catch-up from lecture 7) Larry Rudolph. Problem Set 3

Location Tracking. Current Technologies 1/19/2011. Not one, single technology Convergence of several technologies. Systems for

GLOBAL POSITIONING SYSTEMS

Digital Surveillance Devices?

Digital surveillance devices?

Developing Mobile Applications

Entity Tracking and Surveillance using the Modified Biometric System, GPS-3

Wireless systems. includes issues of

What is a GPS How does GPS work? GPS Segments GPS P osition Position Position Accuracy Accuracy Accuracy GPS A pplications Applications Applications

Principal Investigator Co-Principal Investigator Co-Principal Investigator Prof. Talat Ahmad Vice-Chancellor Jamia Millia Islamia Delhi

Introduction to the Global Positioning System

NR402 GIS Applications in Natural Resources

GPS. La*tude Longitude. Global Posi*oning Systems

Sources of Geographic Information

Introduction to the Global Positioning System

36. Global Positioning System

Next Generation Positioning Infrastructure

MOBILE COMPUTING 1/28/18. Location, Location, Location. Overview. CSE 40814/60814 Spring 2018

Location Based Technologies

PRINCIPLES AND FUNCTIONING OF GPS/ DGPS /ETS ER A. K. ATABUDHI, ORSAC

Primer on GPS Operations

Direct Link Communication II: Wireless Media. Motivation

GPS (GLOBAL POSITIONING SYSTEM)

Chapter 5 Acknowledgment:

Dimov Stojče Ilčev. CNS Systems

Delivery of radio services over IP bidirectional. Simon Mason, Head of New Product Development

Introduction to NAVSTAR GPS

GPS Technical Overview N5TWP NOV08. How Can GPS Mislead

Boeing Timing & Location

REVISITING RADIO PROPAGATION PREDICTIONS FOR A PROPOSED CELLULAR SYSTEM IN BERHAMPUR CITY

Location-Enhanced Computing

The Global Positioning System

Mobile Positioning in Wireless Mobile Networks

GPS Milestones, cont. GPS Milestones. The Global Positioning Sytem, Part 1 10/10/2017. M. Helper, GEO 327G/386G, UT Austin 1. US GPS Facts of Note

Introduction to Location-Based Services

INTELLIGENCE MOBILE LOCATOR. World Leader in Supplying INTELLIGENCE Equipment and Training TA08002

ECS455: Chapter 4 Multiple Access

The GPS Classroom. Jared Covili

Accident Sensor with Google Map Locator

Wind Power GeoPlanner. GPS Study

GLOBAL POSITIONING SYSTEMS. Knowing where and when

Solutions. Remotek's Advantages

MODERN LOCALIZATION APPARATUS IN METALLURGICAL ENTERPRISE

Multi-Agent Robotics with GPS Navigation

GPS Tutorial Trimble Home > GPS Tutorial > How GPS works? > Triangulating

Introduction to Total Station and GPS

CS6956: Wireless and Mobile Networks Lecture Notes: 3/23/2015

Mobile Security Fall 2015

Public or Private (2)

GLOBAL SYSTEM FOR MOBILE COMMUNICATION. ARFCNS, CHANNELS ETI 2511 Thursday, March 30, 2017

GPS: The Basics. Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University. Expected Learning Outcomes for GPS

Chapter 3 Solution to Problems

Challenges and Solutions for GPS Receiver Test

NOISE, INTERFERENCE, & DATA RATES

Wind Power GeoPlanner. Land Mobile Report - UPDATE

Chapter 15: Radio-Wave Propagation

Localization. of mobile devices. Seminar: Mobile Computing. IFW C42 Tuesday, 29th May 2001 Roger Zimmermann

9/22/08. Satellite Systems. History of satellite communication. Applications. History Basics Localization Handover Routing Systems

What is GPS? GPS Position Accuracy. GPS Applications. What is a GPS. How does GPS work? GPS Segments

Unguided Transmission Media

PRODUCT LEAFLET AUGIER-BOX. Remote Monitoring Unit for Street Lighting /07/2011

Telemetry formats and equations of Painani-2 Satellite

Bloodhound RMS Product Overview

Introduction to Geographic Information Science. Last Lecture. Today s Outline. Geography 4103 / GNSS/GPS Technology

Prof. Maria Papadopouli

White Paper. Network Coverage at its Best Tower Mounted Amplifiers

Mobile Positioning in a Natural Disaster Environment

Test Solutions for Simulating Realistic GNSS Scenarios

Low Power Gelocation Solution. Stéphane BOUDAUD CTO Abeeway Jonathan DAVID Polytech Student

King AbdulAziz University. Faculty of Environmental Design. Geomatics Department. Mobile GIS GEOM 427. Lecture 3

France. 1 Introduction. 2 Employed methodology. Radiocommunication Study Groups

Bluetooth BlueTooth - Allows users to make wireless connections between various communication devices such as mobile phones, desktop and notebook comp

Satellite Fleet Operations Using a Global Ground Station Network. Naomi Kurahara Infostellar

Technician Licensing Class

HOW CAN A GPS HELP? WHY A GPS? HOW DOES A GPS WORK?

Lauri Wirola Location and Commerce, Nokia ICL-GNSS 2011, 29-June-2011

LOCALIZATION WITH GPS UNAVAILABLE

Automatically determine route and mode of tranport using a gps enabled phone

RADIOMETRIC TRACKING. Space Navigation

Global Positioning Systems (GPS) Trails: the achilles heel of mapping from the air / satellites

Spectrum Sharing between High Altitude Platform and Fixed Satellite Networks in the 50/40 GHz band

Wireless and mobile communication

Principles of. Principles of GPS 9/12/2011

Line and polygon features can be created via on-screen digitizing.

COURSE CODE : 6042 COURSE CATEGORY PERIODS PER WEEK : 5 PERIODS PER SEMESTER : 75/6 CREDITS : 5 TIME SCHEDULE

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects

LOCALIZATION INFORMATION RETRIEVAL EXPLOITING COOPERATION AMONG MOBILE DEVICES

Open Access International Journal of Pure and Applied Sciences and Technology

MOBILE COMPUTING 1/29/18. Cellular Positioning: Cell ID. Cellular Positioning - Cell ID with TA. CSE 40814/60814 Spring 2018

UNITED NATIONS UNIVERSITY Institute for Environment & Human Security (UNU-EHS) Bonn, Germany

INSTALLATION GUIDE Mobile Signal Repeater

Lecture 04. Elements of Global Positioning Systems

Lecture # 7 Coordinate systems and georeferencing

Chapter 1 Introduction to Mobile Computing (16 M)

GE 113 REMOTE SENSING

Chapter 1 INTRODUCTION

Mobile & Wireless Networking. Lecture 4: Cellular Concepts & Dealing with Mobility. [Reader, Part 3 & 4]

Design and Development of Train Tracking System in South Central Railways

Ammar Abu-Hudrouss Islamic University Gaza

Transcription:

Location, Location, Location Larry Rudolph 1 Outline Positioning Technology GPS and others Location Specifiers Privacy Issues

Universal Location On earth, we need three piece of information: latitude, longitude, & altitude there are other possibilities Global Positioning Systems can give us that information Can then use mapping to do something useful with that information Global Positioning Systems 1978 US Department of Defense begins project 1984 Crash of Korean Flight due to poor navigational equipment ==> gps for civilian use 1985 Complete system fully operational 24 satellites (11,000 mile orbit) & $12 billion 2000, selective availability turned off 3 to 15 meter accuracy for everyone

How it works Receiver measures travel time of random code sent from satellite (about 0.1 sec) compute distance, call it X Receiver s position can be anywhere on a sphere of radius X with satellite at center Given four satellite readings, can figure out position in 3 dimensions Let s look at some government slides mms.nps.gov/gis/gps/how_gps_works.ppt GPS Python interface to a bluetooth gps Connect to the GPS like normally: from socket import * sock = socket(af_bt, SOCK_STREAM) read input from $ up to a \r character using the sock.recv() command, reading one byte at a time

GPS (cont) buf = sock.recv(1) while buf!= $ :buf = sock.recv(1) while buf[-1]!= \r :buf += sock.recv(1) if buf[0:6] == $GPGGA : (GPGGA,utcTime,lat,ns,lon,ew,postfix,sats, hdop,alt,altunits,sep,sepunits,age,sid) = buf.split(, ) latitude = float(lat) longitude = float(lon)

MOBILE BASE TRANSCEIVER STATION Information gotten from: http://home.pacific.net.au/~gnb/gps/nmea.html GSM Cellular location GSM mobile telephone network: cells unaffected by urban canyon effect phone is registered with a BTS towers fixed, signal available indoors CellID: detect base transceiver stations (BTS) usually, but not always, the closest one AIR INTERFACE DOWNLINK 935-960 MHz UPLINK 890-915 MHz

GSM Cellular Location Cell size depends on terrain & number of users Error: about 500 m (urban) to 15km (rural) Base stations have 3 antennas, 120 degree sectors Rural Suburb Highway Town Enhanced Method E-OTD: Enhanced observed time difference Time from base station to phone Time from base station to fixed location Ratio gives better estimation of position Also use triangulation (from several bases) Both yield order of magnitude improvement and lots of research for even better results

What good is GPS? It is universal But is it what we want? Human-centric versions of location: name of place map of place Other Data Formats Geographic Information System (GIS) developed set of XML descriptions NVML: Navigation mark-up language static (river): Geo Markup Language dynamic (cars, events): Point-of-interest SKiCAL: icalendar VEVENT used to describe event information event meta-info: location

Set of functions to Spatial Databases quickly search, query, analyze spacial info how objects spatially relate to each other many geometry types and typical queries People don t speak GPS Different people have different views of the world.

Places -- big and small People refer to location as places countries, cities, towns, streets, buildings rooms, spaces within buildings relation to other places, e.g. across from Starbucks GPS is too precise and may require accurate map or building plan Jim might be at 42.3325N, -71.11861E but is he in the shower at the moment? Location Tracking: Good, Bad, or Ugly? Not too many people seem to be concerned about location-based services tracking them. You have no privacy, get over it -- Scott McNealy, CEO Sun

Can we study this? Before investing heavily in location-based services, we should find out if people will use them. The evidence is still mixed

Does Age Matter? Not much in this sample of 23 participants. surprising result Their Conclusions