I am trying to produce a visualisation involving a map of the UK and all of it's ~650 electoral constituencies. I have drawn the map by following this excellent tutorial http://bost.ocks.org/mike/map/ and it works great. However the only source I can find for the constituencies is Ordnance Survey (Natural Earth has counties but not constituencies). The problem is the OS constituency files do not contain they same type of coordinates (as you may be able to tell, i'm not a GIS expert), they use the transverse Mercator projection. Here are the properties of the .prj file of the data I am trying to convert from:
PROJCS["British_National_Grid",GEOGCS["GCS_OSGB_1936",DATUM["D_OSGB_1936",SPHEROID["Airy_1830",6377563.396,299.3249646]],PRIMEM["Greenwich",0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",400000],PARAMETER["False_Northing",-100000],PARAMETER["Central_Meridian",-2],PARAMETER["Scale_Factor",0.999601272],PARAMETER["Latitude_Of_Origin",49],UNIT["Meter",1]]
My question is: How can I convert this for projection in D3? I have ogr2ogr and TopJson installed but not sure if these can do it and I can't find information anywhere as I don't have enough foundation knowledge.
TIA