Global Positioning System

Slides:



Advertisements
Similar presentations
Submitted by Danny Hearit, Alma College.
Advertisements

Touchdevelop api api: location & maps show geo locations Disclaimer: This document is provided “as-is”. Information and views expressed in this document,
Any questions on the Section 5. 8 homework
HTML 5 – GeoLocation and Maps. Geolocation API What is a ”geolocation”…? A geographical location, defined in terms of – Latitude (north/south) – Longitude.
Sensors. Point your phone at the sky, and Google Sky Map tells you which stars you’re looking at. Tilt your phone, and you can control the game you’re.
Kapi’olani Community College Art 128 Interface Programming 1 In-class Presentation Week 13B.
JIMMY PETERSON INFORMATION SYSTEMS 100 DR. CARL REBMAN GPS- Global Position Satellite.
Academic Autobiography Activity 1.1 At some point in your schooling, you’ve probably written an autobiography about your life. In this assignment, you’ll.
Coming up in Math 110: Today: Section 8.2 (Quadratic formula)
Ch2 Sec3 Maps and Computers.
CHAP 4. GEOLOCATION API.  You can request users to share their location and, if they agree, you can provide them with instructions on how to get to a.
Maps and Modern tools.  Geographers look for patterns.
LEQ: What new technologies will I be using in our study of watersheds? Key Terms: GPS GIS Key Terms: GPS GIS.
Location based services
GPS Global Positioning System. Why Do I Care? Since the beginning of recorded history there is evidence that people used indirect methods, like the stars,
Adding & Subtracting INTEGERS Lesson 1-5 & 1-6. Adding & Subtracting INTEGERS ADDING INTEGERS Same sign, add & Keep! Different sign, subtract… BUT take.
Reference or Thematic? What type of map are these examples? Identify and explain the type for each in your notebook!
GPS SKY What is the Sky Doing Today?. Objective Summary of Topics - Importance of Planning - Review how GPS Calculates Positions - Check Out The Sky.
DISCUSSION PLEASE TURN OFF ALL CELL PHONES IN DISCUSSION Importance Discussion and Homework is 30% of course grade Discussion material will be on exams.
CHAPTER 3 VOCABULARY NAME: ___________________ Due Date: 10/26/15 PERIOD: ____________.
Apps Find the latest version of this document at
RIA Geo Location. Finding Location modern devices can get location coordinates phones and tablets can use GPS desktops and laptops –often cannot use GPS.
3 CITIES OF CALIFORNIA By Wyatt Bongiovanni Grade #4.
Cities Of the U.S. BY: Sol Everett and Sarah Richter.
Earth Systems - Chapter 1.3 Mapping Our World. Learning Objectives Identify the seven continents on a map Identify the four oceans on a map Distinguish.
Name three geographical factors that are relevant to this map.
Are you struggling in your classes?. Are you the top student in your class?
Feb 2016 Subsidiaries & Distributors eMotion. Contents 01 How to create subsidiaries or distributors ? 02 What is the forms ? 03 How to publish ?
Background for activities: Digitizing a wave Reconstructing a digital wave.
1. 2 Android location services Determining a device’s current location Tracking device movements Proximity alerts.
Technology: Mobile, Wifi, and Facial Recognition
Raider Rev! Monday, August 29th
GeoSpatial Revolution: Contemporary Tools of Geography
Info 448 – Android Joel Ross
Visualizing Vector fields
Technology: Mobile, Wifi, and Facial Recognition
Work Experience.
Global Positioning System
Contemporary Tools.
Brad Bootz, Robert Douglas, Natalie Freed
Sensors, maps and fragments:
Ch 8- Digital devices and media: managing a digital lifestyle
Cell Phone Safety Subtitle.
PLEASE TURN OFF ALL CELL PHONES IN DISCUSSION Importance
Warm up! What are the 5 themes of geography spelled out with MR. HELP?
the global positioning system
Academic Goal Setting This simple presentation can be used at the beginning of the year to set goals for the quarter. It can also be used with a current.
VOCABULARY WORDS, DEFINITIONS,AND PICTURES
Global Map Skills Second Grade Common Assessment
Geospatial themes and The Gravity Model
PLEASE TURN OFF ALL CELL PHONES IN DISCUSSION Importance
Mapping the schoolyard geographically
Understanding Location
Understanding Location
Academic Autobiography Activity 1.1
Repetition Structures
Making a good thematic map – Extracting or collecting geographic data
Risk & Safety Manager Brandon Lechner
Making a good thematic map – Extracting or collecting geographic data
Warm-up What are Earth’s 4 “spheres?”
Mapping Earth’s Surface
Semester Review Game Directions
Extracting or collecting geospatial data
Assignment Operators Topics Increment and Decrement Operators
Welcome to Earth Science
Teaching Physics Labs.
Warm Up Sung Hoon made two decimal numbers using the digits 5, 6, and 7. He found to be their sum. What is the difference of the two decimal numbers?
PIRATE COLLEGE ACADEMY Period 1
COE-485 Senior Design Project
INTELLIGENT SHOES FOR THE BLIND
Presentation transcript:

Global Positioning System

Global Positioning System (GPS) What can your phone do when it knows where it is?

GPS You can access the GPS sensor on your phone with the following line of code: var loc := senses->current location loc->post to wall

GPS How can you write a program that tracks all of the places it has been run, and shows a picture showing all of those places when run? If you run it at school, then at home, and then at a college, you should end up with a map showing those locations by the time you’re done.

first Step It probably isn’t immediately obvious how to write this program. So, start with this question. This should be the first thing you ask yourself every time you sit down to write a program: What do you not know how to do?

locations You’ll notice that your location is expressed as a latitude and a longitude. Although you can get these values, they’re not particularly useful. You can also look up elevation.

Use this one for the homework GPS senses->current location Returns an approximated geo-location based on WiFi or Cell tower. Bad: 1 mile Good: low battery impact senses->current location accurate Returns a precise geo-location based on GPS. Bad: high battery usage, slower, requires satellites Good: high precision within 10/20 of feet Use this one for the homework

maps recipe Creating a map Adding a pushpin Displaying the map var map := maps->create full map Adding a pushpin map->add text(“bla bla”, location, ...) Displaying the map map->post to wall

assignment Write a program that keeps track of every location where you’ve run it. When you run the program, add your current location to a list, then show all locations from the list.