------------------------------------------------------------ revno: 20257 committer: Halvdan Hoem Grelland <halvda...@gmail.com> branch nick: dhis2 timestamp: Mon 2015-09-21 14:26:37 +0200 message: GML import: use 6 decimal precision for Points, 4 for Polygons and MultiPolygons modified: dhis-2/dhis-services/dhis-service-dxf2/src/main/resources/gml/gml2dxf2.xsl
-- lp:dhis2 https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk Your team DHIS 2 developers is subscribed to branch lp:dhis2. To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-dxf2/src/main/resources/gml/gml2dxf2.xsl' --- dhis-2/dhis-services/dhis-service-dxf2/src/main/resources/gml/gml2dxf2.xsl 2015-04-09 23:35:37 +0000 +++ dhis-2/dhis-services/dhis-service-dxf2/src/main/resources/gml/gml2dxf2.xsl 2015-09-21 12:26:37 +0000 @@ -5,11 +5,14 @@ xmlns:java="org.hisp.dhis.dxf2.gml.GmlConversionUtils" exclude-result-prefixes="java"> - <xsl:param name="precision">4</xsl:param> + <!-- Decimal precision used for Point and Polygon type elements --> + <xsl:param name="pointPrecision">6</xsl:param> + <xsl:param name="polygonPrecision">4</xsl:param> + <!-- GML basic element matchers --> <xsl:template match="gml:coordinates" mode="multipleCoordinates"> <xsl:text>[</xsl:text> - <xsl:value-of select="java:gmlCoordinatesToString(normalize-space(.),$precision)" + <xsl:value-of select="java:gmlCoordinatesToString(normalize-space(.),$polygonPrecision)" disable-output-escaping="yes"/> <xsl:text>]</xsl:text> <xsl:if test="position() != last()"> @@ -18,18 +21,18 @@ </xsl:template> <xsl:template match="gml:coordinates" mode="singleCoordinate"> - <xsl:value-of select="java:gmlCoordinatesToString(normalize-space(.),$precision)" + <xsl:value-of select="java:gmlCoordinatesToString(normalize-space(.),$pointPrecision)" disable-output-escaping="yes"/> </xsl:template> <xsl:template match="gml:pos"> - <xsl:value-of select="java:gmlPosToString(normalize-space(.),$precision)" + <xsl:value-of select="java:gmlPosToString(normalize-space(.),$pointPrecision)" disable-output-escaping="yes" /> </xsl:template> <xsl:template match="gml:posList"> <xsl:text>[</xsl:text> - <xsl:value-of select="java:gmlPosListToString(normalize-space(.),$precision)" + <xsl:value-of select="java:gmlPosListToString(normalize-space(.),$polygonPrecision)" disable-output-escaping="yes"/> <xsl:text>]</xsl:text> <xsl:if test="position() != last()"> @@ -37,6 +40,7 @@ </xsl:if> </xsl:template> + <!-- GML feature matchers --> <xsl:template match="gml:Polygon"> <featureType>Polygon</featureType> <coordinates> @@ -77,6 +81,7 @@ </xsl:if> </xsl:template> + <!-- FeatureMember => OrganisationUnit conversion --> <xsl:template match="gml:featureMember"> <xsl:variable name="uid" select=".//*[local-name()='uid' or local-name()='UID' or local-name()='Uid']" /> <xsl:variable name="code" select=".//*[local-name()='code' or local-name()='CODE' or local-name()='Code']" /> @@ -104,6 +109,7 @@ </organisationUnit> </xsl:template> + <!-- Entry point --> <xsl:template match="/"> <dxf xmlns="http://dhis2.org/schema/dxf/2.0"> <organisationUnits>
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : dhis2-devs@lists.launchpad.net Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp