Difference between revisions of "User:Q-Owl"

From Geohashing
imported>Q-Owl
m (Expeditions)
imported>Q-Owl
(Expeditions)
Line 5: Line 5:
  
 
== Expeditions ==
 
== Expeditions ==
 +
 +
* [[2013-11-14 49 8]]: A meadow with apple trees near [[wikipedia:Einhausen|Einhausen]].
 
* [[2013-10-25 49 8]]: Not to far from home and near a geocache which I could not log in april.
 
* [[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.
 
* [[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.

Revision as of 22:18, 14 November 2013

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.

Expeditions

  • 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.

Plans and ideas

  • Visit my Birtdayhash 1955-11-28 49 8
  • Meet up with other Geohashers
  • Cross the border to: France, Swiss, Austria and others
  • get some Achievements

Achievements

Landgeohash.png
Q-Owl earned the Land geohash achievement
by reaching the (49, 8) geohash on 2013-09-27.

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 );
  }