Hello guys<br>
<br>
I hava a "little" problem with Postgis projection.<br>
<br>
I need get a reprojected view.  Original data layer is in SRS=25830 (ETRS89 UTM30) and view in SRS=23030 (ED50 UTM30)<br>
<br>
I try this:<br>

<br>
CREATE OR REPLACE VIEW vista_23030 AS <br>

 SELECT id, transform_geometry("GEOMETRY", '+proj=utm +zone=30
+ellps=GRS80 +units=m +no_defs
+towgs84=131.0,100.3,163.4,1.2439999999999989,0.01999999999999998,1.1439999999999988,-9.39
'::text, <br>
 '+proj=utm +zone=30 +ellps=intl +units=m +nadgrids +no_defs'::text, 23030) AS "GEOMETRY"<br>

   FROM capa_25830;<br>
<br>
(If we do not include "+nadgrids" we don't get anything, but that is not a problem).<br>
I always get a +-90 meter error.<br>

<br>
Can anybody help me.<br>
<br>
Thanks in advance