I'm trying to use OpenLayers to transform projections, which in turn uses the http://proj4js.org/ library.
var ll = new OpenLayers.Projection('EPSG:4326');
var a = new OpenLayers.LonLat(3,53).transform(ll,new OpenLayers.Projection('EPSG:900913'));
var b = new OpenLayers.LonLat(3,53).transform(ll,new OpenLayers.Projection('EPSG:27700'));
a will have transformed fine, b will not.
Is it possible to get support for EPSG:27700?
http://osgeo-org.1803224.n2.nabble.com/Reprojecting-Google-td1827338.html suggests adding in a extra class, but that's 2 years old so I'm hopeing it's improved since then.