I added a shapefile as a vector layer in qGIS 1.7 so that I could join in additional attribute data (not geodata) from another DBF file. The Shapefile that I added has this CRS (as far as I can tell using ogrinfo):
PROJCS["WGS_1984_Web_Mercator",
GEOGCS["GCS_WGS_1984_Major_Auxiliary_Sphere",
DATUM["WGS_1984_Major_Auxiliary_Sphere",
SPHEROID["WGS_1984_Major_Auxiliary_Sphere",6378137.0,0.0]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]],
PROJECTION["Mercator_1SP"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Central_Meridian",0.0],
PARAMETER["latitude_of_origin",0.0],
UNIT["Meter",1.0]]
After joining in the extra attribute data in, I exported the original shapefile by right-clicking on the layer and choosing 'Save as.' I kept the CRS as 'Original CRS' in the 'Save vector layer as ...' dialog. However, the exported shapefile has the following CRS defined:
PROJCS["Mercator",
GEOGCS["GCS_unnamed ellipse",
DATUM["unknown",
SPHEROID["Unknown",6378137,0]],
PRIMEM["Greenwich",0],
UNIT["Degree",0.017453292519943295]],
PROJECTION["Mercator_1SP"],
PARAMETER["central_meridian",0],
PARAMETER["false_easting",0],
PARAMETER["false_northing",0],
UNIT["Meter",1],
PARAMETER["latitude_of_origin",0.0]]
Are the CRS' equivalent? If so, does that mean that some of the strings in the WKS definition of the PRJ file are just identifiers? If not, how can I make qGIS preserve the CRS of the original shapefile when exporting it?
Thanks in advance for any help anyone can offer.