Using OpenStreetMap tiles with Flickr
Update August 4th, 2011: I've changed the script to use any of the three OpenStreetMap tile servers, instead of hard coding it just to one.
I like taking pictures, and I usually take a GPS so that I can place them on a map on my Flickr page. On my last excursion however, the battery of my GPS had died, so I did not have location information available to store in my pictures' EXIF headers. Flickr can use the EXIF headers to then show the images on the map.
Because I did not have the location information to automatically place my pictures on the map, I wanted to do that by hand. Flickr, being owned by Yahoo!, uses Yahoo! Maps. Yahoo! Maps however, is not terribly great in the country side. Actually, it is mostly empty, especially compared to OpenStreetMap's version. This made placing photos onto the map by hand quite impossible. So I set out to have only OpenStreetMap tiles as back ground in Flickr like they already do for Bejing and some other places.
Inspired by the Upside-Down-Ternet I installed Squid, and set the url_rewrite_program to a PHP script (with execute bit on):
url_rewrite_program /home/derick/bin/redirect.php
Squid will fire up a few of those scripts (depending on the url_rewrite_children setting) and then supplies them with URLs to rewrite. Each line of input is an URL to rewrite, and the script should echo a rewritten URL.
The script itself is rather simple. It just needs to account for two different formats because the Yahoo!Maps URLs are different from the Flickr ones (as indicated by the r argument in the original URL). I'm including the script here (and as download):
#!/usr/local/php/5.3dev/bin/php
<?php
do {
// Open the log file
$a = fopen( '/tmp/test.log', 'a' );
// Read the URL line
$input = fgets( STDIN );
if ( $input == '' )
{
continue;
}
// Split the data so that we can access the host and
// query string elements
$parts = explode( ' ', $input );
$urlParts = parse_url( $parts[0] );
$queryParts = array();
if ( isset( $urlParts['query'] ) )
{
parse_str( $urlParts['query'], $queryParts );
}
// The block to test for Yahoo! Maps:
if ( preg_match( '@maps\d?.yimg.com@', $urlParts['host'] ) )
{
if ( !isset( $queryParts['r'] ) || $queryParts['r'] == 0 )
{
// This is the format that Flickr uses
// Do the math to calculate the OSM tile
// coordinates from the Yahoo!Maps one
$z = 18 - $queryParts['z'];
$x = $queryParts['x'];
$y = pow(2, $z-1) - $queryParts['y'] - 1;
// Assemble new URL and write log line
$newUrl = "http://b.tile.openstreetmap.org/$z/$x/$y.png";
fwrite( $a, "REDIR: $parts[0] => $newUrl\n" );
}
else
{
// This is the format that Yahoo!Maps uses
// Do the math to calculate the OSM tile
// coordinates from the Yahoo!Maps one
$z = $queryParts['z'] - 1;
$x = $queryParts['x'];
$y = pow( 2, $z - 1 ) - $queryParts['y'] - 1;
// Assemble new URL and write log line
$range = range('a', 'c');
$server = $range[rand(0, sizeof($range)-1)];
$newUrl = "http://{$server}.tile.openstreetmap.org/$z/$x/$y.png";
fwrite( $a, "REDIR: $parts[0] => $newUrl\n" );
}
} else {
$newUrl = $parts[0];
fwrite($a, "NORMAL: $newUrl\n");
}
// Output the rewritten (or original) URL
echo $newUrl, "\n";
} while ( true );
After I configured my browser to use the Squid proxy running on localhost, Flickr is now shown with OpenStreetMap tiles as background:
And with the OpenStreetMap tiles in the background, I could place my photos on the correct location on the map.
Comments
Nice solution - didn't know you could do that with Squid! Another option (the one I use for my older, nont GPS pictures) is GeoSetter (http://www.geosetter.de/en/). It allows you to edit / save the co-ordinated directly into the files. It's a little buggy/crashy/slow, but it works nicely most of the time :)
I love this, but using Squid (which really isn't that great of a caching proxy) is just too heavy. Have you looked at creating a Greasemonkey script?
@Stefan: GeoSetter is a Windows application, it uses Google Maps and it requires a GPS track. I have none of those prerequisites.
@Samat: I could have used Greasemonkey, but I found that a pain to use in the past, I don't know JavaScript so well, and it would have had nothing to do with PHP :-P Using Squid was the fastest way to a solution!
Life Line
What new fresh hell is this?
"Please click here and tick the box if you DO NOT want to be opted in."
And when you click on the non-visible link:
"[ ] I DO NOT want to be opted in."
@jamesholden Have you ever seen the Expanse? One of the main characters shares your name!
I walked 4.4km in 51m58s
I walked 8.2km in 1h40m07s
I walked 2.4km in 38m25s
@Edent With your ActivityPub implementation, have you figured out how to allow quote posts for your bot posts yet?
📷 Brown Cap in the Grass
🚩 Herikhuizerweg, Rheden, Nederland
I walked 0.9km in 11m17s
I walked 2.8km in 25m32s
I walked 4.6km in 1h8m02s
📷 Stalkers Lane
🚩 Graywood Lane, Wealden, United Kingdom
I hiked 23.0km in 4h10m15s
I walked 3.9km in 39m07s
After my PHP 8.5 in Leeds last night, it's now time to head to Rotterdam to give the same talk there tonight!
It's cold out here, but atleast the snow is now gone.
I walked 1.7km in 13m18s
📷 Avenue Gardens
🚩 Princess Road, London Borough of Brent, United Kingdom
📷 Leafy Entrance
🚩 East Heath Road, London Borough of Camden, United Kingdom
📷 From Green to Yellow.
🚩 St John's Wood Road, City of Westminster, United Kingdom
I walked 9.1km in 1h56m24s







Shortlink
This article has a short URL available: https://drck.me/osm-flickr-8k4