Skip to main content

Geocaching - The world's largest treasure hunting game!

         Geocaching is a high-tech treasure hunting game played throughout the world by adventure seekers equipped with GPS devices. The basic idea is to locate hidden containers, called geocaches, outdoors and then share your experiences online. Geocaching is enjoyed by people from all age groups, with a strong sense of community and support for the environment. The following video has been taken from "Geocaching - The official global GPS Cache Hunt Site". This site will give you a brief idea of what Geocaching exactly is!



          On May 2, 2000, at approximately midnight, eastern savings time, the great blue switch* controlling selective availability was pressed. Twenty-four satellites around the globe processed their new orders, and instantly the accuracy of GPS technology improved tenfold. Tens of thousands of GPS receivers around the world had an instant upgrade.

           The announcement a day before came as a welcome surprise to everyone who worked with GPS technology. The government had planned to remove selective availability - but had until 2006 to do so. Now, said the White House, anyone could "precisely pinpoint their location or the location of items (such as game) left behind for later recovery." How right they were.

           On May 3, one such enthusiast, Dave Ulmer, a computer consultant, wanted to test the accuracy by hiding a navigational target in the woods. He called the idea the "Great American GPS Stash Hunt" and posted it in an internet GPS users' group. The idea was simple: Hide a container out in the woods and note the coordinates with a GPS unit.

           The finder would then have to locate the container with only the use of his or her GPS receiver. The rules for the finder were simple: "Take some stuff, leave some stuff."

           On May 3rd he placed his own container, a black bucket, in the woods near Beavercreek, Oregon, near Portland. Along with a logbook and pencil, he left various prize items including videos, books, software, and a slingshot. He shared the waypoint of his "stash" with the online community on sci.geo.satellite-nav:
N 45° 17.460 W 122° 24.800

           Within three days, two different readers read about his stash on the Internet, used their own GPS receivers to find the container, and shared their experiences online. Throughout the next week, others excited by the prospect of hiding and finding stashes began hiding their own containers and posting coordinates. Like many new and innovative ideas on the Internet, the concept spread quickly - but this one required leaving your computer to participate.
Within the first month, Mike Teague, the first person to find Ulmer's stash, began gathering the online posts of coordinates around the world and documenting them on his personal home page. The "GPS Stash Hunt" mailing list was created to discuss the emerging activity. Names were even tossed about to replace the name "stash" due to the negative connotations of that name. One such name was "geocaching."

            You can subscribe to Geocaching.com membership which is free and requires only a valid email address and your name to create an account. Once you are a member, you have to choose any geocache from the available list, enter its GPS co-ordinates into your GPS device and go on the treasure hunt! Become a member of the largest treasure hunting game in the world!

Comments

Recommended for You

Jquery Mobile Form - Search input

    Input field of type search is newly introduced in HTML5 and is very well styled. The style is further enhanced when using the Jquery Mobile framework and we will see how this can be done in today's post. Jquery Mobile styles the search input type with capsule-corners and adds a 'x' icon to the right end, which clears the text in the search box.      The seacrch input elements are available in 2 flavors/sizes - regular and mini.   Adding a data attribute data-mini="true" to the input tag renders a smaller sized input element. Let's take a look at the code sample below to understand the working in a better way.      In the code above, you will see 4 different implementations of the input search element. The first one is a regular input of type search with the label and the searchbox one below the other. The second implementation is exactly similar to the first implementation with the only difference of the added data attrib...

The Street View Army

    Google's Street Views have caused controversy more often than not. Sometimes for privacy issues, sometimes for security reasons. But whatever the media has to say, we can't deny the fact that Google Street Views has brought the entire world at your finger tips. You can visit places that you would not be able to visit ever. You can walk the roads, that you had only imagined of treading. You can experience for yourself, various cultures, events, religions and lives of people across the globe all at the comfort of your home. You can visit the deserts, the snow clad mountains, the giant rivers or the gushing waterfalls. Today, let's take a look at the efforts Google is taking to capture the world for us. Google Street View Car     Aha! We all know this vehical. More popular than the Mercs and the BMWs, this street view car has roamed the streets of many a cities since May 25, 2007. Street Views started out as an experimental project with a SUV pac...

CSS - Counter-increment and counter-reset

Today we will take a look at a couple of CSS properties that are usually used together but not very frequently used. We will be talking about the counter-increment and counter-reset properties. As the name suggests counter-increment and counter-reset definitely have something to do with counters. Let's take a look at the example below which will clearly illustrate the usage of these 2 properties. The implementation is very clear and straight-forward. The only question that remains now, can these CSS properties replace the ordered list (ol-li) HTML code? Do let me know your comments and feedback. Would you use these CSS properties against the standard ol-li structure?

Playing with the markers and info window bubbles...

    In the last few posts, we have seen some marker examples and some information window examples. Now, lets do something interesting combining these two things. Just writing that "This is an info window" in the information bubble is not very interesting! And I know this...Have gone through the same phase!     So, today we will do something interesting! We will display the latitude- longitude co-ordinates of the point that the user clicks on the map! Doing this is not at all complex! Copy paste the following code and you will see for yourself a map coming to life!     The output of the above code looks as seen in the result section above! If you have any queries regarding the above code please comment on the blog post or feel free to contact me at my mail ID .

Jquery Mobile - Basic Listview

    Continuing with the Jquery Mobile Examples, today we will take a look at the listviews in Jquery Mobile. Listviews are popularly used in websites and web-applications that are built on the Jquery Mobile platform and hence we will look at the various list patterns available with Jquery Mobile. Lists are used for a various purposes like data display, navigation, result lists and data entry. We will start with the most basic listview example and look through several examples over a number of posts.     A listview is simply an unordered list containing linked list items with a data-role="listview" attribute. jQuery Mobile will apply all the necessary styles to transform the list into a mobile-friendly listview with right arrow indicator that fills the full width of the browser window. When you tap on the list item, the framework will trigger a click on the first link inside the list item, issue an Ajax request for the URL in the link, create the new pag...