SlideShare a Scribd company logo
1 of 8
Download to read offline
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
DOI : 10.5121/ijdps.2010.1201 1
THE INTERACTIVE ZOOOZ GUIDE
Thang Nguyen and Hao Shi
School of Engineering and Science, Victoria University
Melbourne, Australia
john@dmcg.com.au and hao.shi@vu.edu.au
ABSTRACT
GPS (Global Positioning System) technology is widely known for its ability to track down devices in real
time. Combined with mobile phones, it has become a very powerful tool with a great potential for future
development of mobile GPS applications. The Interactive ZooOz Guide was a final year industry project
carried out by seven students from three separate courses to tackle a project that involves upgrading the
Melbourne Zoo’s mapping system through the use of GPS technology. The aim of the project is to explore
the potential capability of using GPS in the Zoo environment. The proposed system uses a PDA device
with a GPS receiver that tracks users’ location in real time as they are touring around the Zoo. In this
paper, an insight into GPS technology is briefly reviewed and the design and implementation of
“Interactive ZooOZ Guide” is described. Then GUI (Graphical User Interface) is presented in detail.
Finally conclusion is drawn from the “proof of concept” prototype.
KEYWORDS
Industry Projects, Global Positioning System (GPS), PDA (Personal Digital Assistant), Interactive Zoo
Guide
1. INTRODUCTION
Global Positioning System is a satellite based technology where each satellite broadcasts a
signal from space to be read by a GPS receiver to calculate the three-dimensional location
(latitude, longitude and altitude) of a person carrying the receiver [1]. The transmitted data is
normally translated to an electronic mapping system that regularly updates as the user moves.
GPS was originally designed for military application up until the early 1980s when a civilian
airline strayed into prohibited airspace and consequently shot down killing all the passengers
onboard. Since the incident, the U.S. government announced that GPS would be available for
civilian use but restricted to a weaker signal. But in 2000, they quashed the restriction realizing
the benefits for civilian use and gave way to a new era in GPS technology [1].
Soon after, mobile phone technology became 3rd generation, which meant the devices were able
to handle vast amounts of data transmission and utilize features such as the Internet, digital
camera and video conferencing. Since 2004, we were able to use GPS technology on mobile
devices but it is still under development as it is only available to phones with a GPS receiver
and more practical to phones with a larger screen [2].
2. THE INTERACTIVE ZOOOZ GUIDE
The aim of the Interactive ZooOz guide was to overcome the difficulties of navigating through
Melbourne Zoo by using existing technology [3, 4]. It was developed as a “proof of concept” to
explore the potential limitations of using GPS in such an environment.
The developed ZooOz system was programmed using C Sharp .NET with an external GPS
library and was deployed to a Personal Digital Assistant (PDA). The system shown in Figure 1
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
2
begins with the PDA communicating with the GPS receiver assuming that it is on. The ZooOz
application from the PDA sends a request query to the receiver in frequent intervals (via
Bluetooth) while the receiver is constantly feeding on signal information sent out by GPS
satellites. When the receiver reads the first pair of coordinates, it sends the information back to
the application to be translated to decimal latitude and longitude values as illustrated in Figure
1.
Figure 1. The Interactive ZooOz guide – Information Flow [3]
3. SYSTEM OVERVIEW
The system consists of three key components as illustrated in Figure 2:
• PDA device supporting the main program
• A GPS receiver
• A relational database
The GPS receiver is connected to the PDA via Bluetooth. The system allows its users to check
their connectivity with the GPS receiver and then provides the current location, i.e. longitude
and latitude of the PDA device. Once the main program is started the program activates the
connection to the GPS Device. After the connection is established with the GPS satellites, it
displays main menus from a relational database and executes the commands according to the
users’ requests.
Figure 2. System overview [5]
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
3
The use case diagram below shows functions which users can interact with once the map
interface is presented. The actor in Figure 3 is presented using a stick figure people and the
functions are presented in an oval.
Points of Interest
Select Tour
Check Connection
Show Co-ordinates Update Co-ordinates
Close
Search
Events
User
Zoom In/Out
<<extend>>
<<include>>
Figure 3. Use Case diagram [5]
4. DESIGN AND IMPLEMENTATION
Also some basic configuration between the PDA and GPS receiver must be set up. First is
making sure that all devices are discoverable by the PDA by turning on the Bluetooth setting.
Then through the connection settings a partnership must be made between the PDA and GPS
receiver. The GPS receiver will connect to an open communication port specified by the PDA
[6].
4.1 Development Tools
For testing and development, the following tools were used:
• Microsoft Visual C# .Net
• External Dynamic Link Library (DLL) called Franson GPSGate
• ActiveSync (for Testing)
• PhotoShop (image manipulation)
• SprintDB Pro
4.2 System Setup
Prior to running, a few software packages have to be installed on the PDA for it to function.
• Windows Mobile 2003 2nd
Edition
• Macromedia Flash Player 7 for Pocket PC
• SprintDB Pro 3.1
• SprintDB Pro Desktop Companion 2.1
Check Check
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
4
4.3 Development
The main program has two procedures. In the Form_Load procedure, the application tries to
find the communication port holding the GPS receiver. Once it is found, it automatically
connects to the receiver.
Figure 4. Code – Connecting to the GPS receiver [5]
The next procedure called GPSToolKit_PositionUpdate runs in an endless loop to simulate real
time readings. In every loop, the application sends a request for information from the GPS
receiver. When a valid position is read, the latitude and longitude are printed and then used to
determine the position of the cursor on the map. If a valid position is not read, it will simply
display a No Latitude/Longitude message but will remain connected to the GPS receiver.
Figure 5. Code – Reading and updating coordinates [5]
When the coordinates are updated, they are checked if they fall within a range of 5 metres
(coordinate metres ≈ 0.00025) of a particular zone. If the condition is successful, the system
gives a new location of the cursor image to be placed on the map.
private void Form_Load(object sender, EventArgs
e) {
if (myGPSToolKit.IsPortOpen == false) {
myGPSToolKit.AutoDetectGPS();
}
else {
myGPSToolKit.Close();
}
}
private void myGPSToolKit_PositionUpdate(object sender,
SciCom.GPSToolKit.PositionUpdateEventArgs e)
{
// If a valid position is read
if (e.Position.IsValid == true){
// Get latitude and longitude by declaring their variables
Latitude lat = e.Position.Latitude;
Longitude lon = e.Position.Longitude;
// Convert latitude and longitude into readable data.
double x;
double y;
x = lat.ValueInDegrees;
y = lon.ValueInDegrees;
// Print coordinates
lblLat.Text = "Latitude: " + x + " S";
lblLon.Text = "Longitude: " + y + " E";
// If the coordinates read between these ranges,
//then draw a new location for the cursor.
if (((x > -37.79252) & (x < -37.79227)) & ((y > 144.89822) & (y < 144.89847)))
{
this.pbCursor.Location =
new System.Drawing.Point(this.pbMap.Location.X + 136, this.pbMap.Location.Y
+ 324);
}
}
// If a pair of coordinates cannot be read, display the error message.
else {
lblLat.Text = "Lat: No Latitude Data";
lblLon.Text = "Lon: No Longitude Data";
}
}
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
5
5. GRAPHICAL USER INTERFACE DESIGN
The ZooOz guide allows a user to interact with the system through the PDA’s touch technology.
With the touch screen users are able to browse through menus, view hot spots and play games.
But the main features of the application are the interactive map and the points of interest (hot
spots). The interactive map (Figure 4) is a regular JPEG image derived from a CAD (Computer
Aided Design) image of the zoo. Layering on top of the map is a cursor that only moves when a
range condition is satisfied.
Figure 6. Zoo map [5]
A hot spot is activated when the cursor and itself meets. The red mark will animate to bring the
user’s attention to the hot spot. Each hot spot corresponds to a particular animal which will
display information of that animal when pressed. Cursor change works in conjunction with GPS
readings. At present, the cursor simply jumps from one spot to another using area zones that are
triggered when the GPS coordinates fall within the range of those zones. To simulate constant
movement, the cursor change in X and Y would have to be calculated with the change in
longitude and latitude. Readings that had 5 or more decimal places were changing erratically
when the GPS receiver was in a stationary position. That data was unusable for the application.
But there was a consistent change of 0.0001 latitude/longitude unit (4-decimal points) for every
2 metres moved, which was used instead. Fifteen pairs of GPS data was collected and
repeatedly tested within the zoo environment for consistency, but due to the small working area
and interference by tall flora and weather, the results varied.
5.1. Startup Screen
The startup screen is incorporated the Melbourne Zoo’s logo and features a leopard at the
background to represent the ‘Big Cats’ as shown in Figure 7. Once the startup screen
disappears, the program identifies the COM port number of the GPS Bluetooth device,
establishes the communications with the GPS satellites via the GPS receiver as shown in Figure
8, and displays the main screen.
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
6
Figure 7. Startup screen [5] Figure 8. Connection screen [5]
5.2 Menu Screen and Submenu Screens
There are two functionalities available: Menu and Zoom, which can be seen from the main
screen in Figure 9. Once the menu is clicked, it shows the six submenus as illustrated in Figure
10. Then the user can select one of the six options from Check Connection, Show Coordinates,
Tour Guide, Search, Events (timetable) and Close.
Figure 9. Menu screen [5] Figure 10. Coordinates screen [5]
Figure 11. Tour guide screen
[5]
The first two submenus are associated with GPS configuration/setting and users can check GPS
connection via the connection screen as shown in Figure 12 or sees the display of latitude and
longitude on the screen as shown in Figure 13. The tour guide contents are created by the
multimedia students. The user can select each individual tour as shown in Figure 14 and watch
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
7
the video and/or listen to the audio related to the tour. The tour map is developed by the
computer science students. The track of each tour can be displayed on the screen to give the
users a clear idea where the tour starts and ends. The search submenu is designed to provide its
users the location information such as the distance and direction at the current position. This
search facility allows the users to search for locations of importance within the Zoo, e.g. the
closest toilet or the quickest way to get to the cafeteria. The events submenu as shown in Figure
11 offers the latest timetable for special activities on the day. The exit screen allows the users to
exit the program after conformation as shown in Figure 14.
Figure 12. Search Screen [5] Figure 13. Events Screen [5] Figure 14. Exit Screen [5]
6. CONCLUSIONS
The ZooOz system proved to work despite minor technical problems and manages to achieve
the ease of navigation around the ‘Big Cats’ section of the Melbourne Zoo. However, many
areas within Melbourne Zoo are sheltered by trees and structures which make it hard to obtain
accurate results when signals are easily obstructed by them. An ideal solution would be to use
localized sensory points attached in every animal section via BlueTooth that feed the device
information as the user approaches. This way the zoo has control of the signalling power as well
as the content that is presented to the user.
According to Richard Langley, a GPS expert and a professor of geomatics at the University of
New Brunswick, there is another GPS-like solution that is currently being worked on called
“Assisted GPS” where the phone network can aid in determining an accurate location, even in
areas without a clear view of the sky. The intention is to get GPS working indoors as well as it
does outdoors by using antenna technology [7]. Rapid development in mobile technology in
recent years has allowed GPS to work freely on mobile phones. An example of this is the Apple
iPhone and the “Maps” application where you can get directions to a particular location by
inputting the start and end location of your journey and track your progress via GPS [8].
International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010
8
ACKNOWLEDGEMENTS
The authors would like to thank our industry partner, Rick Hammond from the Melbourne Zoo,
Megan Chudleigh, Associate Professor Jordan Shan, Luke Low, Dr. Donna Dwyer and for their
collaboration. Special thanks go to our students, who contributed to this project, Steven
Manceski his contribution to coding and database design, Stephanie Wulf , Vanessa Jalovec and
Jaesel Magallanes for the multimedia content, George Fotinos and Travis Mollica for their
involvement on the business end of the project. This project was funded by the Teaching and
Learning Support (TLS) grants from Victoria University.
REFERENCES
[1] Global Positioning System, http://en.wikipedia.org/wiki/Global_Positioning_System
[2] History of Mobile Phones, http://en.wikipedia.org/wiki/History_of_mobile_phones
[3] H. Shi, “An Interactive Zoo Guide:A Case Study of Collaborative Learning”, The International
Journal of Multimedia & Its Applications (IJMA), Vol. 2, No. 2, May 2010, pp. 57-67.
[4] The Interactive ZooOz Guide – Project History – Final Year Industry Project,
http://thangcao.brinkster.net/zoooz.asp
[5] T. Nguyen and S. Manceski, The Interactive ZooOz Guide, 2007 Final-Year Design Project
Report, School of Computer Science and Mathematics, Victoria University, Melbourne,
Australia.
[6] Bluetooth Settings for Windows Mobile 5.0 Pocket PC,
http://www.mypocketpcmobile.com/BluetoothSettingsonWM50/tabid/146/Default.aspx
[7] Mapping out the future of GPS,
http://www.thestar.com/news/sciencetech/technology/article/813598--mapping-out-the-future-
of-gps
[8] Apple - iPhone - Get directions with GPS maps and a new compass,
http://www.apple.com/au/iphone/iphone-3gs/maps-compass.html
Author
Thang Nguyen obtained his Bachelor of Science in Computer Science
from School of Engineering and Science, Victoria University, Melbourne,
Australia in 2008. He completed the Interactive ZooOz Guide project
under supervision of Dr. Hao Shi in 2007. He has mastered several
program languages including ASP .NET, PHP, C#, C++, PHP, Java and
SQL. Thang is currently working as a Web Programmer at DMC group,
Melbourne, Australia.
Dr. Hao Shi is an Associate Professor in the School of Engineering and
Science at Victoria University, Australia. She completed her PhD in the
area of Computer Engineering at the University of Wollongong and
obtained her Bachelor of Engineering degree from Shanghai Jiao Tong
University, China. She has been actively engaged in R&D and external
consultancy activities. Her research interests include p2p Networks,
Location-Based Services, Web Services, Computer/Robotics Vision, e-
Health, Internet and Multimedia Technologies

