Difference between revisions of "User:Q-Owl"

From Geohashing
imported>Q-Owl
m (Über mich / About Me)
imported>Q-Owl
Line 1: Line 1:
 
== About Me ==
 
== About Me ==
I like Geocaching since 2011 and I discovered geohashing 2013-09-25. Three days later I had the chance to visit my first geohash not far from home.
+
I like Geocaching since 2011 and I discovered geohashing 2013-09-25.  
  
 
My home graticule is [[Mannheim, Germany]] (see today's point on the [http://carabiner.peeron.com/xkcd/map/map.html?lat=49&long=8&zoom=8&abs=-1 peeron map]).  Meetups in this graticule: [[:Category:Meetup in 49 8|meetups]].
 
My home graticule is [[Mannheim, Germany]] (see today's point on the [http://carabiner.peeron.com/xkcd/map/map.html?lat=49&long=8&zoom=8&abs=-1 peeron map]).  Meetups in this graticule: [[:Category:Meetup in 49 8|meetups]].
  
== Expeditionen / Expeditions ==
+
== Expeditions ==
Den dritten Tag dabei und schon war ein Geohash in unserer Nähe: [[2013-09-27 49 8]]
+
* [[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-10-25 49 8]]: Not to far from home and near a geocache which I could not log in april.
  
I created this account three days ago and now there was a Geo Hash a few kilometers away from home.
+
== Plans and ideas ==
 
 
== Pläne und Ideen / Plans and ideas ==
 
 
* Visit my Birtdayhash [[1955-11-28 49 8]]
 
* Visit my Birtdayhash [[1955-11-28 49 8]]
 
* Meet up with other Geohashers
 
* Meet up with other Geohashers
Line 28: Line 27:
  
 
== PHP ==
 
== PHP ==
I like 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:
 
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:
 
<pre>
 
<pre>

Revision as of 12:06, 26 October 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-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-10-25 49 8: Not to far from home and near a geocache which I could not log in april.

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