Difference between revisions of "User:Klaus"

From Geohashing
imported>Klaus
(updated achievements)
imported>Klaus
(minesweeper)
Line 10: Line 10:
 
* 1. [[2015-05-17 48 8]] on a field in Neustetten, Rottenburg
 
* 1. [[2015-05-17 48 8]] on a field in Neustetten, Rottenburg
 
* 2. [[2015-06-12 48 9]] very near to the area of the [http://www.gc-schoenbuch.de/ golf club "Schönbuch"]
 
* 2. [[2015-06-12 48 9]] very near to the area of the [http://www.gc-schoenbuch.de/ golf club "Schönbuch"]
 
Map: [http://xkcd.nathanwoodruff.com/GooMapXKCDKlaus.htm http://xkcd.nathanwoodruff.com/GooMapXKCDKlaus.htm]
 
  
 
== Achievements ==
 
== Achievements ==
  
Each achievement only once:
+
=== Easy ones ===
  
 
{{land geohash
 
{{land geohash
Line 40: Line 38:
 
* [[2015-06-12 48 9]] (36km)
 
* [[2015-06-12 48 9]] (36km)
  
 +
=== Minesweeper ===
 +
 +
see the map: [http://xkcd.nathanwoodruff.com/GooMapXKCDKlaus.htm http://xkcd.nathanwoodruff.com/GooMapXKCDKlaus.htm]
 +
 +
{{Minesweeper geohash
 +
    | graticule = 48,9
 +
    | ranknumber = 1
 +
    | w = true
 +
    | name = Klaus
 +
}}
 +
 +
{{Minesweeper geohash
 +
    | graticule = 48,8
 +
    | ranknumber = 1
 +
    | e = true
 +
    | name = Klaus
 +
}}
 +
 +
List with the first geohash I reached in every graticule I did a hash:
 +
* [[2015-05-17 48 8]] #1
 +
* [[2015-06-12 48 9]] #2
  
  

Revision as of 18:17, 12 June 2015

Lol-asg.png 26 / m / 48,9

My home coordinates are plusminus 48.53,9.06 in the city of Tuebingen, Germany.

I was born and lived for a long time in 49,11 and still am there from time to time.

Geohashes

Finally I started with geohashing after years of just watching and checking the coordinates like once every few months :)

Achievements

Easy ones

Landgeohash.png
Klaus earned the Land geohash achievement
by reaching the (48, 8) geohash on 2015-05-17.
Bikegeohash.png
Klaus earned the Bicycle geohash achievement
by cycling 42km to and from the (48, 8) geohash on 2015-05-17.

Minesweeper

see the map: http://xkcd.nathanwoodruff.com/GooMapXKCDKlaus.htm

Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Minesweeper geohash flag.png Minesweeper geohash 1.png Minesweeper geohash empty.png
Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Klaus achieved level 1 of the Minesweeper Geohash achievement
by visiting coordinates in 48,9 and 1 of the surrounding graticules.
Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Minesweeper geohash empty.png Minesweeper geohash 1.png Minesweeper geohash flag.png
Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Klaus achieved level 1 of the Minesweeper Geohash achievement
by visiting coordinates in 48,8 and 1 of the surrounding graticules.

List with the first geohash I reached in every graticule I did a hash:


Bash Script

As I always forget to look up the coordinates, I hacked this (very ugly) bash script to let a daily cronjob inform me per email, whenever a geohash is near to me:

#!/bin/bash

maxdistance=15

a=$(curl 'http://tjum.anthill.de/cgi-bin/geohash.cgi?lat=48.53&lon=9.06&nr=1&map=0&size=240x240&t=&date=&unit=km' 2>/dev/null |
iconv -f 'iso8859-1' -t 'utf8' |
sed  's/<br>/\n/g' |
sed 's/ / /g' |
fgrep 'km' |
cut -d ':' -f2 |
cut -d 'k' -f1 | 
sort -n |
head -n 1 |
cut -d '.' -f 1)

echo $a

if [ $a -lt $maxdistance ]
then
	echo 'http://tjum.anthill.de/cgi-bin/geohash.cgi?t=1&nr=o&unit=km&zoom=11%2F5&zoom=8%2F2&type=roadmap&lat=48.53&lon=9.06&size=240x240' | 
	mail -s "geohash is near to tuebingen ($a)" USERNAME
fi

I just parses the small hash inquiry tool from Ekorren in the most complicated way and sends the mail via a local mailserver :)