More Related Content

What's hot

Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...
Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...
Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...ijsrd.com
 
satellite image processing
satellite image processingsatellite image processing
satellite image processingavhadlaxmikant
 
Geoscience satellite image processing
Geoscience satellite image processingGeoscience satellite image processing
Geoscience satellite image processinggaurav jain
 
IRJET - Underwater Object Identification using Matlab and Machine
IRJET - Underwater Object Identification using Matlab and MachineIRJET - Underwater Object Identification using Matlab and Machine
IRJET - Underwater Object Identification using Matlab and MachineIRJET Journal
 
RADAR Image Fusion Using Wavelet Transform
RADAR Image Fusion Using Wavelet TransformRADAR Image Fusion Using Wavelet Transform
RADAR Image Fusion Using Wavelet TransformINFOGAIN PUBLICATION
 
High Dynamic Range Imaging- A Review
High Dynamic Range Imaging- A ReviewHigh Dynamic Range Imaging- A Review
High Dynamic Range Imaging- A ReviewCSCJournals
 
Depth Estimation from Defocused Images: a Survey
Depth Estimation from Defocused Images: a SurveyDepth Estimation from Defocused Images: a Survey
Depth Estimation from Defocused Images: a SurveyIJAAS Team
 
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...Minh Quan Nguyen
 

