| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:bp="https://procesy5.pl/biale_plamy-schema.xsd"
-
-
- exclude-result-prefixes="xs"
- version="2.0">
-
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
-
-
-
-
- <xsl:template match="edge_paths_with_PE_controll">
- <PE_candidates_dump>
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </PE_candidates_dump>
- </xsl:template>
-
-
- <xsl:template match="edge_paths_with_PE_controll" mode="edge_paths_with_PE.xml">
- <PE_candidates_dump>
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </PE_candidates_dump>
- </xsl:template>
-
- <xsl:template match="Path" mode="edge_paths_with_PE.xml">
- <LINESTRING>
- <xsl:attribute name="ID_Way" select="@id"/>
- <xsl:attribute name="Count" select="@Count"/>
- <xsl:attribute name="ID_Point_count" select="@Points_cnt"/>
- <xsl:attribute name="distance"/>
- <xsl:attribute name="dumb_frequency" select="''"/>
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </LINESTRING>
- </xsl:template>
-
- <xsl:template match="PointMatrixGroupPE" mode="edge_paths_with_PE.xml">
-
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </xsl:template>
-
- <xsl:template match="PointMatrixGroup" mode="edge_paths_with_PE.xml">
- <!--<test_matrux><xsl:copy-of select="."></xsl:copy-of></test_matrux>-->
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </xsl:template>
-
- <xsl:template match="odpalam_liczenie" mode="edge_paths_with_PE.xml">
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </xsl:template>
- <xsl:template match="koniec_wariantow" mode="edge_paths_with_PE.xml">
- <xsl:apply-templates mode="edge_paths_with_PE.xml"/>
- </xsl:template>
-
- <xsl:template match="bp:Path_Point" mode="edge_paths_with_PE.xml">
- <xsl:copy-of select="."/>
- </xsl:template>
-
- <xsl:template match="variant" mode="edge_paths_with_PE.xml"/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- </xsl:stylesheet>
|