Steamboat Tavern

Built in the Victorian era Suffolk Camra show the Steamboat Tavern as having been a licensed premises since at least 1860.

Located on New Cut West it was ideally located to serve travellers on steamboats such as the “Orwell” (pictured in the gallery) that used a nearby landing stage.

Posted in Ipswich, Suffolk | Leave a comment

The Palace and The Empress

Opened in 1890, the Grand Hall Olympia, in London, was the largest roller skating rink ever constructed with a skating area measuring 68,000 square feet.

An assortment of rinks had opened many years before this but by now “Rinkomania” was firmly established and roller rinks began to open further afield as this new “fad” radiated outward from the capital.

Skating equipment was advertised for children as well as adults, and the rinks became a new opportunity for men and women to socialize.

By March 1909 Ipswich had its first rink, “The Palace”, and in much the same way as multiple buses arrive at the same time, just four months later a second, “The Empress”, had opened for business.

“The Palace” was built in just 19 days on the site of the Old Provision Market in Falcon Street. It had a Maplewood “skating” floor measuring 140 x 50 feet and was illuminated by fourteen large gas lamps.

“The Empress”, on the corner of Portman Road and Portman Walk (the area now occupied by the car park behind the Sir Bobby Robson Stand) was a much grander affair and boasted an orchestra, tea-rooms and a pleasure garden.

Despite initially impressive attendance figures – opening night at “The Empress” had attracted 3,000 visitors – by 1920 “The Palace” had closed and I assume, “The Empress” was gone soon after.

Addendum June 14:

After reading this post my good lady was at pains to point out the popularity of roller skating in the USA that ran in tandem with its success in England and continued long after it.

As a pre-teen, my wife, along with her friends, was a regular visitor to the Riverview Roller Rink, Chicago.

She, incidentally, owned a pair of “Chicago” roller skates (virtually identical to those shown in the gallery) and was impressed to learn that their manufacturers are still in business today.

The Riverview Roller Rink had first opened in 1904 and enjoyed a run of sixty plus years before burning to the ground in suspicious circumstances in 1971.

It was at this rink that cousins of my wife won a number of championships. She’s not sure of the exact period, although it would have been sometime in the 30’s or 40’s, or whether they were local, state or national competitions.

More on that to follow.

Posted in Chicago, Ipswich, Suffolk | Leave a comment

Stoke Quay

Three cranes operating on a site just south of Stoke Bridge as the construction of new homes and commercial premises picks up pace on a triangle of land between Great Whip Street, Stoke Quay and Felaw Maltings.

In relatively recent years the land had been occupied by various commercial premises including the former Graham’s builder’s merchant but, as a team from Oxford Archaeology discovered during a dig last Autumn, the land had been in use by man since at least the Middle-Late Saxon era.

Among the discoveries was an 11th Century cemetery containing approximately 300 individual graves, the lost church of St Augustine’s and various artefacts, including shroud pins and a piece of lead with runic inscriptions.

The remains – which are to be reburied elsewhere – contain mostly the very young and the very old, some thought to have had leprosy and syphilis, suggesting that this may have been a paupers cemetery.

As this area is adjacent to the first possible crossing point moving up the Orwell from the estuary – prior to modern development it would have been quite shallow and easy to ford – it is perhaps no surprise to find signs of an early settlement in this very location.

Posted in Ipswich, Suffolk | Leave a comment

Portman Road 1938

Ipswich Town v Colchester United at Portman Road, 5th February 1938.

This photograph, original size around 20″x10″, was included in the programme for the game against Bath City a fortnight later on 19th February.

Several interesting things to note:

(1) The people lying on the roof of the North Stand (left).

(2) The inventive use of a plank to get up to the back of the West Stand.

(3) The children hanging onto the back of the West Stand railings.

(4) The buildings in the cattle market across Portman Road.

(5) The SIZE of the crowd! 23,983 according to the photograph legend. Pretty impressive for a non league game

Posted in ITFC | Leave a comment

St Mary’s Church, Mildenhall

St Mary’s Church, Mildenhall, is the largest in Suffolk, and its 120 foot tower looms over the surrounding town.

There has been a church on the site for close to a thousand years but most of what is visible today dates from the early part of the 13th century.

Monies from the lucrative Suffolk wool trade funded a major rebuild of St Mary’s in the 15th century including a huge two-storey porch (again the largest in Suffolk) and a rather impressive roof filled with angels (although not, IMHO, as impressive as the roof at the St Wendreda’s Church, March).

