Description
Transform a point into another coordinate system.
Parameter |
Value |
---|---|
x |
The X-coordinate of the point. |
y |
The Y-coordinate of the point. |
EPSGCodeSource |
EPSG code of the source system. |
EPSGCodeTarget |
EPSG code of the target system. |
EPSGCodeGeoTransformation |
EPSG code of the transformation. |
Return value
The returned value is a NodeList with the transformed coordinates.
Example:
<xsl:variable name="TRCOORD" select="utiapi:transformCoordinates('11.57','48.08','4326','31467','1673')" />
<coord>
<x><xsl:value-of select="$TRCOORD[1]" /></x>
<y><xsl:value-of select="$TRCOORD[2]" /></y>
</coord>