I was looking for a hi-res streetmap of london, (to print and put on a wall), but couldn't find anything...
However, there is
this which let's you see only a very small part of a zoomed-in map at once,
I thought about copying each image and pasting it together in photoshop... but it would take about a week to do it.
I've worked out that the site generates jpegs on the fly, and they can be displayed with the following url:
http://booth.lse.ac.uk/cgi-bin/mrsid...amp;height=600
The URL above shows the top-left corner of the map (hence the blacked out bit), because x=0 and y=0 in the URL. The width and height maximums appear to be 800 and 600 respectively (you can put in more but it won't make a difference)
Now, what I'd like to do is get an Applescript to automatically step thru all the images and paste them together in Photoshop.
Here's the pseudo-code:
loop while X = 0 to 21600 step 800
--loop while Y = 0 to 14400 step 600
----load URL in Safari with X and Y co-ordinates
----copy the image
----paste image in Photoshop in correct position
--end loop
end loop
Unfortunately, I don't know any Applescript, so any ideas?