What's hot (13)

2007-_01-3912
2007-_01-39122007-_01-3912
2007-_01-3912
 
Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...
Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...
Depth of Field Image Segmentation Using Saliency Map and Energy Mapping Techn...
 
satellite image processing
satellite image processingsatellite image processing
satellite image processing
 
H05844346
H05844346H05844346
H05844346
 
Geoscience satellite image processing
Geoscience satellite image processingGeoscience satellite image processing
Geoscience satellite image processing
 
report
reportreport
report
 
Di4201734736
Di4201734736Di4201734736
Di4201734736
 
IRJET - Underwater Object Identification using Matlab and Machine
IRJET - Underwater Object Identification using Matlab and MachineIRJET - Underwater Object Identification using Matlab and Machine
IRJET - Underwater Object Identification using Matlab and Machine
 
Fd36957962
Fd36957962Fd36957962
Fd36957962
 
RADAR Image Fusion Using Wavelet Transform
RADAR Image Fusion Using Wavelet TransformRADAR Image Fusion Using Wavelet Transform
RADAR Image Fusion Using Wavelet Transform
 
High Dynamic Range Imaging- A Review
High Dynamic Range Imaging- A ReviewHigh Dynamic Range Imaging- A Review
High Dynamic Range Imaging- A Review
 
Depth Estimation from Defocused Images: a Survey
Depth Estimation from Defocused Images: a SurveyDepth Estimation from Defocused Images: a Survey
Depth Estimation from Defocused Images: a Survey
 
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...
LocalizationandMappingforAutonomousNavigationin OutdoorTerrains: A StereoVisi...
 

