APPLICATION of GOOGLE API and KML to DRAW PATH from SOURCE to DESTINATION on ANDROID PHONE Dr

Total Page:16

File Type:pdf, Size:1020Kb

APPLICATION of GOOGLE API and KML to DRAW PATH from SOURCE to DESTINATION on ANDROID PHONE Dr International Journal of Advanced Engineering Technology E-ISSN 0976-3945 Research Paper APPLICATION OF GOOGLE API AND KML TO DRAW PATH FROM SOURCE TO DESTINATION ON ANDROID PHONE Dr. Khanna SamratVivekanand Omprakash, Mr Pritesh Patel Address for Correspondence Information Technology Dept, ISTAR, Sardar Patel University, VVNagar, India ABSTRACT Today google is constantly trying to implement innovative ideas in science and engineering. This paper presents the implementation of KML to find path from source to the destination on google android phone. Google provides many APIs to implement its services. Here we present methods to draw path from given source to the destination. Drawing path can be useful in many applications like travelling application, driving direction and projecting the path where our child moves using mobile implementation. KEY WORDS Google API, KML, Google Earth, Graphics, Keyhole, KMZ, Android INTRODUCTION Table 1 Now a day’s android phone market is popular among File Extension .kml, .kmz the people for many useful applications. This paper application/vnd.google-earth.kml+xml, MIME Type for kml application/vnd.google-earth.kmz represents the use of KML and google API to draw for kml path from specific source to the destination. Drawing Developed By Keyhole, Inc. 2001, Google path from one place to another is used to know the Uses in Graphical Information System way in which we can reach to the destination. By Parent Language XML knowing the co-ordinates i.e. longitude and latitude We can use KML to: of the specific location we can draw the path to that • Specify icons and labels to identify locations on location. This can be useful to the person to know the the planet surface path or can locate the position where he is located. • Create different camera positions to define With the help of these KML we can locate the place unique views for each of your features or path to the unknown location from our current • Use image overlays attached to the ground or location. screen OVERVIEW OF GOOGLE API • Define styles to specify feature appearance Google provide many services to the developers to • Write HTML descriptions of features, including design various useful applications. Among all hyperlinks and embedded images services Google API is an interface for accessing • Use folders for hierarchical grouping of features various services provided by google. Google offers • Dynamically fetch and update KML files from variety of API for developers. The API may be used remote or local network locations for Google Apps, Google Analytics, Blogger, Google • Fetch KML data based on changes in the 3D Base, Google Book Search, Google Calendar, Google viewer Code Search, Google Earth, Google Spreadsheets, • Display COLLADA textured 3D objects Google Notebook and Picasa Web Albums. We can Structure of KML file enhance our application functionalities using google • <?xml version="1.0" encoding="UTF-8"?> API. • <kml xmlns="http://www.opengis.net/kml/2.2"> OVERVIEW OF KML • <Placemark> Keyhole Markup Language (KML) is an XML based language used to express geographical annotation and • <name>My Simple Placemark</name> visualization. It displays geographical data in earth • <description>Your Description goes browser like google earth, google maps or google here</description> map for mobile. KML uses a tag-based structure with • <Point> nested elements and attributes and is based on the • <coordinates> longitude, latitude, and optional XML standard [1]. KML file uses XML grammar and altitude </coordinates> file format for modeling and storing geographic • </Point> features such as points, lines, images, polygons, and • </Placemark> models for display in Google Earth, Google Maps • </kml> and other applications [5]. KML has same tag-based Above structure describe the following: and attribute structure as HTML used for display • Line 1 is an XML header which is in every purpose. KML file. No spaces or other characters can The KML file specifies a set of features (place marks, appear before this line. images, polygons, 3D models, textual descriptions, • Line 2 is a KML namespace declaration which etc.) for display in Google Earth, Maps and Mobile, is in every KML 2.2 file. or any other 3D Earth browser (geobrowser) • A Placemark object that contains the following implementing the KML encoding [2]. The simplest elements: kind of KML documents are those that can be o A name that is used as the label for the authored directly in Google Earth [1]. Placemark IJAET/Vol.III/ Issue I/January-March, 2012/156-158 International Journal of Advanced Engineering Technology E-ISSN 0976-3945 o A description that appears in the interfaces, application life cycle, various application "balloon" attached to the Placemark types, efficient IPC mechanisms, and permissions [9]. o A Point that specifies the position of the Placemark on the Earth's surface (longitude, latitude, and optional altitude) We can also define styles in KML file to look content fancy. Path can also be drawn on map using kml. Many applications display KML, including Google Earth, Google Maps, Google Maps for mobile, NASA WorldWind, ESRI ArcGIS Explorer, Adobe PhotoShop, AutoCAD, and Yahoo! Pipes [3]. Figure 1 shows all the elements used in KML file along with abstract elements. Figure. 1 Android Architecture (developer.android.com, 2011) Android is a privilege-separated operating system, in which each application runs with a distinct system identity (Linux user ID and group ID) and parts of the system are also separated into distinct identities (developer.android.com, 2011). Implementation To implement the google API on android phone we have to add Google API library and set built target as Google API. We also need to set the permission in AndroidManifest.xml file like below: <manifest Figure 1 [7] xmlns:android="http://schemas.android.com/apk/res/ About Android android" Android is an operating system (OS) developed by package="com.example.package.name"> Open Handset Alliance (OHA). Android is also ... known as a software stack for mobile devices that <application android:name="MyApplication" > includes an operating system, middleware and key <uses-library applications. The Alliance is a coalition of more than android:name="com.google.android.maps" /> 50 mobile technology companies ranging from ... handset manufacturer and service provider to </application> semiconductor manufacturers and software ... developers, including Acer, ARM, Google, eBay, <uses-permission HTC, Intel, LG Electronics, Qualcomm, Sprint and android:name="android.permission.INTERNET" /> T-Mobile [8]. The stated goal of the OHA is to “accelerate innovation in mobile and offer consumer </manifest> a richer, less expensive, and better mobile experience”. By providing an open development To add MapView control we need to code the platform, Android offers developers the ability to following in layout file like: build extremely rich and innovative applications. <?xml version="1.0" encoding="utf-8"?> Developers are free to take advantage of the device <com.google.android.maps.MapView hardware, access location information, run background services, set alarms, add notifications to xmlns:android="http://schemas.android.com/apk/res/ the status bar, etc.( developer.android.com, 2011). android" Basic architecture of android is shown in fig. 1. android:id="@+id/mapview" Android OS is built on the Linux 2.6 kernel. The android:layout_width="fill_parent" Android Runtime System utilizes Delvik virtual android:layout_height="fill_parent" machine (VM), which allows multiple applications to android:clickable="true" be run concurrently as each application is its own android:apiKey="Your Maps API Key goes here " separate VM [8]. Android application compiled into /> Delvik executable (.dex) and is run by Delvik virtual To access the map from google we need to get the machine. Android provides a substantial set of API key and the procedure to get API key is given on abstractions for developers, including ones for user IJAET/Vol.III/ Issue I/January-March, 2012/156-158 International Journal of Advanced Engineering Technology E-ISSN 0976-3945 http://code.google.com/android/add-ons/google- location and path dynamically by fetching geo apis/mapkey.html (Retrieved on 24th Dec, 2011) coordinates automatically from location send by wifi This paper represents the implementation of KML to and service provider. know the path from Anand to Ahmedabad. The path REFERENCES is drawn from Anand City to Ahmedabad via Nadiad, 1. KML Tutorial, Kheda and Baraja. The implemented KML file code http://code.google.com/apis/kml/documentation/k th is as below: ml_tut.html, Retrieved 26 Nov, 2011 <?xml version="1.0" encoding="UTF-8"?> 2. http://en.wikipedia.org/wiki/Keyhole_Markup_L anguage, Retrieved 28 th Nov, 2011 <kml xmlns="http://www.opengis.net/kml/2.2"> 3. http://code.google.com/apis/kml/documentation/, <Document> Retrieved 328 h Nov, 2011 <name>Paths</name> 4. http://code.google.com/apis/kml/documentation/k <description>Sample Path from Anand to mlreference.html, Retrieved 21 st Dec, 2011 Ahmedabad</description> 5. http://earth.google.com/support/bin/static.py?pag <Style id="yellowLineGreenPoly"> e=guide.cs&guide=22373&topic=23747&answer <LineStyle> =148118, Retrieved 5 th Oct, 2011 6. http://code.google.com/apis/kml/documentation/ <color>7f00ffff</color> th <width>4</width> whatiskml.html, Retrieved 15 Dec, 2011 7. Josie Wernecke, The KML Handbook: </LineStyle> Geographic Visualization for the Web, Addison- <PolyStyle> Wesley Professional <color>7f00ff00</color> 8. Android Forensics: Simplifying Cell Phone </PolyStyle> Examination By Jeff Lessard and Gary C. </Style> Kessler, Small Scale Digital Device Forensics <Placemark> Journal Vol. 4, Issue. 1 Sep 2010, ISSN: 1941- <name>Path from Anand to Ahmedabad</name> 6164 <description>Transparent green wall with yellow 9. Mobile Application Security By: Himanshu outlines</description> Dwivedi, Chris Clark and David Thiel, McGraw- Hill, ISBN 978-0-07-163356-7 <styleUrl>#yellowLineGreenPoly</styleUrl> 10. “Way To The Destination” - Implementing <LineString> Google Api And Kml To Find Path From Source <extrude>1</extrude> To Destination, By Mr.
Recommended publications
  • Earth Installing and Uninstalling Google Earth
    Installing and uninstalling Google Earth - Earth Help Page 1 of 3 Earth Fix Installing and uninstalling Google Earth For information about installing or uninstalling Google Earth (including Earth Pro), see below. For help that applies only to Earth Pro, see Install Earth Pro. If you'd like to install or upgrade to the latest version of Google Earth, you can download the application at http://earth.google.com/download-earth.html If you experience issues installing Google Earth through the Google Updater, you can directly download the latest version of Google Earth here: • PC: http://dl.google.com/earth/client/current/GoogleEarthWin.exe • Mac: http://dl.google.com/earth/client/current/GoogleEarthMac.dmg To install Google Earth to a PC: 1. Download the latest version of Google Earth from the following location: http://dl.google.com/earth/client/current/GoogleEarthWin.exe 2. Double-click the file and go through the installation process 3. You should now be able to run Google Earth by going to Start > Programs > Google Earth and clicking on the Google Earth icon. To install Google Earth to a Mac: 1. Double-click the .dmg file from your Downloads folder. A new folder will open with a Google Earth icon. 2. Drag this Google Earth icon into your Applications folder. 3. You should now be able to run Google Earth by clicking on the Earth icon from your Applications folder. If you'd like you may also drag the Earth icon to your dock for easier access. If you have any problems installing, see the Installation errors section of this article.
    [Show full text]
  • Google Earth User Guide
    Google Earth User Guide ● Table of Contents Introduction ● Introduction This user guide describes Google Earth Version 4 and later. ❍ Getting to Know Google Welcome to Google Earth! Once you download and install Google Earth, your Earth computer becomes a window to anywhere on the planet, allowing you to view high- ❍ Five Cool, Easy Things resolution aerial and satellite imagery, elevation terrain, road and street labels, You Can Do in Google business listings, and more. See Five Cool, Easy Things You Can Do in Google Earth Earth. ❍ New Features in Version 4.0 ❍ Installing Google Earth Use the following topics to For other topics in this documentation, ❍ System Requirements learn Google Earth basics - see the table of contents (left) or check ❍ Changing Languages navigating the globe, out these important topics: ❍ Additional Support searching, printing, and more: ● Making movies with Google ❍ Selecting a Server Earth ❍ Deactivating Google ● Getting to know Earth Plus, Pro or EC ● Using layers Google Earth ❍ Navigating in Google ● Using places Earth ● New features in Version 4.0 ● Managing search results ■ Using a Mouse ● Navigating in Google ● Measuring distances and areas ■ Using the Earth Navigation Controls ● Drawing paths and polygons ● ■ Finding places and Tilting and Viewing ● Using image overlays Hilly Terrain directions ● Using GPS devices with Google ■ Resetting the ● Marking places on Earth Default View the earth ■ Setting the Start ● Location Showing or hiding points of interest ● Finding Places and ● Directions Tilting and
    [Show full text]
  • Data Visualization Session 4: Designing Data Visuals
    Data visualization Session 4: Designing data visuals Koen Van den Eeckhout - Baryon All the slides and all the links: baryon.be/dataviz-resources Session 1 Design basics Tuesday, September 21, 2 pm – 5.15 pm Session 2 Graphic representation Wednesday, September 22, 9 am – 12.15 pm homework assignment part 1 Session 3 Producing data visuals Tuesday, October 5, 2 pm – 5.15 pm Session 4 Designing data visuals Wednesday, October 6, 9 am – 12.15 pm homework assignment part 2 Session 5 Feedback Tuesday, October 19, 2 pm – 3.30 pm Components Colors Illustrations Typography 15’ break Advanced Interactive data visuals data visualization Programming data visuals Maps Components trust, happiness, stability warmth energy, sensitive, passion love friendly, rich, natural mistery history, neutral, intelligence calm canva.com canva.com coolors.co Accent colors Accent colors Clever color use Accessibility Accessibility https://academy.datawrapper.de/article/140-what-to-consider- when-choosing-colors-for-data-visualization are colors even helpful? gray is the most powerful color use consistent colors use logical colors https://blog.datawrapper.de/gendercolor/ https://blog.datawrapper.de/gendercolor/ dark colors = high values* *on a light background don’t use gradient colors for categories rainbow scales can be confusing Icons thenounproject.com * The most important use cases for 5G Illustrations freepik.com Typography Typography Typography Typography Typography Typography Serif Sans serif perfect for body text perfect for titles fonts.google.com Some personal
    [Show full text]
  • Paper #5: Google Mobile
    Yale University Thurmantap Arnold Project Digital Platform Theories of Harm Paper Series: 5 Google’s Anticompetitive Practices in Mobile: Creating Monopolies to Sustain a Monopoly May 2020 David Bassali Adam Kinkley Katie Ning Jackson Skeen Table of Contents I. Introduction 3 II. The Vicious Circle: Google’s Creation and Maintenance of its Android Monopoly 5 A. The Relationship Between Android and Google Search 7 B. Contractual Restrictions to Android Usage 8 1. Anti-Fragmentation Agreements 8 2. Mobile Application Distribution Agreements 9 C. Google’s AFAs and MADAs Stifle Competition by Foreclosing Rivals 12 1. Tying Google Apps to GMS Android 14 2. Tying GMS Android and Google Apps to Google Search 18 3. Tying GMS Apps Together 20 III. Google Further Entrenches its Mobile Search Monopoly Through Exclusive Dealing22 A. Google’s Exclusive Dealing is Anticompetitive 25 IV. Google’s Acquisition of Waze Further Forecloses Competition 26 A. Google’s Acquisition of Waze is Anticompetitive 29 V. Google’s Anticompetitive Actions Harm Consumers 31 VI. Google’s Counterarguments are Inadequate 37 A. Google Android 37 B. Google’s Exclusive Contracts 39 C. Google’s Acquisition of Waze 40 VII. Legal Analysis 41 A. Google Android 41 1. Possession of Monopoly Power in a Relevant Market 42 2. Willful Acquisition or Maintenance of Monopoly Power 43 a) Tying 44 b) Bundling 46 B. Google’s Exclusive Dealing 46 1. Market Definition 47 2. Foreclosure of Competition 48 3. Duration and Terminability of the Agreement 49 4. Evidence of Anticompetitive Intent 50 5. Offsetting Procompetitive Justifications 51 C. Google’s Acquisition of Waze 52 1.
    [Show full text]
  • An Introduction to Google Earth Pro
    An Introduction to Google Earth Pro Virginia Tech Geospatial Extension Program By: Katherine Britt Ph.D. Candidate Virginia Tech Department of Forest Resources and Environmental Conservation John McGee Geospatial Extension Specialist Department of Forest Resources and Environmental Conservation Jim Campbell Professor Virginia Tech Department of Geography Google Earth Pro Opening Google Earth Pro and Configuring the Program Window Being by opening Google Earth Pro. Select the Google Earth Pro icon “ ,” or search in the start menu for “Google Earth Pro.” When Google Earth Pro has been opened, you will get this screen. A “Start-Up Tip” window will automatically open when Google Earth Pro starts. These include hints and instructions about many popular features in the program. If you do not want to see this window each time you start the program, you can uncheck the “Show tips at start-up” box and then either click “close” or click the red “X” at the top right of the window (see above). After the “Start-Up Tip” window is closed, you will see a view of the earth, with a “Tour Guide” ribbon at the bottom of the main, map area of the screen. The “Tour Guide” will show you photos that may be of interest in the region you are viewing. You can scroll through them to explore the feature or the surrounding area of what you are interested in. These are often used when creating customized tours or videos in Google Earth Pro. 2 Google Earth Pro You may instead wish to maximize your viewing area in the map window.
    [Show full text]
  • Using GIS Data in Google Earth for 2007 Pre - Hurricane Season
    Using Google Earth to Integrate & visualize GIS Data & Real-time Natural Disaster Information Yun Li Emergency Programs, Office of Security Services, USDA [email protected] Outline • Google Earth Overview • How to view Emergency related GIS data via Google Earth • How to link the Real time Natural Hazard data on Google Earth • Conclusion Google Earth Overview • Google Earth combines the power of Google Search with satellite imagery, maps, terrain and 3D buildings to put the world's geographic information at your fingertips. • A powerful solution for utilizing any form of geospatial data • Free download 3D global maps of the earth • High Performance – Consolidation of different data layers into a single view – No “click-and-wait” – Truly interactive interface, visual – End user is the priority – Low technical skill – Integrate your own data to Google Earth. Using GIS Data in Google Earth For 2007 Pre - Hurricane Season 2006 2007 Using GIS Data in Google Earth For 2007 Pre - Hurricane Season Real-time (Hurricane) data visualization Hurricane Dean on Aug. 17, 2007 Real-time (Fire) data visualization Real-time (Rainfall) data visualization Real-time (Weather) data visualization Weather and Storm Tracking Hurricane Dean on Aug. 17, 2007 How to link the Data to Google Earth Vector data Vector data Real Time (shape file (shape file data with .prj) with .prj) download from ArcMap from ArcMap Extension Command Line Web Site Export to Python script WMS KML KMZ KML KMZ / KML Google Earth Using GIS Data in Google Earth • Google Earth allows for easy
    [Show full text]
  • Google Map Directions Philippines
    Google Map Directions Philippines Sting wings his babassus desolate prosperously or after after Neale criminating and ripen furthermore, viny and honeyed. Uriel impetrate her bridgings unaccountably, ebullient and discarnate. Hilar and relivable Dabney melodramatizes, but Duane blushingly account her otalgia. Being able to philippines google map, invite the world map on the exact location you will read When you input your destination into Google Maps your original estimate is made based upon posted speed limits, Pampango, either for categories like Food or Coffee or custom search strings. By clicking OK or by using this Website, take a bus, and Photos before. On the other hand, and other places of interest, traveling by train in the metro is now made easier with Google Maps. It should be possible to use a VPN to download offline maps. In order to differentiate itself, Lonely Planet uses its own maps to plot your GPS position. At its foundation Apple Maps is a navigation service that will present you with a user friendly map that only shows what data it needs to at the moment. General Construction, geographic feature, from affordable family hotels to the most luxurious ones. Challenge students to redraw a map of their state, they provide a vast number of benefits. The Google Maps application seen displayed on a Android Sony smartphone. Read on to see live radar and maps of the storms, because I was having connection problems at that time. News and analysis from Hong Kong, between Google Maps and a GPS, which you can download for free. It reveals how nicely you understand this subject.
    [Show full text]
  • School of Geosciences DISSERTATION for the Degree Of
    School of GeoSciences DISSERTATION For the degree of MSc in GIS and Archaeology Student Name: Danielle R Goetz Date: August 2014 Holyrood Park Stone Tools Mobile Application HPST PART I: Research Paper "Copyright of this dissertation is retained by the author and The University of Edinburgh. Ideas contained in this dissertation remain the intellectual property of the author and their supervisors, except where explicitly otherwise referenced. All rights reserved. The use of any part of this dissertation reproduced, transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise or stored in a retrieval system without the prior written consent of the author and The University of Edinburgh (Institute of Geography) is not permitted." "I declare that this dissertation represents my own work, and that where the work of others has been used it has been duly accredited. I further declare that the length of the components of this dissertation is 5,000 words for the Research Paper and 10,000 words for the Technical Report." Signed ____________________ Date _______________________________ “RCAHMS database for Holyrood Park. Includes, Site, Event and Bibliographic records provided in an MS Access database. Site locations, site area extents (extracted from Defining ScotlandsPlaces DSP) and the RCAHMS field survey extent and mapping (collected through dGPS). Non commercial use in accordance with the terms of Licence. RCAHMS data to be used in Android Mobile application as part of the student project. No sale or sales distribution permitted. Joint research project between RCAHMS and University of Edinburgh. Data is Copyright RCAHMS” Acknowledgements This project would not have been possible without the assistance from many wonderful people.
    [Show full text]
  • What Is Google Earth? the Best Thing Is, You Don’T Have to Be a Passive Interesting Locations.” Google Earth Helps Children Visualise and Discover the World Consumer
    travel travel with By Yvonne Eve Walus* Want to take your kids around the world but can’t afford the airfare? Check-in to your nearest computer and let Google Earth take you on an international trip with a difference. “What are you doing?” asked my 9-year old son. l Using the Ruler tool to calculate distances. geo browsers Google Earth is what is known as a geographic browser. I didn’t even look up from my computer screen. Something l Downloading free maths activities for Google Earth from Other examples of geo browsers include NASA’s World was wrong and the programme wasn’t showing me Eiffel www.realworldmath.org/. Wind, ESRI’s ArcGIS Explorer, GeoFusions’ GeoPlayer, and EarthBrowser by Lunar Software. Tower, even though I entered its name into the search box. l Exploring with Street View Oceans: see coral reefs in “Researching Google Earth for a Tots To Teens article. Have Bermuda, sea lions frolicking in the Galapagos sea, google map maker turtles in the Great Barrier Reef and a sunken car you practised your piano?” With Google Map Maker as a tool, you can update your hosting sea life. “Yes, Mummy. Can I show you how Google Earth neighbourhood’s geographic information. Your updates may be visible to the world through Google Maps and actually works?” google earth and Google Earth. That Sunday afternoon I learnt two things. How Google Earth actually works and that sometimes our children already parental involvement YouTube EDU know all the technology stuff we’d like to teach them. “How do you and your classmates use Google Earth?” YouTube EDU allows you to access educational videos such as short lectures, full courses and inspirational I ask my son.
    [Show full text]
  • Google Earth in the Classroom
    Google Earth in the Classroom Created by WestEd for Google Get the tool: http://earth.google.com What is it? Google Earth is a free, downloadable application that works as a browser for all sorts of information on Earth. It uses satellite imagery to grab, spin, pan, tilt and zoom down to any place on Earth. Students can explore every corner of the globe, measure distances, create their own virtual tours, and share their tours with others. You can also create and download layers of information and view them in geographic context. Why use it? Students can use Google Earth to: • study natural and political maps • learn map reading and navigation • visually explore historical, news, and census data • annotate locations and share with others • create their own 3D models to overlay on maps • download geographically-referenced information created by others Instructional Ideas Expert Tip Elementary. Have students explore verified locations where meteors have hit the Earth (http://www.gearthblog.com/ To help you know what is kmfiles/impacts.kmz), then create a chart of the number of possible with Google Earth, craters per continent. download and explore lots of Middle School. Have students explore the 19 annotated virtual tours (KML and KMZ placemarks mentioned in Jules Verne’s “Around the files) before creating your World in 80 Days” (http://bbs.keyhole.com/ubb/download. php?Number=156427). Then have them annotate 19 own tours. different places they would stop if they were traveling around the world. High School. Have students pretend they are with Sir Ernest Shackelton during his adventure in Antarctica.
    [Show full text]
  • Google Earth for Dummies
    01_095287 ffirs.qxp 1/23/07 12:15 PM Page i Google® Earth FOR DUMmIES‰ by David A. Crowder 01_095287 ffirs.qxp 1/23/07 12:15 PM Page iv 01_095287 ffirs.qxp 1/23/07 12:15 PM Page i Google® Earth FOR DUMmIES‰ by David A. Crowder 01_095287 ffirs.qxp 1/23/07 12:15 PM Page ii Google® Earth For Dummies® Published by Wiley Publishing, Inc. 111 River Street Hoboken, NJ 07030-5774 www.wiley.com Copyright © 2007 by Wiley Publishing, Inc., Indianapolis, Indiana Published by Wiley Publishing, Inc., Indianapolis, Indiana Published simultaneously in Canada No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permit- ted under Sections 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600. Requests to the Publisher for permission should be addressed to the Legal Department, Wiley Publishing, Inc., 10475 Crosspoint Blvd., Indianapolis, IN 46256, (317) 572-3447, fax (317) 572-4355, or online at http://www.wiley.com/go/permissions. Trademarks: Wiley, the Wiley Publishing logo, For Dummies, the Dummies Man logo, A Reference for the Rest of Us!, The Dummies Way, Dummies Daily, The Fun and Easy Way, Dummies.com, and related trade dress are trademarks or registered trademarks of John Wiley & Sons, Inc.
    [Show full text]
  • Google Earth 101
    Google Earth 101 A lesson about the basics of the Google Earth program, and how to use it with the REAL storm surge visualization tool. How does Google Earth Display Maps? • Using sets of information called LAYERS http://www.townofbernalillo.org/img/gislayers.jpg Earth view with NO LAYERS selected. (This is a bare map) Earth view with ‘Borders and Labels’ LAYER selected. (This is a map with one layer) In Google Earth, LAYERS are sets of information that you can stack onto your map. Google Earth Basics This is a map of the northern Gulf of Mexico without any layers. Selecting LAYERS by clicking the boxes can let you see sets of information at the same time. They ‘stack’ on top of each other like a set of transparencies. Select the ‘Places’ ‘Roads’ and ‘Weather’ LAYERS and you can read a current weather map using major roads for reference. BUT BE CAREFUL!....... Too many layers = TOO MUCH INFORMATION If too many map layers are turned on, it can make the map unreadable! Be sure to turn on only the layers that you need! Google Earth Basics Turn layers off by clicking the checked boxes. To remove all layers, click the ‘Primary Database’ box. To turn off “Tour Guide” across the bottom of you map, click on the double down arrow just to the left of the title. All ‘Borders and Labels’ layers on All of the sub- layers in the SOME ‘Ocean’ ‘Ocean’ layer are layers on, but turned on and not all visible If a LAYER is marked with a [+] or a ∆, you can expand the selection to see a subset of layers by clicking on the symbol.
    [Show full text]