J'ai créé une table spatiale avec SRID: 4326. Maintenant, je veux changer la projection totale en SRID: 32644 dans une nouvelle table. L'ancienne table devrait rester inchangée.
postgis
coordinate-system
Satya Chandra
la source
la source
Réponses:
Si vous utilisez PostGIS 2.0+, vous pouvez aller:
la source
Point
parThe same geometry type as it was
?Il devrait y avoir un champ d’identification d’entier dans votre table spatiale afin de l’ajouter à QGIS.
la source
suivez cette voie:
CREATE TABLE 'new_table' AS SELECT * FROM 'old_table';
ALTER TABLE new_table DROP CONSTRAINT enforce_srid_the_geom;
ALTER TABLE new_table DROP CONSTRAINT enforce_geotype_the_geom;
UPDATE new_table SET the_geom = ST_SetSRID(the_geom, new_srid);
ALTER TABLE new_table ADD CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = (new_srid));
ALTER TABLE new_table ADD CONSTRAINT enforce_geotype_geom CHECK ((geometrytype(the_geom) = 'POINT'::text OR the_geom IS NULL);
si vous ne pouvez pas créer de nouvelle table dans les pls de première ligne, essayez les 2. et 3. premièrement, créez ensuite votre table avec le numéro 1.
J'espère que ça t'aide...
la source