Similar to THE INTERACTIVE ZOOOZ GUIDE

Geo location based augmented reality application
Geo location based augmented reality applicationGeo location based augmented reality application
Geo location based augmented reality applicationeSAT Journals
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
Iaetsd location-based services using autonomous gps
Iaetsd location-based services using autonomous gpsIaetsd location-based services using autonomous gps
Iaetsd location-based services using autonomous gpsIaetsd Iaetsd
 
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...Ibrahim Özgön
 
Rakshak – The Death Beater
Rakshak – The Death BeaterRakshak – The Death Beater
Rakshak – The Death BeaterAI Publications
 
A real time filtering method of positioning data with moving window mechanism
A real time filtering method of positioning data with moving window mechanismA real time filtering method of positioning data with moving window mechanism
A real time filtering method of positioning data with moving window mechanismAlexander Decker
 
Gps enabled android application for bus
Gps enabled android application for busGps enabled android application for bus
Gps enabled android application for buseSAT Publishing House
 
IRJET - Wearable Location Tracker During Disaster
IRJET -  	  Wearable Location Tracker During DisasterIRJET -  	  Wearable Location Tracker During Disaster
IRJET - Wearable Location Tracker During DisasterIRJET Journal
 
Project presentation2
Project presentation2Project presentation2
Project presentation2Pastecs Tec
 
