|
On 01/03/2012 14:09, [email protected] wrote:
In QGIS you use the "Save As..." option (right click on the layer in the TOC) then choose a different CRS. You can save the new, reprojected, layer as a shapefile, or several other formats. But if you're using spatialite, why not reproject right in the database, using the ST_Transform() function? I'd create a new table, duplicating the columns from the original (except the Geometry- that you do with AddGeometryColumn(). Then: SELECT AddGeometryColumn( 'new_table', 'Geometry', <new epsg code>,<feature type>,'XY'); INSERT INTO new_table (column1, column2,..., Geometry) SELECT column1, column2,...,ST_Transform(Geometry, <new epsg code>) FROM old_table;
HTH, Micha
-- |
_______________________________________________ Qgis-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/qgis-user
