| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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:template match="*" mode="edge_paths_with_PE.xml">
- <xsl:message>Matched node not needed <xsl:value-of select="name()"/></xsl:message>
- </xsl:template>
- <xsl:template match="text()" mode="edge_paths_with_PE.xml">
- <xsl:message>Matched text: <xsl:value-of select="."/></xsl:message>
- </xsl:template>
-
-
-
-
-
-
-
-
-
- </xsl:stylesheet>
|