Implementation of Geo-fencing to monitor a specific target using Point in Pol...
Implementation of Geo-fencing to monitor a specific target using Point in Pol...Implementation of Geo-fencing to monitor a specific target using Point in Pol...
Implementation of Geo-fencing to monitor a specific target using Point in Pol...IRJET Journal
 
13 9246 it implementation of cloud connected (edit ari)
13 9246 it implementation of cloud connected (edit ari)13 9246 it implementation of cloud connected (edit ari)
13 9246 it implementation of cloud connected (edit ari)IAESIJEECS
 
An ar core based augmented reality campus navigation system
An ar core based augmented reality campus navigation systemAn ar core based augmented reality campus navigation system
An ar core based augmented reality campus navigation systemYangChang12
 
Project presentation3
Project presentation3Project presentation3
Project presentation3Pastecs Tec
 
Global positioning system (GPS)
Global positioning system (GPS)Global positioning system (GPS)
Global positioning system (GPS)Gautham Reddy
 

Similar to THE INTERACTIVE ZOOOZ GUIDE (20)

[IJET-V1I3P1] Authors :Sayli Nikumbh,Suchal Gujarathi,Shubham Pawar,S.P.Pingat
[IJET-V1I3P1] Authors :Sayli Nikumbh,Suchal Gujarathi,Shubham Pawar,S.P.Pingat[IJET-V1I3P1] Authors :Sayli Nikumbh,Suchal Gujarathi,Shubham Pawar,S.P.Pingat
[IJET-V1I3P1] Authors :Sayli Nikumbh,Suchal Gujarathi,Shubham Pawar,S.P.Pingat
 
Geo location based augmented reality application
Geo location based augmented reality applicationGeo location based augmented reality application
Geo location based augmented reality application
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
Iaetsd location-based services using autonomous gps
Iaetsd location-based services using autonomous gpsIaetsd location-based services using autonomous gps
Iaetsd location-based services using autonomous gps
 
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
 
E045032833
E045032833E045032833
E045032833
 
Smart navigation system book
Smart navigation system bookSmart navigation system book
Smart navigation system book
 
Mobile GPS Tracking
Mobile GPS TrackingMobile GPS Tracking
Mobile GPS Tracking
 
50120140501008
5012014050100850120140501008
50120140501008
 
Rakshak – The Death Beater
Rakshak – The Death BeaterRakshak – The Death Beater
Rakshak – The Death Beater
 
50120140501008
5012014050100850120140501008
50120140501008
 
A real time filtering method of positioning data with moving window mechanism
A real time filtering method of positioning data with moving window mechanismA real time filtering method of positioning data with moving window mechanism
A real time filtering method of positioning data with moving window mechanism
 
Gps enabled android application for bus
Gps enabled android application for busGps enabled android application for bus
Gps enabled android application for bus
 
IRJET - Wearable Location Tracker During Disaster
IRJET -  	  Wearable Location Tracker During DisasterIRJET -  	  Wearable Location Tracker During Disaster
IRJET - Wearable Location Tracker During Disaster
 
Project presentation2
Project presentation2Project presentation2
Project presentation2
 
Implementation of Geo-fencing to monitor a specific target using Point in Pol...
Implementation of Geo-fencing to monitor a specific target using Point in Pol...Implementation of Geo-fencing to monitor a specific target using Point in Pol...
Implementation of Geo-fencing to monitor a specific target using Point in Pol...
 
13 9246 it implementation of cloud connected (edit ari)
13 9246 it implementation of cloud connected (edit ari)13 9246 it implementation of cloud connected (edit ari)
13 9246 it implementation of cloud connected (edit ari)
 
An ar core based augmented reality campus navigation system
An ar core based augmented reality campus navigation systemAn ar core based augmented reality campus navigation system
An ar core based augmented reality campus navigation system
 
Project presentation3
Project presentation3Project presentation3
Project presentation3
 
Global positioning system (GPS)
Global positioning system (GPS)Global positioning system (GPS)
Global positioning system (GPS)
 

Recently uploaded

Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 

Recently uploaded (20)

Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 

