This program can be used to convert simple features data between file formats performing various operations during the process such as spatial or attribute selections, reducing the set of attributes, setting the output coordinate system or even reprojecting the features during translation.
Download and install
FWTools. If you don't have MOLDREF99 projection defined open C:\Program Files\FWTools2.3.0\data\epsg.wkt and add the following lines to the bottom
#MOLDREF99
4026,PROJCS["MOLDREF99",GEOGCS["GRS 1980(IUGG, 1980)",DATUM["D_unknown",SPHEROID["GRS80",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",28.4],PARAMETER["scale_factor",0.99994],PARAMETER["false_easting",200000],PARAMETER["false_northing",-5000000],UNIT["Meter",1]]
Now lets try to convert a MOLDREF99 esri shape file into a WGS84 mapinfo tab file. Create 2 folders "in" and "out", put your input data in your "in" folder in my case this are RoadL.shp, RoadL.dbf, RoadL.shx. Run FWTools Shell from your desktop and type
bin\ogr2ogr.exe -s_srs EPSG:4026 -t_srs EPSG:4326 -f "MapInfo File" out\roads.tab in\RoadL.shp
Ogr2ogr support numerous formats some of which are ESRI Shapefile,
MapInfo File, GML, GPX, KML, PostgreSQL. To find out more about ogr2ogr
visit
GDAL homepage.