Presentation is loading. Please wait.

Presentation is loading. Please wait.

Incorporating Google Maps and Google Earth into your Remote Sensing Applications J. Freemantle OARS Technical Meeting, Dec 11, 2006.

Similar presentations


Presentation on theme: "Incorporating Google Maps and Google Earth into your Remote Sensing Applications J. Freemantle OARS Technical Meeting, Dec 11, 2006."— Presentation transcript:

1 Incorporating Google Maps and Google Earth into your Remote Sensing Applications J. Freemantle OARS Technical Meeting, Dec 11, 2006

2 Outline Overview of Google Earth Simple examples using keyhole markup language (kml) Using the Google Maps/Earth API Some community examples Questions?

3 Google Earth Client/Server Application Free for basic version Works on Windows (2000/XP), Mac OS 10.3.9, Linux

4

5 Google Earth Overview Satellite and Airborne Imagery 1-3 years old Spatial resolution in countryside < 15 m. Major US cities less than 1-2 feet (20-40 cm). Parts of Manhattan (Fulton Co.) 10 cm!

6 York University

7 Newmarket

8 Low vs high res. data (Aurora)

9 Toronto

10 New York City (20 cm)

11 New York City (10 cm)

12 10 and 20 cm images compared

13 Primary Data (roads etc)

14 Boundary Errors

15 Why Google? Its free!!! Generally up to date Large user community Developer/programmer friendly Easy to learn Platform independent Its cool!

16 Assumptions/Caveats Check the fine print of End User License (EUL) for your situation. Google Earth 4.0 (Beta), free version. Public/Private data? (choose wisely).

17 Simple Examples using KML Point Pictures Tracks Overlays Links to external data

18 Warning Code Examples!

19 Keyhole Markup Language (kml) Xml grammar and file format for describing geographic features in google earth/maps Points Lines Polygons Models links

20 Keyhole Markup Language (KML) KML files can be shared. KMZ files are a compressed version of KML files. Google Earth processes kml files like web browsers process html files.

21 Kml example: Simple point OARS Meeting Presented by Jim Freemantle Dec 11, 2006 7:00 pm Room 129 Chemistry Building, York University, Toronto. ]]> -79.508,43.773225,0

22 Simple Point

23

24 Simple point, with link OARS Meeting details http://www.oars.on.ca ]]> -79.508,43.773225,0

25 Simple point with link

26 Simple point, with image OARS Meeting details http://www.oars.on.ca ]]> -79.508,43.773225,0

27 Simple point with image

28 Track t0490f13 t0490f13 ]]> -68.8911,48.79734,2470.74 -68.8947,48.79449,2471.35 -68.9127, 48.78028,2466.96,-68.9164,48.77747,2469.82

29 Track

30

31 GeoTagging

32 Requirements GPS device Camera with EXIF format jpg files and internal clock Software to sync gps track with time of photo Software to create google earth file (.kml)

33 GeoTagging GPS Devices Used Sony GPS-SC1 ($129.00) Garmin Forerunner 201 Runners GPS ($159.00)

34 GeoTagging Software Used GPSBabel (NMEA to GPX) GPS Image Tracker (Sony) (Not required) iTag

35 GeoTagging

36

37

38 Overlays Getting your georeferenced data into Google Earth Need georeferenced data Manually imported, as a jpg image, and matched to Google Earth

39 Overlays

40

41 Links Images External websites via url Databases

42 Track with link t0489f06 t0489f06 Link to Flight Log ]]> -68.8911,48.79734,2470.74 -68.8947,48.79449,2471.35 -68.9127, 48.78028,2466.96,-68.9164,48.77747,2469.82

43 Track with link

44 Point with link Waskesiu <![CDATA[Aeronet Sites Worldwide <a href="http://aeronet.gsfc.nasa.gov/cgi-bin/ type_one_station_opera_v2_new?site=Waskesiu&nachal=2&aero_water=0&level=1 &if_day=0&year_or_month=0">Link to Waskesiu data ]]> -106.083,53.916698,550

45 Point with Link

46 Google Earth/Map Application Programmer Interface (API) Sign up for your key Can be used only on requested web accessible directory eg. http://www.example.com/gmaps http://www.example.com/gmaps Receive example script and put it in that directory Build Google Map applications from there

47 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Jim's Google Maps JavaScript API Example from M. Brown <script src="http://maps.google.com/maps?file=api&v=2&key=xxx" type="text/javascript"> //<![CDATA[ var largemapcontrol = new GLargeMapControl(); function load() { if (GBrowserIsCompatible()) { var map = new GMap(document.getElementById("map")); GEvent.addListener(map,'click',function(overlay,point) { var latLngStr = '(' + point.x + ', '+ point.y + ') '; var message = document.getElementById("message"); message.innerHTML = latLngStr; }); map.centerAndZoom(new GPoint(-79.505, 43.77382), 4); map.addControl(largemapcontrol); } //]]>

48 Google Map API

49 Google Earth API Link to dynamically generated kml No API key required See http://earth.google.com/kml/kml_tut.ht ml#tracking_point

50 Google Earth Example <?php // get the time $timesnap = date("H:i:s"); $BOX=$_GET[BBOX]; // split the client's BBOX return by commas and spaces to obtain an array of coordinates $coords = preg_split('/,|\s/', $BOX); // for clarity, place each coordinate into a clearly marked bottom_left or top_right variable $bl_lon = $coords[0]; $bl_lat = $coords[1]; $tr_lon = $coords[2]; $tr_lat = $coords[3]; // calculate the approx center of the view -- note that this is innaccurate if the user is not looking straight down $userlon = (($coords[2] - $coords[0])/2) + $coords[0]; $userlat = (($coords[3] - $coords[1])/2) + $coords[1]; $response = ' '; $response.= ' '; $response.= ' '.$timesnap.' '; $response.= ' '; $response.= " $userlon,$userlat,0 "; $response.= ' '; echo $response; ?>

51

52

53 Examples from the Community Mashups

54

55

56

57

58

59

60

61

62 Acknowledgements Data providers J. Miller (York U), A. Smith (Agr. Canada) Colleagues I. Lumb, L. Gray

63 Resources http://earth.google.com http://maps.google.com http://www.oars.on.ca Hacking Google Maps and Google Earth by Martin C. Brown Check back on the OARS website for a copy of these slides and list url of useful links

64 Resources Interesting links GeoTagging "adding location information to pictures" http://www.iceburnslair.com/mapper/ http://wwmx.org/Download.aspx http://www.oziphototool.com// http://www.gpsbabel.org/ http://itagsoftware.awswa.com/ Interesting discussion at Canadian Canoe Routes on this topic: http://www.myccr.com/SectionForums/viewtopic.php?p=183038 Mashups: http://www.beerhunter.ca/OttawaArea http://googlemapsmania.blogspot.com/

65 Questions?


Download ppt "Incorporating Google Maps and Google Earth into your Remote Sensing Applications J. Freemantle OARS Technical Meeting, Dec 11, 2006."

Similar presentations


Ads by Google