THE INTERACTIVE ZOOOZ GUIDE

  • 1. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 DOI : 10.5121/ijdps.2010.1201 1 THE INTERACTIVE ZOOOZ GUIDE Thang Nguyen and Hao Shi School of Engineering and Science, Victoria University Melbourne, Australia john@dmcg.com.au and hao.shi@vu.edu.au ABSTRACT GPS (Global Positioning System) technology is widely known for its ability to track down devices in real time. Combined with mobile phones, it has become a very powerful tool with a great potential for future development of mobile GPS applications. The Interactive ZooOz Guide was a final year industry project carried out by seven students from three separate courses to tackle a project that involves upgrading the Melbourne Zoo’s mapping system through the use of GPS technology. The aim of the project is to explore the potential capability of using GPS in the Zoo environment. The proposed system uses a PDA device with a GPS receiver that tracks users’ location in real time as they are touring around the Zoo. In this paper, an insight into GPS technology is briefly reviewed and the design and implementation of “Interactive ZooOZ Guide” is described. Then GUI (Graphical User Interface) is presented in detail. Finally conclusion is drawn from the “proof of concept” prototype. KEYWORDS Industry Projects, Global Positioning System (GPS), PDA (Personal Digital Assistant), Interactive Zoo Guide 1. INTRODUCTION Global Positioning System is a satellite based technology where each satellite broadcasts a signal from space to be read by a GPS receiver to calculate the three-dimensional location (latitude, longitude and altitude) of a person carrying the receiver [1]. The transmitted data is normally translated to an electronic mapping system that regularly updates as the user moves. GPS was originally designed for military application up until the early 1980s when a civilian airline strayed into prohibited airspace and consequently shot down killing all the passengers onboard. Since the incident, the U.S. government announced that GPS would be available for civilian use but restricted to a weaker signal. But in 2000, they quashed the restriction realizing the benefits for civilian use and gave way to a new era in GPS technology [1]. Soon after, mobile phone technology became 3rd generation, which meant the devices were able to handle vast amounts of data transmission and utilize features such as the Internet, digital camera and video conferencing. Since 2004, we were able to use GPS technology on mobile devices but it is still under development as it is only available to phones with a GPS receiver and more practical to phones with a larger screen [2]. 2. THE INTERACTIVE ZOOOZ GUIDE The aim of the Interactive ZooOz guide was to overcome the difficulties of navigating through Melbourne Zoo by using existing technology [3, 4]. It was developed as a “proof of concept” to explore the potential limitations of using GPS in such an environment. The developed ZooOz system was programmed using C Sharp .NET with an external GPS library and was deployed to a Personal Digital Assistant (PDA). The system shown in Figure 1
  • 2. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 2 begins with the PDA communicating with the GPS receiver assuming that it is on. The ZooOz application from the PDA sends a request query to the receiver in frequent intervals (via Bluetooth) while the receiver is constantly feeding on signal information sent out by GPS satellites. When the receiver reads the first pair of coordinates, it sends the information back to the application to be translated to decimal latitude and longitude values as illustrated in Figure 1. Figure 1. The Interactive ZooOz guide – Information Flow [3] 3. SYSTEM OVERVIEW The system consists of three key components as illustrated in Figure 2: • PDA device supporting the main program • A GPS receiver • A relational database The GPS receiver is connected to the PDA via Bluetooth. The system allows its users to check their connectivity with the GPS receiver and then provides the current location, i.e. longitude and latitude of the PDA device. Once the main program is started the program activates the connection to the GPS Device. After the connection is established with the GPS satellites, it displays main menus from a relational database and executes the commands according to the users’ requests. Figure 2. System overview [5]
  • 3. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 3 The use case diagram below shows functions which users can interact with once the map interface is presented. The actor in Figure 3 is presented using a stick figure people and the functions are presented in an oval. Points of Interest Select Tour Check Connection Show Co-ordinates Update Co-ordinates Close Search Events User Zoom In/Out <<extend>> <<include>> Figure 3. Use Case diagram [5] 4. DESIGN AND IMPLEMENTATION Also some basic configuration between the PDA and GPS receiver must be set up. First is making sure that all devices are discoverable by the PDA by turning on the Bluetooth setting. Then through the connection settings a partnership must be made between the PDA and GPS receiver. The GPS receiver will connect to an open communication port specified by the PDA [6]. 4.1 Development Tools For testing and development, the following tools were used: • Microsoft Visual C# .Net • External Dynamic Link Library (DLL) called Franson GPSGate • ActiveSync (for Testing) • PhotoShop (image manipulation) • SprintDB Pro 4.2 System Setup Prior to running, a few software packages have to be installed on the PDA for it to function. • Windows Mobile 2003 2nd Edition • Macromedia Flash Player 7 for Pocket PC • SprintDB Pro 3.1 • SprintDB Pro Desktop Companion 2.1 Check Check
  • 4. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 4 4.3 Development The main program has two procedures. In the Form_Load procedure, the application tries to find the communication port holding the GPS receiver. Once it is found, it automatically connects to the receiver. Figure 4. Code – Connecting to the GPS receiver [5] The next procedure called GPSToolKit_PositionUpdate runs in an endless loop to simulate real time readings. In every loop, the application sends a request for information from the GPS receiver. When a valid position is read, the latitude and longitude are printed and then used to determine the position of the cursor on the map. If a valid position is not read, it will simply display a No Latitude/Longitude message but will remain connected to the GPS receiver. Figure 5. Code – Reading and updating coordinates [5] When the coordinates are updated, they are checked if they fall within a range of 5 metres (coordinate metres ≈ 0.00025) of a particular zone. If the condition is successful, the system gives a new location of the cursor image to be placed on the map. private void Form_Load(object sender, EventArgs e) { if (myGPSToolKit.IsPortOpen == false) { myGPSToolKit.AutoDetectGPS(); } else { myGPSToolKit.Close(); } } private void myGPSToolKit_PositionUpdate(object sender, SciCom.GPSToolKit.PositionUpdateEventArgs e) { // If a valid position is read if (e.Position.IsValid == true){ // Get latitude and longitude by declaring their variables Latitude lat = e.Position.Latitude; Longitude lon = e.Position.Longitude; // Convert latitude and longitude into readable data. double x; double y; x = lat.ValueInDegrees; y = lon.ValueInDegrees; // Print coordinates lblLat.Text = "Latitude: " + x + " S"; lblLon.Text = "Longitude: " + y + " E"; // If the coordinates read between these ranges, //then draw a new location for the cursor. if (((x > -37.79252) & (x < -37.79227)) & ((y > 144.89822) & (y < 144.89847))) { this.pbCursor.Location = new System.Drawing.Point(this.pbMap.Location.X + 136, this.pbMap.Location.Y + 324); } } // If a pair of coordinates cannot be read, display the error message. else { lblLat.Text = "Lat: No Latitude Data"; lblLon.Text = "Lon: No Longitude Data"; } }
  • 5. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 5 5. GRAPHICAL USER INTERFACE DESIGN The ZooOz guide allows a user to interact with the system through the PDA’s touch technology. With the touch screen users are able to browse through menus, view hot spots and play games. But the main features of the application are the interactive map and the points of interest (hot spots). The interactive map (Figure 4) is a regular JPEG image derived from a CAD (Computer Aided Design) image of the zoo. Layering on top of the map is a cursor that only moves when a range condition is satisfied. Figure 6. Zoo map [5] A hot spot is activated when the cursor and itself meets. The red mark will animate to bring the user’s attention to the hot spot. Each hot spot corresponds to a particular animal which will display information of that animal when pressed. Cursor change works in conjunction with GPS readings. At present, the cursor simply jumps from one spot to another using area zones that are triggered when the GPS coordinates fall within the range of those zones. To simulate constant movement, the cursor change in X and Y would have to be calculated with the change in longitude and latitude. Readings that had 5 or more decimal places were changing erratically when the GPS receiver was in a stationary position. That data was unusable for the application. But there was a consistent change of 0.0001 latitude/longitude unit (4-decimal points) for every 2 metres moved, which was used instead. Fifteen pairs of GPS data was collected and repeatedly tested within the zoo environment for consistency, but due to the small working area and interference by tall flora and weather, the results varied. 5.1. Startup Screen The startup screen is incorporated the Melbourne Zoo’s logo and features a leopard at the background to represent the ‘Big Cats’ as shown in Figure 7. Once the startup screen disappears, the program identifies the COM port number of the GPS Bluetooth device, establishes the communications with the GPS satellites via the GPS receiver as shown in Figure 8, and displays the main screen.
  • 6. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 6 Figure 7. Startup screen [5] Figure 8. Connection screen [5] 5.2 Menu Screen and Submenu Screens There are two functionalities available: Menu and Zoom, which can be seen from the main screen in Figure 9. Once the menu is clicked, it shows the six submenus as illustrated in Figure 10. Then the user can select one of the six options from Check Connection, Show Coordinates, Tour Guide, Search, Events (timetable) and Close. Figure 9. Menu screen [5] Figure 10. Coordinates screen [5] Figure 11. Tour guide screen [5] The first two submenus are associated with GPS configuration/setting and users can check GPS connection via the connection screen as shown in Figure 12 or sees the display of latitude and longitude on the screen as shown in Figure 13. The tour guide contents are created by the multimedia students. The user can select each individual tour as shown in Figure 14 and watch
  • 7. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 7 the video and/or listen to the audio related to the tour. The tour map is developed by the computer science students. The track of each tour can be displayed on the screen to give the users a clear idea where the tour starts and ends. The search submenu is designed to provide its users the location information such as the distance and direction at the current position. This search facility allows the users to search for locations of importance within the Zoo, e.g. the closest toilet or the quickest way to get to the cafeteria. The events submenu as shown in Figure 11 offers the latest timetable for special activities on the day. The exit screen allows the users to exit the program after conformation as shown in Figure 14. Figure 12. Search Screen [5] Figure 13. Events Screen [5] Figure 14. Exit Screen [5] 6. CONCLUSIONS The ZooOz system proved to work despite minor technical problems and manages to achieve the ease of navigation around the ‘Big Cats’ section of the Melbourne Zoo. However, many areas within Melbourne Zoo are sheltered by trees and structures which make it hard to obtain accurate results when signals are easily obstructed by them. An ideal solution would be to use localized sensory points attached in every animal section via BlueTooth that feed the device information as the user approaches. This way the zoo has control of the signalling power as well as the content that is presented to the user. According to Richard Langley, a GPS expert and a professor of geomatics at the University of New Brunswick, there is another GPS-like solution that is currently being worked on called “Assisted GPS” where the phone network can aid in determining an accurate location, even in areas without a clear view of the sky. The intention is to get GPS working indoors as well as it does outdoors by using antenna technology [7]. Rapid development in mobile technology in recent years has allowed GPS to work freely on mobile phones. An example of this is the Apple iPhone and the “Maps” application where you can get directions to a particular location by inputting the start and end location of your journey and track your progress via GPS [8].
  • 8. International Journal of Distributed and Parallel Systems (IJDPS) Vol.1, No.2, November 2010 8 ACKNOWLEDGEMENTS The authors would like to thank our industry partner, Rick Hammond from the Melbourne Zoo, Megan Chudleigh, Associate Professor Jordan Shan, Luke Low, Dr. Donna Dwyer and for their collaboration. Special thanks go to our students, who contributed to this project, Steven Manceski his contribution to coding and database design, Stephanie Wulf , Vanessa Jalovec and Jaesel Magallanes for the multimedia content, George Fotinos and Travis Mollica for their involvement on the business end of the project. This project was funded by the Teaching and Learning Support (TLS) grants from Victoria University. REFERENCES [1] Global Positioning System, http://en.wikipedia.org/wiki/Global_Positioning_System [2] History of Mobile Phones, http://en.wikipedia.org/wiki/History_of_mobile_phones [3] H. Shi, “An Interactive Zoo Guide:A Case Study of Collaborative Learning”, The International Journal of Multimedia & Its Applications (IJMA), Vol. 2, No. 2, May 2010, pp. 57-67. [4] The Interactive ZooOz Guide – Project History – Final Year Industry Project, http://thangcao.brinkster.net/zoooz.asp [5] T. Nguyen and S. Manceski, The Interactive ZooOz Guide, 2007 Final-Year Design Project Report, School of Computer Science and Mathematics, Victoria University, Melbourne, Australia. [6] Bluetooth Settings for Windows Mobile 5.0 Pocket PC, http://www.mypocketpcmobile.com/BluetoothSettingsonWM50/tabid/146/Default.aspx [7] Mapping out the future of GPS, http://www.thestar.com/news/sciencetech/technology/article/813598--mapping-out-the-future- of-gps [8] Apple - iPhone - Get directions with GPS maps and a new compass, http://www.apple.com/au/iphone/iphone-3gs/maps-compass.html Author Thang Nguyen obtained his Bachelor of Science in Computer Science from School of Engineering and Science, Victoria University, Melbourne, Australia in 2008. He completed the Interactive ZooOz Guide project under supervision of Dr. Hao Shi in 2007. He has mastered several program languages including ASP .NET, PHP, C#, C++, PHP, Java and SQL. Thang is currently working as a Web Programmer at DMC group, Melbourne, Australia. Dr. Hao Shi is an Associate Professor in the School of Engineering and Science at Victoria University, Australia. She completed her PhD in the area of Computer Engineering at the University of Wollongong and obtained her Bachelor of Engineering degree from Shanghai Jiao Tong University, China. She has been actively engaged in R&D and external consultancy activities. Her research interests include p2p Networks, Location-Based Services, Web Services, Computer/Robotics Vision, e- Health, Internet and Multimedia Technologies