Creative Commons License
Except where otherwise noted, content on this site is licensed under a
Creative Commons Attribution-NonCommercial-ShareAlike 2.5 UK: Scotland License.
Read more about this sites license here .
( Clicking on images will display larger versions )

Brewdog

Brewdog
1397 Argyle Street, Glasgow, G3 8AN
25th May 2016

Bar reopened after a short closure for a repaint and some updates. A two year service .
Booths, Tables, chairs , couches , signs and some paint

Brewdog, Glasgow

Same(?) view July 2014

Brewdog, Glasgow

Almost same view June 2012


Another picture just after opening LINK

Murals: New and Updates

4th May 2016

Bain St and London Road

This may look bad but the containers are part of adding jobs to the area . A high tech hub or small businesses i think.
Was; 5th November 2014

Wish there were more pictures of this over the time. Looks like repainting battles going on.
Was: 17th October 2015

Wasnt finished last time i took pictures.
Was: Nov 12th 2014
SMUG, Argyle St, Party Animals

Was: 17th January 2013
Kelvinbridge, Glasgow

The Vale

The Vale
5-7 Dundas St,
Glasgow G1 2AH

14th April 2016

On the day after the Vale announced they were going to be taking a 4 year vacation starting May 1st i thought i should make one of these increasingly rare photos for this blog. The break is apparently due to the Queen St redevelopment work, that after the current tunnel work, will impact Dundas street and the businesses there.
I wonder what will happen to Dows.


An earlier picture from 2011

( Closed for 4 years )

six°north

six°north
566 Dumbarton Road,
Glasgow, G11 6RH

six°north,Glasgow
The ex Velvet Elvis side

six°north,Glasgow
The ex Criterion Cafe side

six°north,Glasgow

A dramatic newcomer to the "far end" of Dumbarton road, along with the Rosevale and Windsor Taverns actively selling Craft Beer, as well as potential building upgrades at the Rosevale, there is something worth paying attention to going on. The changes created by the turnaround from the previous bars has made a space capable of handling a lot of people. A wide selection of beers and a varied food menu make an interesting place to go.
Will people go ? it is a 10 minute walk from subway and train, regular buses ( 2,3,77 etc ) have stops a minute or two away.However it shouldnt have to rely on people travelling too far as there is a large potential market surrounding .


Sauchiehall Lane

Rogue One
Sauchiehall Lane
17th February 2016


While everyone else has been getting over excited about a mural of an advertising executive on High Street Rogue One recently finished a new Art Pistol mural.

Inn Deep

Inn Deep
445 Great Western Rd, Glasgow , G12 8HH
20th January 2016

"Strange fascination, fascinating me, Changes are taking the pace, I'm going through"

inn Deep, Glasgow

1st October 2015 3 years Old
inn Deep, Glasgow

10th September 2014 2 Years Old
inn Deep, Glasgow

3rd August 2013 1 Year Old
inn Deep, Glasgow

10th September 2012 :) All new and baby fresh
inn Deep, Glasgow

( Update Feb 3rd so no one picked up why i had been using lyrics from Changes on these Inn Deep images for the last few months . It has begun )

Glasgow Under Construction


Following a post about the emerging Berlin skyline a number of other views of cities ( London , Historical New York ) have been put online using the fantastic OSM Buildings tool.

I have wanted to enable better views of Glasgow and the current construction and planning. There is an existing Urban Model which is kept in a proprietary and licensed format. It would be ideal if under the banner of the Open Data initiative this was released either directly to the Open Street Map project or via api as has been done in cities like New York .

My contribution is this interactive map , showing planned, recently constructed and some speculative models that i could find.There is a tutorial to add buildings or play with ideas.

( NB just leaving these links to what other cities who have real open data policies can do . Data should "Default To Open" )

As is the nature of these planned buildings visualisation in context is not generally available. To this end i have been trying to make the model creation easier. It would be an interesting step forward if architects submitted obj or GeoJSON models as part of the planning process.

Luckily as part of the process site layouts are submitted. Usually very helpfully in pdf format.
Importing into Inkscape gives you this;

Buildings and any other features of interest can be separated and cleaned up.Repositioning to make the GIS translations simpler is trivial with align tools.


Export to DXF and making use of the GDAL tools, and ogr2ogr in particular, generate an appropriate file.
I "gently coerce" the output file GeoJSON to the correct polygon format and add some data needed by OSMBuildings.
This is then read into geojson.io to allow further editing and referencing to use in display.NB A polygon, rather than just point, move would be a big help in geojson.io

HELP !
Here is where my lack of proper GIS knowledge shows, there is a choice of coordinate system that i am missing or not choosing correctly. The model is shearing in the transform as i try to geolocate the model. I need a simple translate in a normal cartesian rectangular frame, so unfortunately the model is distorted just now. This should be an easy fix for someone who knows what they are doing.
Here is what i am currently doing, the srs coord frames are what needs changing, or something in the sql needs to specify a coord frame; ( geojson.io needs WGS84 )

ogr2ogr -f "GeoJSON" -overwrite "$oFileName".geojson -s_srs EPSG:4326 -t_srs EPSG:4326 "$bname".shp -dialect sqlite
-sql "SELECT ShiftCoords(ScaleCoords(ShiftCoords( geometry,-X(Centroid(GEOMETRY)),
-Y(Centroid(GEOMETRY))),$scale),$long+(X(Centroid(GEOMETRY))*$scale),$lat+(Y(Centroid(GEOMETRY))*$scale)) FROM $bname"
( edited to change srs to 4326 )
NB if i leave centred at 0,0 the images are straight and right angled so it is the shiftCoords and/or the srs coord frames not the other manipulations that are doing the shear. Could it just be rounding/precision issue ?
ie

Linking the geojson model in to the Glasgow model gives this;
( Live Map View )

A good step forward but not the complete tool by any means. Too many workarounds , it may actually be easier to rework the openSCAD export extension in Inkscape but that would then limit use to only inkscape users. Fixes in gdal 2.0+ make the polygon creation simpler. A better way to calculate rescale value and specifying the geolocate origin as well