Amongst the many gems inside the church is the tomb of Sir Henry North – one time MP for Suffolk – and its line of mourners.

Posted in Suffolk | Leave a comment

Geo-Mapping

Representing large amounts of data in a visually appealing way can be a difficult challenge and there are many tools available to help companies, organisations and individuals meet it.

Geo-mapping of data is a very popular method and one that allows for the representation of data on a map with different colour coding, legends and keys.

Such maps are often interactive, and allow the user to define the types of data he or she wants to see, and the map is generated accordingly.

By way of demonstration I have created an interactive map of the world showing the place of birth of all players to have represented Ipswich Town in a competitive fixture.

A traditional representation of this data would perhaps have been in tabular form, possibly sorted by place and/or country of birth, and maybe grouped by continent.

As there over 500 players, such a list, no matter how it was presented, would be somewhat dull. Below is the geo-mapped alternative. Click, zoom and have a play…

http://www.tmwmtt.com/sql/MapOfBirthPlaces.php

A fair amount of work was involved in converting birth places into longitude and latitudes, and storing those co-ordinates in a database, but after that the actually coding and presentation was relatively simple.

Using a little bit of JQuery, the Google Maps Javascript API and the MarkerClusterer add-on it works like this (full javascript listing at the bottom of this post) …

  • A PHP script extracts the player names, birthplaces and co-ordinates from a MySQL database table.
  • A new Google Map is instantiated when the page is called up by the browser.
  • Each of birth places to be mapped is processed in turn.
  • A Google Map marker is added to the map for each distinct longitude and latitude combination, with text attached detailing the player, or players if more than one was born in the same town.
  • The map is rendered in the browser.

And that’s it!

The MarkerClusterer add-on groups/clusters together any marker in the same geographical area and shows a count of how many there are.

As the user zooms in on specific area of the map fewer clusters appear and the counts are reduced until single markers reveal individual players places of birth.

Further reading:

http://jquery.com/

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/docs/reference.html

https://developers.google.com/maps/documentation/javascript/

Javascript listing:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<script src="http://www.google.com/jsapi"></script>
<script>
    var fullname = new Array();
    var places = new Array();
    var latlngData = new Array();
</script>
<script src="[your-path-details-here]/geomapData.php"></script>
<script src="[your-path-details-here]/markerclustererV3.js"></script>
<script type="text/javascript">
    google.load('maps', '3', {
            other_params: 'sensor=false'
        });
 
    google.setOnLoadCallback(initialize);
 
    var markerClusterer = null;
    var map = null;
    var imageUrl = '[your-path-details-here]mapMarker.png';
 
    // *************************************************************
    // Map initialisation
    // *************************************************************
 
    function initialize() {
        map = new google.maps.Map(document.getElementById('map'), {
                zoom: 2,
                center: new google.maps.LatLng(20, 0),
                mapTypeId: google.maps.MapTypeId.TERRAIN
            });
 
        var markers = [];
 
        var markerImage = new google.maps.MarkerImage(imageUrl, new google.maps.Size(32, 37));
 
 
        // Loop through all lat/lngs to be mapped
        for (var i = 1; i < latlngData.length; ++i) {
            if (latlngData[i].substring(0, 6) != 'Error:') {
 
                // Was more than one player born here?
                var howMany = countvalues(places)[places[i]];
 
                var latlngSplit = latlngData[i].split(',');
                var latlng = new google.maps.LatLng(latlngSplit[0], latlngSplit[1])
 
                // If more than one player born here add details of all players
                // born here to each markers title
                if (howMany > 1) {
                    var count = 0;
                    var title = howMany + ' players born in ' + places[i] + ': ';
                    for (var z = 1; z < places.length; ++z) {
                        if (places[z] == places[i]) {
                            count++;
                            if (count == 1) {
                                title = title + '(' + count + ') ' + fullname[z];
                            } else {
                                title = title + ', ' + '(' + count + ') ' + fullname[z];
                            }
                        }
                    }
 
                    // If just one player born here set the title to his name and
                    // place of birth
                } else {
                    var title = fullname[i].toUpperCase() + ' ' + places[i];
                }
 
                // Create the marker
                var marker = new google.maps.Marker({
                        position: latlng,
                        draggable: true,
                        icon: markerImage,
                        title: title
                    });
 
                // put marker details in an array (for use by markerClusterer)
                markers.push(marker);
 
            }
        }
 
        // Istantiate marker clusterer
        markerClusterer = new MarkerClusterer(map, markers, {
                maxZoom: 10
            });
 
    }
 
    // ******************************************************************************************************
    // Count the number of occurences of each unique value in an array
    // ******************************************************************************************************
 
    function countvalues(a) {
        var b = {}, i = a.length,
            j;
        while (i--) {
            j = b[a[i]];
            b[a[i]] = j ? j + 1 : 1;
        }
        return b;
    }
