institute of ambient intelligence 2008, choi, nam-seok, dongseo univ., e-mail :...

29
Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected] o.ac.kr Google Earth & Map API IAI GPS System 2008. 12. 16 Choi, Nam Seok [email protected]

Post on 21-Dec-2015

218 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Earth & Map APIIAI GPS System

2008. 12. 16

Choi, Nam Seok

[email protected]

Page 2: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

2 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Contents Google Earth

Google Map

Google Map API

IAI GPS System

Page 3: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

3 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Earth Google Earth is a virtual globe program that was

originally called Earth Viewer, and was created by Keyhole, Inc. a company acquired by Google in 2004.

It maps the earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe.

The product, renamed Google Earth in 2006.

http://en.wikipedia.org/wiki/Google_earth

Page 4: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

4 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Earth

WorldView I (September, 2007)

Page 5: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

5 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Earth The Worldview I is installed high performance camera,

and it works to capture high resolution image data. The Worldview I can make distinction that 50cm objects. The Worldview I also can gather high resolution map data about 600,000 Km2 a day, that is to take a week works using current system.

Digital Globe plans to launching Worldview II in the end of this year.

Page 6: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

6 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Maps

http://maps.google.com/

Page 7: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

7 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Map Street

http://maps.google.com/help/maps/streetview/

Page 8: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

8 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Map API A variety of service on Google. To see the satellite photographs, To customize the

maps using API. Used to more and more locations

Page 9: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

9 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

How to use The Map API The Google Maps API lets you embed Google Maps in your own

web pages. You must have a Google Account to get a Maps API key, and your API key will be connected to your Google Account. http://www.google.com/apis/maps/signup.html

A Single Maps Key ABQIAAAAaQgR7Z8hPRl5nk0A9grnaRQ7oSCX2ySts8xmWGVDSv16LHU

XxhRfkjrWH0iXzS-p1sXAOSq1vGbCBA

Page 10: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

10 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

How to use The Map API<head><style type="text/css"> @import url("http://www.google.com/uds/css/gsearch.css"); @import url("http://www.google.com/uds/solutions/localsearch/gmlocalsearch.css"); } </style><script src = "http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAaQgR7Z8hPRl5nk0A9grnaRQ7oSCX2ySts8xmWGVDSv16LHUXxhRfkjrWH0iXzS-p1sXAOSq1vGbCBA" type="text/javascript"></script><script src="http://www.google.com/uds/api?file=uds.js&amp;v=1.0" type="text/javascript"></script><script src="http://www.google.com/uds/solutions/localsearch/gmlocalsearch.js" type="text/javascript"></script> <script language = "javascript"><!--

function displayGMap(){

if (GBrowserIsCompatible()) {var divGMap = document.getElementById('gmap');var map = new GMap2(divGMap);map.setCenter(new GLatLng(35.145086,129.007631), 17);map.setMapType(G_SATELLITE_MAP);map.addControl(new GLargeMapControl(2));map.addControl(new GMapTypeControl());map.addControl(new GScaleControl());

// bind a search control to the map, suppress result list map.addControl(new google.maps.LocalSearch(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,20)));

}}GSearch.setOnLoadCallback(displayGMap);

//--></script></head>

<body onload = "displayGMap()" onunload="GUnload()"><center><br><b>The Test Version of Google Map API. - IAI -</b><br><div id="gmap" style = "width:1024px; height:768px;"></div></center></body>

Page 11: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

11 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Map API

http://cgiv.dongseo.ac.kr/map/cgiv_map.html

Page 12: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

12 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google Maps API Google Maps API(Eng.)

http://code.google.com/apis/maps/documentation/index.html Sign Up for the Google Maps API(Eng.)

http://code.google.com/apis/maps/signup.html Maps API Blog(Eng.

http://googlemapsapi.blogspot.com/ newtype’s Blog(Kor.)

http://newtype.pe.kr/category/it/gmap

Page 13: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

13 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI GPS System

Page 14: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

14 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI GPS System

Page 15: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

15 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Experiment

Page 16: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

16 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Experiment ResultSampl

e#Time Latitude

Longitude

Atitude Temp

Ph

F0 FmFv/Fm

12008-11-25

11:0735.1779

77129.2163

134.9 16 8

0.0043

0.063

0.314

22008-11-25

11:1235.1752

17129.2158

35-0.2 16 8

0.041 0.067

0.393

32008-11-25

11:1635.1714

18129.2130

789.1 16 8

0.037 0.054

0.307

42008-11-25

11:2035.1668

65129.2079

6310.8 16 8

0.034 0.05 0.315

52008-11-25

11:2735.1587

83129.2058

950.6 16 8

0.047 0.052

0.09

62008-11-25

11:3135.1557

18129.2014

41.9 16 8

0.037 0.057

0.352

72008-11-25

11:3435.1538

08129.1975

55-2.9 16 8

0.042 0.072

0.416

82008-11-25

11:3935.1528

22129.1917

638 16 8

0.037 0.057

0.353

92008-11-25

11:4635.1528

38129.1811

270.1 16 8

0.035 0.059

0.396

102008-11-25

11:5235.1553

08129.1712

97-19 15.7 8

0.039 0.061

0.356

112008-11-25

11:5535.1561

53129.1665

980.6 15.8 8

0.036 0.053

0.308

122008-11-25

12:0135.1538

15129.1567

327.8 15.7 8

0.036 0.057

0.369

132008-11-25

12:1435.1402

25129.1408

8325.3 16.5 8

0.038 0.062

0.386

142008-11-25

12:3535.1432

87129.1213

357.7 15.7 8

0.042 0.069

0.378

152008-11-25

12:3935.1473

93129.1244

732.2 15.6 8

0.048 0.088

0.454

162008-11-25

12:5635.1589

18129.1406

881.9 14.1 8

0.028 0.034

0.164

Page 17: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

17 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Experiment Result

Page 18: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

18 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI Maps System

IAI DB Server

Page 19: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

19 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI Maps System

Page 20: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

20 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI Maps System

[HTML + JAVA Script + ASP]

Page 21: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

21 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

IAI Maps System

IAI Maps

Page 22: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

22 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Hacking Google Earth Exporting My Tags

The easiest way to generate and share points, routes, and other data within Google Earth is to save the points you found.

Page 23: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

23 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Hacking Google Earth KML / KMZ Files

*.KML / *.KMZ

Page 24: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

24 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google On the Virtools

Page 25: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

25 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google On the Virtools

Page 26: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

26 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google On the Virtools

Page 27: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

27 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google On the Virtools *.KMZ File

*.KML File

Page 28: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

28 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Google On the Virtools

Page 29: Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : sugi@dit.dongseo.ac.kr Google Earth & Map API IAI GPS System 2008. 12

29 Institute of Ambient Intelligence 2008, Choi, Nam-Seok, Dongseo Univ., E-mail : [email protected]

Reference

Hacking Google Maps and Google Earth – Martin C. Brown

Google SketchUp for Dummies – Aidan Chopra