vote up 0 vote down star

I have a set of ESRI shapefiles which, I'm told, have been written using the British National Grid coordinate system. I need to convert these files to WGS84 lat/lons, for onward conversion to KML files. I'm having trouble doing this as follows:

If I open each of the original files in MapInfo Professional telling it that my file has a projection which is British National Grid then I can't see any geographic objects in the file; the map window is completely empty.

If I use MapInfo Professional's Universal Translator to convert the files to a WGS84 MapInfo TAB file then, just as before, the converted file won't display any geographic objects, the MapInfo window is empty.

Can I verify the coordinate system of these files? Am I missing anything here? Should I be able to convert the shapefiles in the way I'm expecting to be able to and view them using MapInfo Professional? Will another tool do a better job for me?

Thanks.

More Info:

My shapefile has coordinates which don't seem to translate to lat/lon properly and I'm now wondering if the coordinates aren't actually British National Grid. I'm seeing coordinates such as 383702523, 399081141 which appears to be approximately lat/lon 53.488182, -2.247153. Have you any idea what projection system my input file is in?

flag
Thanks for your help here. I eventually did write my own code to solve the conversion and so am able to deliver the converted data. I'm still keen to know if OGR2OGR or another tool could have done the work without me coding a solution and so welcome further comment. Cheers. – Barry Oct 13 at 9:50

4 Answers

vote up 1 vote down

http://gothos.info/2009/04/14/transform-projections-with-gdal-ogr/

ogr2ogr is a great tool for doing these sorts of conversions. You would run it with a command like

ogr2ogr -t_srs EPSG:4326 map_wgs84.shp map_original.shp

-t_srs is the option to transform co-ordinate systems. 4326 is the EPSG SRID for WGS84.

link|flag
Thanks for this. It pointed me in the right direction but I'm still having trouble. My shapefile has coordinates which don't seem to translate to lat/lon properly and I'm now wondering if the coordinates aren't actually British National Grid. I'm seeing coordinates such as 383702523, 399081141 which appears to be approximately lat/lon 53.488182, -2.247153. Have you any idea what projection system my input file is in? Thanks. – Barry Oct 9 at 15:10
vote up 1 vote down

OS grid doesn't use WGS84 - it uses Airy 1936 (OSGB36) spheroid
So you need to go from OSgrid -> lat/lon then OSGB36->WGS84.

See http://www.ordnancesurvey.co.uk/oswebsite/gps/docs/convertingcoordinatesEN.pdf

To do OS grid to lat-lon see http://www.movable-type.co.uk/scripts/latlong-gridref.html

Then to go from OSGB36 -> WGS84 see http://www.movable-type.co.uk/scripts/latlong-convert-coords.html

link|flag
vote up 0 vote down

You've got things in meters. ESRI has some very nice conversion tools in their library. You'll need to look at the following:

IGeographicCoordinateSystem IProjectedCoordinateSystem ITransformation

Then you'll need to look up the various enums associated with those transforms: esriSRGeoCSType, esriSRProjCSType, esriSRGeoTransformationType.

link|flag
If I now know the file is in metres then can I get ogr2ogr to convert the file to WGS84? I'm assuming that can do this without me having to build software myself? – Barry Oct 9 at 16:31
vote up -1 vote down

Barry,

I have had similar problem of yours. I cannot convert an dwg file to tab file using the universal translator. The converted files are all blanks. I was told the dwg file I have is based on British national grid system and it should be as it is a place in Birmingham. Can you tell me how I can convert it to tab file that I can read it in MapInfo? Thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.