User:Q-Owl
From Geo Hashing
Contents |
[edit] About Me
I like Geocaching since 2011 and I discovered geohashing 2013-09-25.
My home graticule is Mannheim, Germany (see today's point on the peeron map). Meetups in this graticule: meetups.
My Homepage: www.KlickTipps.de
[edit] Expeditions
- 2014-03-29 49 8: On a vineyard near Nierstein not far from the Rhine.
- 2013-12-11 49 8: In the southern part of Darmstadt: Rüthleinweg/Edith-Stein-Weg.
- 2013-11-14 49 8: A meadow with apple trees near Einhausen.
- 2013-10-25 49 8: Not to far from home and near a geocache which I could not log in april.
- 2013-09-27 49 8: Three days after creating my account at XKCD I had the chance to visit my first geohash only a few kilometers away from home.
[edit] Plans and ideas
- Visit my Birtdayhash 1955-11-28 49 8
- Meet up with other Geohashers
- Cross the border to: France, Swizerland, Austria and other countries
- get some Achievements
[edit] Achievements
Q-Owl earned the Land geohash achievement
|
Q-Owl earned the Circus Geohash Achievement
|
Q-Owl achieved level 0 of the Minesweeper Geohash achievement
|
[edit] PHP
I like programming PHP. If you need a little PHP function to link from your own homepage to the geohashes of a certain day in the past, here is it:
function geohashing_textlink( $my_date = -1 , $klasse = "" ){
/* a text link to a special day
Parameters: $my_date (optional): 0 heute
-1 yesterday and so on
$klasse (optional): CSS Class for the link */
$complete_date = mktime(0, 0, 0, date("m"), date("d") + $my_date, date("Y"));
//check inputs
if ( $my_date > 0 ){ $my_date = 0; }
$klasse = trim( $klasse );
//build link
$text = date("j.n.Y" , $complete_date );
$outp = "<a href=\"http://wiki.xkcd.com/geohashing/";
$outp .= date("Y-n-j" , $complete_date ) . "\"";
$outp .= " target=\"_blank\"" ;
if ( $klasse != "" ){ $outp .= " class=\"" . $klasse . "\""; }
$outp .= " >" . $text . "</a>" ;
return( $outp );
}