</script>
Posted in ITFC, Technology | Leave a comment

Ballboys through the Ages

In my quest for the most obscure (and frankly, irrelevant) information about ITFC, I present to you “Ballboys through the Ages”. My favourite picture is from the 1951-52 season which features the ball boys and their reserves!! Yes, reserve ball boys!!

Posted in ITFC | Leave a comment

Simple Floating Icon Bar

This simple floating menu, with buttons that link to facebook and twitter, floats on the right hand side of the browser no matter where you are on the page.

There are shed loads of utilities out there that you can plug into your site to achieve the same effect but none are as straight forward as this.

A few lines of css, a few more lines of html and away you go … nice links to social media sites of your chosing.

Demo here…

http://www.tmwmtt.com/

The css…

1
2
3
4
5
6
7
8
9
10
/* Social media sidebar */
#socialMediaIcons {
	background: #eee;
	width: 60px;
	position: fixed;
	right: 30px;
	top: 30px;
	margin: 0 0 0 110px;
	z-index: 	9000;
}

… and the html …

1
2
3
4
5
6
7
8
9
10
11
12
<div id="socialMediaIcons">
	<div style="position: absolute; top: 30px;">
		<a href="http://www.facebook.com/Prideofanglia" title="follow us on facebook">
			<span style="display: block; width: 60px; height: 60px; background-image: url([your-path-details-here]/social-media-icons.png); background-repeat: no-repeat; background-position: -262px -227px;"></span>
		</a>
	</div>
	<div style="position: absolute; top: 100px;">
		<a href="https://twitter.com/PrideOfAnglia" title="follow us on twitter">
			<span style="display: block; width: 60px; height: 60px; background-image: url([your-path-details-here]/social-media-icons.png); background-repeat: no-repeat; background-position: -344px -227px;"></span>
		</a>
	</div>
</div>

… and the icons …

Posted in Technology | Leave a comment

Gordon Banks

Football Statues No 60 (in a series of several): Gordon Banks (1937 – )

One of football’s best ever ‘keepers, Banks played a key part in England’s World Cup triumph in the summer of 1966.

His most famous moment came four years later, as England defended the Jules Rimet trophy in Mexico, and it came in the group game against Brazil. Pelé headed powerfully downwards and Banks scooped the ball away over the crossbar with amazing agility.

He also had a distinguished club career too – despite losing the sight in one eye in a car accident – playing for Chesterfield (1955-59), Leicester City (1959-67), Stoke City (1967-72) and Fort Lauderdale Strikers (1977-78).

Awarded the OBE in 1972, this statue of him was unveiled by Archbishop Desmond Tutu and the aforementioned Pele in 2008 at Stoke City’s Britannia Stadium.

Photo Credit

More football statues here.

Posted in Football Statues | Leave a comment

Ipswich Cavalry Barracks

The Ipswich Cavalry Barracks where built in 1796 and housed 1,500 men.

Located on 9 ¼ acres of land in St Matthews Parish, they were bordered by St Matthew’s Street to the south, Angelsea Road to the north and Berners Street to the east.

The brick buildings of the barracks stood on three sides of the parade ground. An officers mess stood along one side flanked either end by barracks for the troops.

Ipswich was well used to having soldiers stationed within its limits but this was the first time that permanent accomodations had been constructed for them.

The first regiment to move in were the Queen’s Regiment of Dragoon Guards. Later the cavalary made way for artillery with units of both the Royal Field Artillery and the Royal Horse Artillery stationed here well into the twentieth century,.

The site was sold to Ipswich Corporation in 1929 who demolished the barracks a year later to make way for council homes on what are now Cecil and Geneva Roads.

All that remains of the site today are the entrance gate posts (topped off with stone balls) about 50 yards along Barrack Lane, while a few sections of its boundary walls can be found in surrounding gardens.

Posted in Ipswich | Leave a comment