Revision 861

View differences:

org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gpe</artifactId>
5
  <packaging>pom</packaging>
6
  <version>2.1.76</version>
7
  <description>Generic Persistence Engine</description>
8
  <url>http://devel.gvsig.org/sites/org.gvsig.gpe/${project.version}</url>
9
  <name>${project.artifactId}</name>
10

  
11
  <parent>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.desktop</artifactId>
14
      <version>2.0.234</version>
15
  </parent>
16

  
17
    <scm>
18
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76</connection>
19
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76</developerConnection>
20
        <url>https://devel.gvsig.org/redmine/projects/gvsig-gpe/repository/show/org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76</url>
21
    </scm>
22
    <repositories>
23
      <repository>
24
        <id>gvsig-public-http-repository</id>
25
        <name>gvSIG maven public HTTP repository</name>
26
        <url>http://devel.gvsig.org/m2repo/j2se</url>
27
        <releases>
28
          <enabled>true</enabled>
29
          <updatePolicy>daily</updatePolicy>
30
          <checksumPolicy>warn</checksumPolicy>
31
        </releases>
32
        <snapshots>
33
          <enabled>true</enabled>
34
          <updatePolicy>daily</updatePolicy>
35
          <checksumPolicy>warn</checksumPolicy>
36
        </snapshots>
37
      </repository>
38
    </repositories>
39

  
40
  <build>
41
    <plugins>
42
      <plugin>
43
        <groupId>org.apache.maven.plugins</groupId>
44
        <artifactId>maven-release-plugin</artifactId>
45
        <configuration>
46
          <tagBase>https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags</tagBase>
47
          <goals>deploy</goals>
48
        </configuration>
49
      </plugin>
50
    </plugins>
51
  </build>
52

  
53
  <dependencyManagement>
54
    <dependencies>
55
      <!-- Self-deps -->
56

  
57
      <dependency>
58
        <groupId>org.gvsig</groupId>
59
        <artifactId>org.gvsig.gpe.lib.api</artifactId>
60
        <version>2.1.76</version>
61
      </dependency>
62
      <dependency>
63
        <groupId>org.gvsig</groupId>
64
        <artifactId>org.gvsig.gpe.lib.spi</artifactId>
65
        <version>2.1.76</version>
66
      </dependency>
67
      <dependency>
68
        <groupId>org.gvsig</groupId>
69
        <artifactId>org.gvsig.gpe.lib.impl</artifactId>
70
        <version>2.1.76</version>
71
      </dependency>
72
      <dependency>
73
        <groupId>org.gvsig</groupId>
74
        <artifactId>org.gvsig.gpe.prov.xml</artifactId>
75
        <version>2.1.76</version>
76
      </dependency>
77
      <dependency>
78
        <groupId>org.gvsig</groupId>
79
        <artifactId>org.gvsig.gpe.lib.impl</artifactId>
80
        <version>2.1.76</version>
81
        <classifier>tests</classifier>
82
      </dependency>
83
    <dependency>
84
      <groupId>org.gvsig</groupId>
85
      <artifactId>org.gvsig.gpe.exportto.kml</artifactId>
86
      <version>2.1.74-SNAPSHOT</version>
87
    </dependency>
88
    <dependency>
89
      <groupId>org.gvsig</groupId>
90
      <artifactId>org.gvsig.gpe.exportto.generic</artifactId>
91
      <version>2.1.74-SNAPSHOT</version>
92
    </dependency>
93
    <dependency>
94
      <groupId>org.gvsig</groupId>
95
      <artifactId>org.gvsig.gpe.prov.gml</artifactId>
96
      <version>2.1.76</version>
97
    </dependency>
98
    <dependency>
99
      <groupId>org.gvsig</groupId>
100
      <artifactId>org.gvsig.gpe.prov.kml</artifactId>
101
      <version>2.1.76</version>
102
    </dependency>
103

  
104

  
105
    <!-- SCHEMA/PULL LIBS -->
106
    <dependency>
107
        <groupId>org.gvsig</groupId>
108
        <artifactId>org.gvsig.xmlschema</artifactId>
109
        <version>${org.gvsig.xmlschema.version}</version>
110
        <type>pom</type>
111
        <scope>import</scope>
112
        <exclusions>
113
            <exclusion> 
114
                <groupId>org.gvsig</groupId>
115
                <artifactId>org.gvsig.tools.lib</artifactId>
116
            </exclusion>
117
        </exclusions> 
118
    </dependency>
119
    <dependency>
120
        <groupId>org.gvsig</groupId>
121
        <artifactId>org.gvsig.xmlpull</artifactId>
122
        <version>${org.gvsig.xmlpull.version}</version>
123
        <type>pom</type>
124
        <scope>import</scope>
125
        <exclusions>
126
            <exclusion> 
127
                <groupId>org.gvsig</groupId>
128
                <artifactId>org.gvsig.tools.lib</artifactId>
129
            </exclusion>
130
        </exclusions> 
131
    </dependency>
132

  
133
    <!-- TODO: Remove those entries when updated in libGPE (?) -->
134

  
135
    <dependency>
136
      <groupId>stax</groupId>
137
      <artifactId>stax-api</artifactId>
138
      <version>1.0.1</version>
139
    </dependency>
140
    <dependency>
141
      <groupId>stax</groupId>
142
      <artifactId>stax</artifactId>
143
      <version>1.2.0</version>
144
    </dependency>
145

  
146
    </dependencies>
147
  </dependencyManagement>
148

  
149
  <properties>
150
      <org.gvsig.xmlschema.version>2.0.15</org.gvsig.xmlschema.version>
151
      <org.gvsig.xmlpull.version>2.0.7</org.gvsig.xmlpull.version>
152
  </properties>  
153

  
154
  <modules>
155
    <module>org.gvsig.gpe.app</module>
156
    <module>org.gvsig.gpe.lib</module>
157
    <module>org.gvsig.gpe.prov</module>
158
    <!--
159
    <module>org.gvsig.gpe.exportto</module>
160
    -->
161
  </modules>
162
</project>
163

  
0 164

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76/org.gvsig.gpe.app/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
  <modelVersion>4.0.0</modelVersion>
5
  <artifactId>org.gvsig.gpe.app</artifactId>
6
  <description>Adds support for some vector formats (GML, KML)</description>
7
  <packaging>pom</packaging>
8
  
9
  
10
  <parent>
11
      <groupId>org.gvsig</groupId>
12
      <artifactId>org.gvsig.gpe</artifactId>
13
      <version>2.1.76</version>
14
  </parent>
15
    
16
  <modules>
17
    <module>org.gvsig.gpe.app.mainplugin</module>
18
  </modules>
19
</project>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/buildNumber.properties
1
#Tue Jan 15 14:15:59 CET 2019
2
buildNumber=2178
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GML-lines.gml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<gml:FeatureCollection xmlns:cit="http://www.gvsig.com/cit" xmlns:gml="http://www.opengis.net/gml"
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
  xsi:schemaLocation="http://www.gvsig.com/cit GML-lines.xsd">
5
  <gml:boundedBy>
6
    <gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#23030">
7
      <gml:coordinates decimal="." cs="," ts=" ">
8
        627820.0,4191291.0 797117.0,4519166.0
9
      </gml:coordinates>
10
    </gml:Box>
11
  </gml:boundedBy>
12
  <gml:featureMember>
13
    <cit:lines>
14
      <cit:the_geom>
15
        <gml:MultiLineString srsName='0'>
16
          <gml:lineStringMember>
17
            <gml:LineString srsName='0'>
18
              <gml:coordinates>
19
                685442.45,4209825.64 685445.64,4209832.3 685450.18,4209842.27 685452.54,4209848.61
20
                685454.35,4209855.13 685454.85,4209858.27 685455.09,4209862.0 685454.91,4209874.11
21
                685454.53,4209898.4 685454.28,4209907.47 685454.16,4209919.58 685454.28,4209927.52
22
                685454.59,4209935.16 685455.15,4209941.24 685455.71,4209947.12 685456.71,4209953.46
23
                685458.2,4209959.42 685460.37,4209966.78 685463.29,4209976.35 685467.33,4209986.88
24
                685472.11,4209999.24 685481.62,4210024.05 685492.81,4210052.4 685505.24,4210084.23
25
                685518.53,4210118.29 685532.01,4210152.78 685546.0,4210188.26 685558.49,4210220.89
26
                685567.62,4210243.65 685580.8,4210277.59 685595.08,4210313.87 685611.48,4210355.63
27
                685629.36,4210402.89 685636.82,4210425.32 685641.98,4210442.14 685647.76,4210465.16
28
                685651.17,4210482.16 685654.96,4210501.95 685659.5,4210529.06 685666.03,4210565.48
29
                685673.49,4210609.46 685679.64,4210645.81 685687.96,4210693.82 685694.74,4210732.84
30
                685703.62,4210787.18 685705.1,4210802.29 685706.78,4210822.51 685707.28,4210846.57
31
                685707.29,4210885.98 685706.54,4210924.01 685706.17,4210959.12 685705.62,4210997.7
32
                685705.12,4211037.34 685705.05,4211052.13 685705.11,4211060.57 685705.36,4211065.16
33
                685705.98,4211071.62 685706.85,4211076.71 685707.65,4211079.79 685709.46,4211085.82
34
                685712.01,4211092.34 685715.33,4211099.63 685717.79,4211103.89 685721.01,4211108.76
35
                685726.04,4211114.97 685733.19,4211121.81 685741.13,4211127.81 685762.0,4211141.13
36
                685790.6,4211159.76 685819.92,4211178.05 685840.13,4211191.4 685876.04,4211214.73
37
                685910.26,4211236.36 685947.84,4211260.81 685970.7,4211275.18 685978.54,4211280.33
38
                685984.57,4211284.24 685990.04,4211287.91 685995.32,4211291.82 686000.5,4211296.25
39
                686006.29,4211301.77 686011.51,4211307.92 686015.49,4211313.64 686018.54,4211319.1
40
                686021.77,4211326.0 686024.38,4211332.37 686025.68,4211337.71 686026.68,4211342.12
41
                686027.24,4211347.59 686027.55,4211353.28 686027.49,4211359.18 686027.24,4211365.01
42
                686026.37,4211371.47 686025.13,4211377.54 686022.95,4211386.23 686018.55,4211400.12
43
                686012.83,4211417.17 686006.31,4211433.05 686001.96,4211441.8 685996.38,4211450.98
44
                685990.48,4211459.42 685982.62,4211470.37 685977.53,4211477.95 685973.24,4211484.78
45
                685970.06,4211491.12 685967.28,4211497.98 685965.48,4211503.69 685963.98,4211509.47
46
                685962.55,4211515.8 685962.06,4211521.7 685961.87,4211527.75 685962.0,4211535.89
47
                685962.74,4211544.27 685964.79,4211553.55 685968.4,4211565.73 685976.23,4211587.05
48
                685987.17,4211614.13 686000.84,4211647.18 686005.87,4211656.89 686010.28,4211663.85
49
                686015.32,4211669.62 686020.98,4211674.96 686027.32,4211679.12 686034.91,4211682.97
50
                686043.53,4211686.18 686050.06,4211687.99 686055.1,4211688.79 686061.23,4211689.03
51
                686068.94,4211688.72 686074.1,4211687.98 686081.25,4211686.17 686087.69,4211683.94
52
                686094.72,4211680.71 686102.31,4211676.73 686116.9,4211668.17 686123.41,4211664.76
53
                686128.88,4211662.15 686136.47,4211659.23 686144.84,4211656.69 686152.18,4211655.2
54
                686160.14,4211654.09 686169.28,4211653.53 686175.29,4211653.78 686182.69,4211654.71
55
                686191.02,4211656.89 686202.4,4211660.61 686247.0,4211676.13 686294.0,4211692.61
56
                686339.89,4211708.57 686374.31,4211720.73 686427.25,4211739.29 686518.08,4211771.05
57
                686623.13,4211807.59 686707.63,4211837.12 686801.38,4211869.74 686866.31,4211892.58
58
                686889.95,4211900.29 686899.83,4211903.21 686909.04,4211905.13 686917.55,4211906.13
59
                686924.77,4211906.25 686932.54,4211905.88 686940.59,4211904.95 686948.37,4211902.71
60
                686954.65,4211900.35 686960.06,4211897.5 686965.56,4211893.86 686971.47,4211888.95
61
                686975.57,4211884.85 686980.05,4211878.89 686984.76,4211871.46 686989.85,4211862.76
62
                687003.83,4211836.83 687024.51,4211797.26 687038.8,4211769.41 687050.79,4211747.02
63
                687063.59,4211722.16 687070.43,4211709.98 687074.96,4211703.48 687081.43,4211695.03
64
                687088.44,4211686.91 687099.2,4211675.98 687110.31,4211665.63 687115.41,4211661.53
65
                687120.88,4211657.81 687124.47,4211655.6 687130.13,4211652.68 687136.16,4211650.14
66
                687141.2,4211648.52 687146.05,4211647.47 687151.34,4211646.66 687155.94,4211646.22
67
                687162.71,4211646.04 687168.54,4211646.54 687174.01,4211647.35 687179.85,4211649.02
68
                687186.19,4211651.38 687191.73,4211653.43 687203.46,4211659.44 687215.77,4211667.14
69
                687237.09,4211680.73 687250.24,4211688.9 687256.52,4211692.57 687263.36,4211695.73
70
                687268.64,4211697.85 687275.48,4211699.59 687285.04,4211701.62 687303.26,4211705.23
71
                687347.55,4211713.78 687371.19,4211718.48 687379.77,4211720.34 687385.62,4211722.02
72
                687389.97,4211723.69 687394.07,4211725.43 687397.3,4211727.1 687401.09,4211729.4
73
                687404.7,4211731.88 687408.31,4211734.74 687413.28,4211739.4 687419.12,4211745.28
74
                687432.18,4211758.95 687440.92,4211767.43 687447.08,4211772.71 687451.8,4211776.12
75
                687455.28,4211778.36 687460.94,4211781.34 687467.66,4211784.2 687475.9,4211786.54
76
                687483.11,4211788.22 687491.2,4211788.9 687497.29,4211789.27 687503.6,4211789.08
77
                687510.81,4211788.46 687518.03,4211787.22 687526.05,4211785.17 687533.57,4211782.81
78
                687539.08,4211780.63 687547.41,4211776.47 687557.8,4211770.39 687580.23,4211756.79
79
                687620.42,4211732.47 687657.45,4211710.51 687693.86,4211688.98 687736.42,4211664.12
80
                687766.42,4211646.38 687777.99,4211639.99 687791.39,4211633.11 687797.17,4211630.51
81
                687804.69,4211627.77 687811.53,4211625.97 687818.74,4211624.67 687828.59,4211623.94
82
                687838.98,4211623.69 687848.8,4211624.19 687857.51,4211625.43 687867.56,4211627.97
83
                687877.26,4211631.7 687885.91,4211635.55 687894.09,4211639.88 687901.8,4211644.53
84
                687912.81,4211651.74 687926.27,4211660.97 687946.23,4211674.45 687974.31,4211693.56
85
                687982.6,4211698.98 687990.62,4211703.45 687997.08,4211706.68 688003.92,4211709.04
86
                688009.77,4211710.53 688015.61,4211711.34 688021.4,4211711.58 688027.8,4211711.46
87
                688034.24,4211711.08 688040.27,4211710.4 688046.11,4211709.16 688053.08,4211707.05
88
                688061.29,4211703.76 688067.17,4211701.04 688073.14,4211697.62 688077.36,4211694.83
89
                688083.01,4211690.44 688089.04,4211684.91 688093.02,4211680.07 688097.55,4211674.24
90
                688101.16,4211668.46 688104.2,4211662.69 688107.61,4211653.76 688110.23,4211645.62
91
                688117.74,4211617.83 688126.86,4211585.46 688135.74,4211553.45 688141.28,4211533.13
92
                688142.4,4211528.09 688143.39,4211522.01 688143.83,4211516.67 688143.7,4211511.36
93
                688143.21,4211505.58 688142.09,4211500.24 688140.15,4211494.58 688137.64,4211489.57
94
                688134.18,4211484.32 688129.23,4211477.66 688123.45,4211470.89 688118.35,4211465.3
95
                688113.65,4211459.68 688110.79,4211455.39 688107.55,4211449.74 688104.75,4211444.15
96
                688103.26,4211440.3 688102.39,4211437.16 688101.96,4211433.12 688101.52,4211429.27
97
                688101.58,4211423.68 688101.77,4211419.77 688102.38,4211415.31 688103.88,4211409.35
98
                688106.24,4211402.83 688111.59,4211391.55 688117.93,4211378.88 688133.52,4211348.17
99
                688143.77,4211327.58 688160.61,4211294.7 688166.81,4211283.94 688171.72,4211276.55
100
                688176.44,4211270.96 688181.05,4211266.3 688186.08,4211262.14 688190.61,4211259.42
101
                688197.45,4211255.82 688205.66,4211252.53 688212.63,4211250.54 688222.87,4211248.32
102
                688237.18,4211246.09 688260.72,4211243.3 688277.19,4211241.01 688288.69,4211238.46
103
                688301.78,4211235.05 688309.54,4211231.96 688318.12,4211227.61 688329.94,4211220.4
104
                688345.15,4211210.11 688361.75,4211198.94 688414.62,4211163.09 688457.52,4211133.97
105
                688473.81,4211123.29 688481.15,4211117.95 688487.8,4211112.54 688491.21,4211108.77
106
                688495.07,4211104.17 688499.05,4211098.71 688501.72,4211094.3 688504.26,4211089.29
107
                688507.19,4211082.33 688509.36,4211075.69 688511.97,4211065.34 688513.9,4211056.34
108
                688516.5,4211043.7 688518.06,4211037.24 688519.68,4211031.8 688521.79,4211026.15
109
                688524.22,4211021.3 688526.57,4211017.15 688530.55,4211012.25 688534.47,4211007.9
110
                688540.55,4211002.52 688546.83,4210997.3 688570.02,4210981.48 688602.57,4210959.46
111
                688625.68,4210944.03 688634.88,4210938.75 688644.75,4210933.61 688652.83,4210930.19
112
                688659.92,4210927.71 688665.64,4210926.34 688671.54,4210925.54 688677.19,4210925.29
113
                688684.16,4210925.47 688690.06,4210926.34 688696.06,4210927.7 688702.46,4210929.94
114
                688708.56,4210932.73 688715.12,4210936.71 688721.65,4210941.3 688726.38,4210945.4
115
                688731.29,4210950.43 688736.39,4210956.46 688741.36,4210963.32 688746.02,4210971.02
116
                688752.55,4210985.16 688762.43,4211009.48 688776.16,4211042.4 688789.34,4211074.67
117
                688796.04,4211089.3 688800.39,4211097.31 688802.99,4211101.45 688806.47,4211106.48
118
                688811.63,4211112.13 688817.23,4211117.35 688823.92,4211122.48 688829.89,4211125.9
119
                688836.3,4211129.0 688842.2,4211131.24 688848.67,4211133.17 688853.89,4211134.53
120
                688863.38,4211135.88 688871.9,4211136.99 688882.22,4211137.86 688899.31,4211138.67
121
                688938.64,4211140.72 688963.03,4211142.21 688974.03,4211142.21 688979.2,4211141.83
122
                688985.91,4211140.84 688990.76,4211139.6 688996.78,4211137.61 689002.68,4211134.94
123
                689009.58,4211131.34 689017.02,4211126.46 689022.62,4211122.42 689029.64,4211116.52
124
                689034.17,4211112.19 689037.92,4211107.63 689042.19,4211101.39 689045.11,4211095.74
125
                689049.02,4211087.0 689052.37,4211077.88 689054.49,4211070.61 689064.48,4211028.67
126
                689068.77,4211009.6 689072.5,4210995.94 689075.98,4210984.32 689080.76,4210972.12
127
                689085.73,4210960.51 689090.76,4210950.34 689097.23,4210939.35 689109.9,4210918.32
128
                689120.83,4210900.23 689126.55,4210890.05 689132.52,4210878.37 689141.52,4210861.39
129
                689146.44,4210853.01 689151.41,4210844.93 689160.61,4210832.84 689169.24,4210823.54
130
                689175.77,4210817.45 689189.94,4210806.12 689198.52,4210800.78 689206.35,4210796.8
131
                689214.5,4210793.76 689224.25,4210791.16 689233.33,4210789.36 689243.69,4210788.18
132
                689251.77,4210787.93 689260.6,4210788.37 689271.58,4210789.98 689283.52,4210792.52
133
                689295.89,4210795.57 689343.54,4210807.48 689383.49,4210818.14 689428.28,4210829.74
134
                689468.72,4210839.91 689484.6,4210844.37 689500.81,4210849.7 689523.2,4210858.09
135
                689552.52,4210870.32 689609.49,4210894.01 689641.29,4210907.35 689650.68,4210911.63
136
                689657.02,4210915.05 689661.09,4210917.27 689665.38,4210920.26 689669.61,4210923.8
137
                689673.09,4210927.65 689676.93,4210932.95 689680.97,4210940.41 689685.57,4210950.03
138
                689699.31,4210982.99 689711.61,4211011.72 689728.01,4211050.55 689735.41,4211066.84
139
                689739.07,4211073.61 689741.81,4211077.83 689746.41,4211083.48 689750.45,4211087.77
140
                689754.84,4211091.15 689760.38,4211094.32 689767.78,4211097.73 689782.58,4211103.7
141
                689810.88,4211114.74 689831.77,4211123.12 689857.07,4211133.36 689883.65,4211145.14
142
                689887.45,4211146.63
143
              </gml:coordinates>
144
            </gml:LineString>
145
          </gml:lineStringMember>
146
        </gml:MultiLineString>
147
      </cit:the_geom>
148
      <cit:ENTITY>Complex Chain</cit:ENTITY>
149
      <cit:LAYER>22</cit:LAYER>
150
      <cit:LEVEL>22.0</cit:LEVEL>
151
      <cit:ELEVATION>0.0</cit:ELEVATION>
152
      <cit:COLOR>6.0</cit:COLOR>
153
      <cit:ID>12106.0</cit:ID>
154
      <cit:ID_PONT></cit:ID_PONT>
155
      <cit:NOMBRE>CV-950</cit:NOMBRE>
156
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
157
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
158
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
159
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
160
      <cit:ARCEN>1.0</cit:ARCEN>
161
      <cit:TUNEL>false</cit:TUNEL>
162
      <cit:URBANA>false</cit:URBANA>
163
      <cit:TIPO>COPUT</cit:TIPO>
164
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
165
      <cit:FROM_NODE>1390.0</cit:FROM_NODE>
166
      <cit:TO_NODE>1607.0</cit:TO_NODE>
167
    </cit:lines>
168
  </gml:featureMember>
169
  <gml:featureMember>
170
    <cit:lines>
171
      <cit:the_geom>
172
        <gml:MultiLineString srsName='0'>
173
          <gml:lineStringMember>
174
            <gml:LineString srsName='0'>
175
              <gml:coordinates>
176
                682619.4,4214407.51 682627.47,4214397.34 682637.04,4214385.27 682653.65,4214366.59
177
                682669.84,4214350.52 682676.29,4214344.84 682679.89,4214342.24 682683.67,4214339.72
178
                682687.03,4214337.63 682691.56,4214335.62 682696.77,4214333.69 682702.64,4214332.43
179
                682709.27,4214331.34 682717.08,4214330.5 682727.07,4214329.75 682755.64,4214328.25
180
                682763.54,4214327.58 682768.57,4214326.83 682774.7,4214325.65 682781.67,4214323.89
181
                682790.14,4214321.38 682802.45,4214316.95 682810.76,4214313.6 682825.09,4214307.32
182
                682832.98,4214303.38 682838.94,4214299.77 682845.55,4214295.18 682852.26,4214289.23
183
                682860.32,4214281.26 682869.11,4214272.81 682873.9,4214269.04 682878.77,4214265.68
184
                682883.36,4214262.95 682888.9,4214260.1 682896.7,4214256.83 682905.18,4214254.14
185
                682921.86,4214249.96 682928.66,4214248.2 682934.37,4214246.44 682940.92,4214244.17
186
                682947.3,4214241.49 682956.34,4214236.98 682969.18,4214230.11 682991.4,4214217.8
187
                683002.03,4214211.1 683007.24,4214207.24 683010.84,4214204.06 683014.79,4214199.28
188
                683018.9,4214193.41 683022.24,4214187.59 683026.61,4214178.28 683032.48,4214163.44
189
                683049.34,4214117.8 683068.38,4214064.12 683087.4,4214011.12 683102.25,4213966.4
190
                683117.77,4213910.21 683125.14,4213884.22 683129.59,4213871.64 683134.55,4213859.32
191
                683146.03,4213834.79 683157.43,4213813.96 683170.02,4213791.82 683193.92,4213750.96
192
                683204.23,4213732.4 683209.52,4213722.09 683212.0,4213716.79 683213.46,4213712.86
193
                683217.24,4213702.55 683220.93,4213689.88 683224.62,4213676.88 683227.89,4213662.63
194
                683234.01,4213633.4 683242.07,4213595.82 683251.04,4213553.85 683260.76,4213510.09
195
                683268.9,4213472.7 683281.39,4213415.25 683293.31,4213361.24 683296.24,4213348.14
196
                683298.1,4213341.38 683300.77,4213334.13 683302.86,4213329.45 683306.39,4213322.66
197
                683315.03,4213307.91 683334.5,4213276.93 683371.32,4213219.22 683401.93,4213170.75
198
                683438.83,4213111.79 683446.11,4213099.87 683450.73,4213090.06 683452.91,4213083.86
199
                683454.42,4213078.16 683455.1,4213072.2 683455.35,4213065.92 683455.18,4213060.38
200
                683454.26,4213053.88 683452.92,4213045.58 683452.33,4213038.54 683452.25,4213034.26
201
                683452.33,4213029.9 683452.92,4213024.54 683454.09,4213020.21 683455.77,4213014.76
202
                683457.28,4213011.16 683459.79,4213006.88 683463.08,4213002.7 683464.35,4213001.49
203
                683465.73,4213000.37 683469.09,4212997.77 683473.54,4212995.25 683477.9,4212993.91
204
                683482.52,4212993.15 683487.3,4212992.99 683493.85,4212993.24 683501.91,4212994.75
205
                683515.0,4212998.52 683533.34,4213004.02 683541.9,4213006.54 683548.53,4213008.05
206
                683553.55,4213008.63 683558.25,4213008.8 683563.96,4213008.47 683569.25,4213007.63
207
                683574.2,4213005.95 683580.16,4213003.44 683585.59,4213000.19 683590.38,4212996.25
208
                683595.67,4212991.05 683600.03,4212985.77 683603.97,4212979.5 683607.41,4212972.87
209
                683609.93,4212966.92 683611.94,4212960.47 683613.12,4212955.02 683615.54,4212942.64
210
                683617.89,4212931.83 683620.65,4212922.3 683623.59,4212914.84 683626.69,4212908.55
211
                683629.88,4212903.52 683638.66,4212892.69 683652.51,4212877.01 683662.66,4212866.53
212
                683667.87,4212860.24 683673.24,4212852.86 683678.78,4212845.18 683684.65,4212834.95
213
                683691.43,4212821.74 683692.61,4212819.39 683697.14,4212810.08 683711.24,4212781.68
214
                683724.9,4212753.63 683743.27,4212715.1 683761.54,4212677.37 683771.45,4212657.09
215
                683783.19,4212632.7 683799.37,4212599.71 683804.82,4212588.61 683813.3,4212573.27
216
                683824.88,4212553.65 683852.14,4212506.93 683882.41,4212457.27 683917.58,4212399.84
217
                683937.77,4212365.57 683955.9,4212334.55 683982.82,4212285.38 684005.72,4212242.16
218
                684031.05,4212195.44 684065.86,4212130.88 684085.57,4212094.49 684089.51,4212087.02
219
                684096.56,4212073.86 684107.79,4212052.53 684126.25,4212018.37 684139.27,4211995.31
220
                684148.38,4211980.62 684156.44,4211968.54 684163.83,4211959.41 684183.95,4211935.88
221
                684221.53,4211894.09 684253.22,4211858.85 684258.59,4211852.48 684263.04,4211847.19
222
                684266.87,4211841.63 684271.49,4211834.17 684274.35,4211828.64 684277.28,4211821.76
223
                684279.63,4211814.55 684281.23,4211807.84 684283.16,4211798.85 684285.0,4211785.94
224
                684287.69,4211766.49 684291.55,4211739.88 684293.22,4211729.52 684294.65,4211721.31
225
                684297.04,4211713.39 684299.22,4211707.35 684302.04,4211701.73 684304.43,4211697.36
226
                684307.66,4211692.58 684311.62,4211687.48 684316.1,4211682.69 684321.41,4211677.59
227
                684330.68,4211668.96 684344.93,4211657.54 684357.63,4211648.28 684368.99,4211640.06
228
                684395.21,4211622.89 684418.45,4211608.58 684444.64,4211592.06 684496.9,4211559.58
229
                684524.21,4211542.35 684538.23,4211533.97 684548.01,4211529.04 684555.9,4211525.86
230
                684561.02,4211524.26 684566.06,4211523.43 684572.36,4211522.84 684582.68,4211522.67
231
                684618.82,4211523.76 684628.14,4211523.76 684634.27,4211523.51 684643.25,4211522.67
232
                684652.99,4211520.99 684665.95,4211518.24 684681.73,4211513.62 684705.15,4211506.25
233
                684722.55,4211499.74 684730.19,4211496.13 684736.74,4211492.11 684739.68,4211490.09
234
                684749.67,4211481.29 684759.87,4211470.61 684771.21,4211457.61 684792.1,4211434.33
235
                684802.74,4211421.27 684810.8,4211410.63 684818.91,4211397.94 684824.28,4211388.46
236
                684829.49,4211378.15 684837.2,4211360.65 684852.04,4211324.98 684856.56,4211316.04
237
                684858.66,4211312.26 684861.94,4211307.57 684865.71,4211302.79 684872.76,4211294.57
238
                684888.45,4211277.41 684902.19,4211263.36 684908.49,4211257.99 684915.04,4211253.3
239
                684920.58,4211249.52 684926.66,4211245.95 684933.88,4211242.18 684939.75,4211240.0
240
                684947.3,4211237.65 684959.47,4211234.47 684984.07,4211229.02 684998.45,4211225.94
241
                685024.14,4211219.4 685038.91,4211214.87 685047.26,4211211.72 685055.15,4211207.86
242
                685061.19,4211203.83 685066.65,4211199.06 685070.85,4211194.36 685074.88,4211188.74
243
                685079.24,4211181.78 685081.17,4211178.12 685084.94,4211167.98 685090.57,4211151.46
244
                685101.46,4211120.35 685108.59,4211103.02 685113.3,4211093.04 685117.99,4211084.68
245
                685123.95,4211075.96 685131.17,4211066.32 685137.19,4211060.05 685144.92,4211052.01
246
                685153.87,4211044.0 685168.32,4211032.15 685188.02,4211017.76 685205.48,4211005.94
247
                685221.14,4210995.33 685229.03,4210989.38 685233.56,4210985.44 685237.76,4210982.0
248
                685242.96,4210977.14 685249.51,4210970.6 685256.8,4210963.0 685266.2,4210952.52
249
                685299.75,4210916.09 685347.64,4210864.0 685390.42,4210817.19 685419.18,4210785.99
250
                685426.9,4210776.68 685431.26,4210770.98 685433.95,4210766.7 685437.03,4210760.31
251
                685440.3,4210752.51 685442.32,4210745.72 685443.83,4210737.17 685445.26,4210726.43
252
                685447.19,4210701.74 685449.96,4210667.07 685451.47,4210651.83 685452.81,4210643.7
253
                685454.32,4210636.91 685457.26,4210627.66 685460.86,4210618.88 685465.81,4210610.16
254
                685474.71,4210595.49 685488.36,4210576.17 685505.49,4210551.27 685529.39,4210516.26
255
                685535.67,4210506.23 685540.37,4210497.18 685543.31,4210490.39 685546.25,4210481.92
256
                685548.66,4210473.25 685550.51,4210465.78 685551.26,4210459.75 685551.68,4210453.12
257
                685552.02,4210446.12 685552.02,4210439.58 685551.68,4210433.29 685550.68,4210426.67
258
                685548.91,4210418.79 685546.73,4210412.77 685540.61,4210397.68 685529.54,4210371.89
259
                685512.61,4210333.46 685495.83,4210294.93 685474.11,4210243.85 685450.53,4210189.51
260
                685422.45,4210125.01 685412.88,4210102.79 685408.43,4210091.47 685405.93,4210084.13
261
                685402.9,4210075.75 685399.88,4210066.36 685397.95,4210058.31 685396.28,4210047.3
262
                685395.36,4210039.5 685394.86,4210032.55 685394.77,4210022.99 685395.95,4210009.66
263
                685397.04,4209999.52 685398.3,4209990.21 685400.97,4209972.33 685405.0,4209945.0
264
                685409.95,4209914.53 685413.48,4209895.19 685415.07,4209886.75 685417.42,4209878.53
265
                685419.77,4209870.73 685423.05,4209862.35 685426.48,4209854.66 685429.76,4209847.62
266
                685434.2,4209839.75 685438.57,4209832.21 685442.45,4209825.64
267
              </gml:coordinates>
268
            </gml:LineString>
269
          </gml:lineStringMember>
270
        </gml:MultiLineString>
271
      </cit:the_geom>
272
      <cit:ENTITY>Complex Chain</cit:ENTITY>
273
      <cit:LAYER>22</cit:LAYER>
274
      <cit:LEVEL>22.0</cit:LEVEL>
275
      <cit:ELEVATION>0.0</cit:ELEVATION>
276
      <cit:COLOR>6.0</cit:COLOR>
277
      <cit:ID>12187.0</cit:ID>
278
      <cit:ID_PONT>3076</cit:ID_PONT>
279
      <cit:NOMBRE>CV-925</cit:NOMBRE>
280
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
281
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
282
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
283
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
284
      <cit:ARCEN>1.0</cit:ARCEN>
285
      <cit:TUNEL>false</cit:TUNEL>
286
      <cit:URBANA>false</cit:URBANA>
287
      <cit:TIPO>COPUT</cit:TIPO>
288
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
289
      <cit:FROM_NODE>1259.0</cit:FROM_NODE>
290
      <cit:TO_NODE>1390.0</cit:TO_NODE>
291
    </cit:lines>
292
  </gml:featureMember>
293
  <gml:featureMember>
294
    <cit:lines>
295
      <cit:the_geom>
296
        <gml:MultiLineString srsName='0'>
297
          <gml:lineStringMember>
298
            <gml:LineString srsName='0'>
299
              <gml:coordinates>
300
                679289.43,4207945.31 679295.33,4207945.36 679300.3,4207945.75 679304.6,4207946.14
301
                679308.6,4207946.74 679313.49,4207947.82 679318.87,4207949.65 679323.02,4207951.33
302
                679326.66,4207953.19 679331.99,4207955.86 679336.39,4207958.57 679340.39,4207960.99
303
                679347.19,4207965.22 679356.09,4207971.84 679399.05,4208005.57 679423.1,4208024.36
304
                679500.43,4208083.05 679510.95,4208090.68 679518.54,4208095.99 679526.84,4208101.42
305
                679536.52,4208107.14 679546.2,4208112.17 679558.64,4208118.09 679577.89,4208126.66
306
                679609.84,4208140.34 679630.74,4208149.91 679639.83,4208154.05 679644.37,4208156.31
307
                679651.38,4208159.76 679659.78,4208164.69 679666.88,4208169.03 679690.47,4208183.42
308
                679723.25,4208203.25 679790.97,4208245.25 679818.25,4208261.95 679837.51,4208273.58
309
                679851.04,4208281.77 679861.31,4208288.47 679868.42,4208292.42 679874.25,4208295.48
310
                679879.97,4208298.04 679885.31,4208299.92 679892.4,4208302.07 679910.08,4208305.42
311
                679950.54,4208313.5 679961.15,4208315.46 679977.35,4208319.31 680002.54,4208326.41
312
                680028.39,4208334.59 680041.79,4208339.21 680049.99,4208342.07 680059.47,4208345.52
313
                680064.61,4208347.88 680071.22,4208351.54 680079.52,4208356.27 680094.91,4208365.63
314
                680113.87,4208378.16 680133.7,4208391.36 680141.9,4208396.39 680147.92,4208399.85
315
                680153.85,4208402.9 680161.45,4208405.86 680171.3,4208409.39 680192.73,4208416.1
316
                680222.84,4208425.36 680253.02,4208434.32 680265.07,4208437.87 680271.79,4208439.55
317
                680280.98,4208441.13 680287.0,4208442.11 680300.27,4208443.28 680324.86,4208445.06
318
                680358.45,4208447.23 680420.52,4208451.68 680456.7,4208454.82 680479.22,4208457.49
319
                680544.65,4208469.9 680602.98,4208480.95 680637.92,4208489.71 680710.69,4208509.14
320
                680797.25,4208532.31 680891.4,4208558.04 680959.37,4208577.53 680968.55,4208579.6
321
                680976.95,4208580.68 680986.23,4208581.18 681012.87,4208580.29 681061.34,4208575.95
322
                681135.27,4208569.94 681189.53,4208565.99 681221.28,4208564.61 681269.92,4208563.13
323
                681306.96,4208563.33 681323.43,4208562.83 681335.38,4208562.14 681346.64,4208560.86
324
                681356.32,4208559.38 681372.48,4208556.44 681408.04,4208549.73 681463.23,4208538.89
325
                681499.03,4208533.0 681508.22,4208531.81 681518.59,4208531.42 681531.13,4208531.71
326
                681539.88,4208532.41 681549.56,4208533.98 681562.3,4208537.14 681613.63,4208550.35
327
                681733.76,4208581.0 681816.32,4208602.89 681835.56,4208607.4 681849.49,4208610.56
328
                681858.18,4208612.14 681865.59,4208612.93 681874.85,4208613.22 681884.33,4208613.13
329
                681891.84,4208612.34 681905.56,4208610.17 681976.72,4208599.9 682048.07,4208589.07
330
                682137.7,4208575.75 682214.49,4208564.03 682246.01,4208559.51 682260.33,4208558.03
331
                682272.68,4208557.24 682285.91,4208556.94 682310.01,4208557.83 682367.77,4208560.2
332
                682418.76,4208562.27 682447.09,4208562.95 682464.52,4208563.53 682475.59,4208564.52
333
                682488.43,4208566.2 682508.18,4208569.16 682553.28,4208579.3 682622.88,4208594.39
334
                682665.29,4208604.24 682675.46,4208607.0 682684.06,4208609.96 682690.28,4208612.52
335
                682695.71,4208615.58 682700.55,4208618.74 682705.75,4208622.74 682711.19,4208627.18
336
                682716.62,4208633.0 682728.27,4208647.1 682750.1,4208676.31 682789.36,4208726.86
337
                682828.15,4208777.72 682876.41,4208840.69 682918.74,4208895.95 682932.46,4208912.9
338
                682938.88,4208920.69 682944.02,4208925.73 682951.13,4208932.14 682963.53,4208942.65
339
                682981.71,4208957.05 683017.16,4208984.96 683036.86,4209000.39 683045.95,4209007.0
340
                683051.97,4209010.85 683057.6,4209013.71 683063.33,4209016.27 683069.95,4209018.44
341
                683076.08,4209020.02 683083.16,4209020.89 683101.04,4209021.29 683130.94,4209021.09
342
                683143.65,4209021.47 683150.47,4209022.06 683158.08,4209023.05 683164.4,4209023.93
343
                683172.69,4209025.91 683188.07,4209030.85 683209.39,4209039.23 683264.28,4209061.4
344
                683276.98,4209067.01 683284.09,4209070.26 683288.34,4209072.44 683291.5,4209074.61
345
                683295.65,4209077.57 683299.31,4209080.43 683303.85,4209084.67 683307.6,4209088.91
346
                683312.64,4209094.54 683328.22,4209115.7 683343.02,4209135.8 683347.47,4209141.52
347
                683352.61,4209147.34 683357.15,4209151.69 683362.29,4209155.53 683367.68,4209159.15
348
                683375.29,4209162.7 683384.18,4209166.15 683405.97,4209172.44 683456.05,4209186.26
349
                683492.53,4209196.58 683511.99,4209202.1 683557.39,4209214.62 683578.27,4209220.03
350
                683589.92,4209222.5 683601.48,4209224.57 683611.55,4209225.76 683624.89,4209226.84
351
                683641.88,4209227.83 683672.95,4209229.89 683684.6,4209230.68 683690.92,4209231.57
352
                683696.65,4209232.36 683701.69,4209233.35 683705.44,4209234.43 683709.1,4209236.41
353
                683712.36,4209238.48 683718.15,4209242.83 683724.47,4209248.65 683731.48,4209255.85
354
                683739.85,4209265.28 683749.04,4209275.05 683755.56,4209281.37 683761.19,4209286.2
355
                683766.72,4209290.15 683771.92,4209293.07 683776.86,4209295.34 683782.99,4209297.02
356
                683788.62,4209298.0 683792.96,4209298.5 683800.37,4209298.4 683809.06,4209297.02
357
                683827.63,4209294.06 683866.21,4209287.44 683928.39,4209276.9 683964.19,4209270.99
358
                683972.39,4209269.91 683978.81,4209269.51 683984.34,4209269.51 683989.18,4209269.81
359
                683994.02,4209270.4 683999.06,4209271.68 684005.18,4209274.05 684018.27,4209280.76
360
                684060.83,4209303.73 684110.26,4209330.53 684120.81,4209336.13 684125.35,4209338.59
361
                684129.4,4209341.46 684133.95,4209344.81 684139.68,4209349.15 684145.0,4209353.99
362
                684151.81,4209360.7 684183.89,4209394.48 684205.11,4209415.48 684212.52,4209422.48
363
                684219.23,4209427.91 684224.47,4209431.56 684230.98,4209434.9 684237.3,4209437.47
364
                684246.29,4209440.13 684255.54,4209441.99 684268.28,4209443.96 684281.81,4209445.54
365
                684298.57,4209447.2 684310.52,4209448.39 684318.82,4209448.39 684326.92,4209447.5
366
                684333.91,4209445.92 684342.28,4209443.26 684355.82,4209437.93 684358.46,4209436.71
367
                684392.81,4209421.95 684417.42,4209411.41 684434.87,4209403.83 684442.08,4209401.27
368
                684446.63,4209400.18 684450.18,4209399.79 684455.1,4209399.59 684460.04,4209399.89
369
                684463.69,4209400.68 684467.35,4209401.96 684475.15,4209405.02 684485.29,4209408.66
370
                684489.64,4209410.14 684493.19,4209410.63 684496.55,4209411.13 684500.3,4209411.23
371
                684504.74,4209411.03 684508.39,4209410.24 684512.25,4209409.06 684518.24,4209406.71
372
                684528.22,4209401.68 684539.47,4209395.86 684546.86,4209392.52 684552.59,4209390.44
373
                684557.04,4209390.05 684561.29,4209390.15 684566.03,4209390.64 684568.99,4209391.43
374
                684571.66,4209392.42 684575.3,4209394.1 684578.85,4209396.37 684582.71,4209399.33
375
                684590.9,4209407.21 684625.42,4209445.33 684631.94,4209452.54 684635.5,4209456.29
376
                684639.15,4209459.64 684643.6,4209463.0 684646.66,4209464.87 684650.81,4209466.35
377
                684654.95,4209467.54 684659.89,4209467.83 684664.14,4209468.03 684668.68,4209467.83
378
                684673.82,4209467.04 684681.41,4209465.28 684699.68,4209459.26 684738.63,4209443.11
379
                684771.82,4209428.11 684819.39,4209406.13 684856.89,4209387.8 684877.8,4209376.38
380
                684889.26,4209369.47 684896.27,4209364.64 684903.36,4209358.94 684910.08,4209353.01
381
                684920.45,4209342.36 684934.85,4209326.6 684959.53,4209298.51 684975.02,4209281.56
382
                684981.35,4209275.93 684985.99,4209272.97 684990.14,4209271.0 684994.35,4209269.94
383
                684999.39,4209269.25 685004.13,4209268.96 685007.68,4209269.15 685012.42,4209269.74
384
                685015.78,4209270.53 685021.2,4209272.3 685027.82,4209274.87 685038.18,4209278.61
385
                685062.56,4209287.48 685082.19,4209295.74 685096.11,4209302.65 685134.11,4209323.64
386
                685170.73,4209344.14 685190.37,4209354.49 685197.39,4209358.63 685201.22,4209361.08
387
                685204.67,4209364.04 685208.03,4209367.59 685211.19,4209371.64 685213.76,4209376.47
388
                685215.54,4209380.81 685216.72,4209385.06 685217.42,4209389.5 685217.71,4209402.26
389
                685215.83,4209452.68 685213.95,4209497.19 685211.48,4209546.37 685211.19,4209557.79
390
                685211.19,4209565.78 685211.19,4209571.2 685211.49,4209575.94 685211.98,4209579.89
391
                685212.47,4209582.65 685213.26,4209585.56 685214.64,4209589.6 685216.62,4209593.75
392
                685219.19,4209597.59 685222.45,4209601.74 685225.51,4209605.09 685232.31,4209611.58
393
                685239.41,4209617.69 685247.61,4209623.02 685254.52,4209626.77 685260.05,4209629.24
394
                685265.09,4209630.92 685270.03,4209631.9 685276.55,4209632.4 685281.77,4209632.19
395
                685290.36,4209631.31 685303.79,4209628.74 685336.17,4209621.94 685359.73,4209617.41
396
                685365.96,4209616.62 685371.29,4209616.12 685374.65,4209616.12 685378.6,4209616.32
397
                685383.04,4209616.81 685387.36,4209617.59 685392.89,4209619.47 685397.93,4209621.74
398
                685403.44,4209624.58 685412.03,4209630.0 685435.23,4209647.26 685447.37,4209656.06
399
                685455.86,4209661.38 685461.1,4209664.74 685468.11,4209668.39 685473.72,4209670.94
400
                685479.35,4209673.02 685484.59,4209674.59 685491.01,4209675.68 685498.22,4209676.57
401
                685508.87,4209677.05 685521.59,4209677.93 685536.77,4209679.65
402
              </gml:coordinates>
403
            </gml:LineString>
404
          </gml:lineStringMember>
405
        </gml:MultiLineString>
406
      </cit:the_geom>
407
      <cit:ENTITY>Complex Chain</cit:ENTITY>
408
      <cit:LAYER>22</cit:LAYER>
409
      <cit:LEVEL>22.0</cit:LEVEL>
410
      <cit:ELEVATION>0.0</cit:ELEVATION>
411
      <cit:COLOR>6.0</cit:COLOR>
412
      <cit:ID>12652.0</cit:ID>
413
      <cit:ID_PONT>3140;3141</cit:ID_PONT>
414
      <cit:NOMBRE>CV-949</cit:NOMBRE>
415
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
416
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
417
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
418
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
419
      <cit:ARCEN>1.0</cit:ARCEN>
420
      <cit:TUNEL>false</cit:TUNEL>
421
      <cit:URBANA>false</cit:URBANA>
422
      <cit:TIPO>COPUT</cit:TIPO>
423
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
424
      <cit:FROM_NODE>73.0</cit:FROM_NODE>
425
      <cit:TO_NODE>1395.0</cit:TO_NODE>
426
    </cit:lines>
427
  </gml:featureMember>
428
  <gml:featureMember>
429
    <cit:lines>
430
      <cit:the_geom>
431
        <gml:MultiLineString srsName='0'>
432
          <gml:lineStringMember>
433
            <gml:LineString srsName='0'>
434
              <gml:coordinates>
435
                681918.5,4203788.22 681941.42,4203778.09 681956.47,4203770.65 681964.79,4203765.71
436
                681970.89,4203761.08 681977.83,4203755.51 681986.97,4203747.76 681993.81,4203741.34
437
                682000.86,4203733.46 682013.58,4203718.24 682015.36,4203715.84 682026.61,4203700.61
438
                682037.22,4203686.65 682050.16,4203670.38 682061.93,4203654.24 682073.82,4203637.94
439
                682080.35,4203629.11 682088.13,4203618.6 682102.01,4203600.64 682115.91,4203582.58
440
                682131.46,4203562.0 682160.39,4203524.82 682183.63,4203494.37 682205.38,4203465.53
441
                682219.94,4203447.16 682237.13,4203424.25 682244.4,4203413.95 682254.37,4203399.16
442
                682261.78,4203386.98 682270.85,4203368.84 682276.72,4203355.62 682286.77,4203330.28
443
                682294.65,4203307.82 682297.18,4203301.51 682300.23,4203295.52 682304.23,4203288.48
444
                682310.01,4203280.1 682315.8,4203272.22 682325.05,4203261.2 682335.05,4203251.11
445
                682344.94,4203242.28 682355.44,4203233.9 682362.38,4203229.7 682370.38,4203225.92
446
                682381.64,4203221.18 682392.45,4203217.41 682403.71,4203213.63 682414.96,4203210.59
447
                682424.01,4203209.11 682432.22,4203208.38 682445.48,4203207.96 682479.64,4203209.65
448
                682514.56,4203211.23 682562.41,4203212.79 682597.51,4203214.36 682632.21,4203215.83
449
                682657.12,4203216.35 682670.91,4203216.14 682680.27,4203215.61 682689.01,4203214.77
450
                682701.53,4203213.09 682713.7,4203210.88 682725.38,4203208.36 682740.85,4203204.47
451
                682757.98,4203199.55 682766.29,4203197.34 682771.87,4203196.39 682777.45,4203195.97
452
                682784.25,4203195.77 682791.93,4203196.29 682801.09,4203197.34 682809.72,4203199.34
453
                682822.44,4203203.11 682871.75,4203218.34 682927.48,4203235.04 682982.27,4203251.63
454
                683004.55,4203258.65 683011.18,4203260.55 683016.12,4203262.23 683027.28,4203264.33
455
                683032.02,4203264.86 683038.12,4203265.17 683042.33,4203265.07 683048.81,4203264.53
456
                683057.44,4203262.96 683068.28,4203259.91 683079.72,4203255.6 683100.14,4203246.77
457
                683130.95,4203234.6 683170.68,4203219.07 683201.68,4203206.58 683212.31,4203203.12
458
                683223.04,4203200.28 683235.78,4203197.33 683252.72,4203194.6 683272.02,4203191.59
459
                683280.55,4203189.59 683290.76,4203186.23 683297.39,4203183.07 683305.59,4203177.92
460
                683314.95,4203171.32 683324.95,4203163.43 683334.61,4203155.48 683346.6,4203144.12
461
                683356.49,4203134.03 683366.36,4203122.61 683375.2,4203111.36 683390.96,4203090.69
462
                683398.75,4203081.02 683402.75,4203076.71 683407.78,4203071.7 683412.31,4203068.02
463
                683416.94,4203064.76 683421.78,4203061.92 683427.99,4203058.77 683432.93,4203056.98
464
                683437.25,4203055.83 683441.55,4203054.78 683447.23,4203053.83 683454.92,4203053.41
465
                683464.56,4203053.32 683478.35,4203053.95 683502.95,4203055.51 683554.18,4203057.09
466
                683614.85,4203059.08 683638.59,4203060.22 683650.27,4203060.22 683655.74,4203060.01
467
                683661.95,4203059.38 683666.47,4203058.44 683670.55,4203057.18 683675.13,4203055.07
468
                683681.57,4203051.11 683692.31,4203044.69 683699.45,4203040.9 683705.71,4203038.35
469
                683710.74,4203036.77 683714.71,4203035.8 683719.03,4203035.09 683723.61,4203034.56
470
                683729.12,4203034.48 683734.06,4203034.66 683739.17,4203035.1 683744.11,4203035.89
471
                683749.75,4203037.3 683760.07,4203039.59 683774.23,4203042.85 683794.13,4203047.24
472
                683807.62,4203050.76 683820.94,4203055.25 683831.94,4203058.84 683841.02,4203062.54
473
                683847.45,4203065.27 683854.33,4203068.62 683860.15,4203071.61 683866.15,4203074.87
474
                683872.63,4203078.99 683879.59,4203083.66 683888.41,4203089.91 683895.73,4203096.25
475
                683911.58,4203110.58 683966.49,4203160.04 684033.45,4203219.31 684105.26,4203284.15
476
                684136.14,4203311.48 684146.2,4203320.02 684156.23,4203328.35 684168.66,4203337.06
477
                684182.84,4203345.41 684205.85,4203359.59 684237.05,4203377.7 684252.94,4203386.84
478
                684272.69,4203399.34 684281.68,4203404.0 684290.14,4203407.96 684298.52,4203410.95
479
                684305.92,4203412.98 684316.06,4203414.83 684325.85,4203416.24 684342.39,4203417.18
480
                684362.05,4203416.83 684425.06,4203417.35 684437.8,4203418.23 684445.56,4203419.55
481
                684452.53,4203421.14 684460.11,4203423.16 684467.07,4203425.89 684471.22,4203427.92
482
                684478.6,4203431.95 684487.58,4203437.23 684495.78,4203443.04 684500.63,4203447.09
483
                684505.66,4203451.85 684512.09,4203458.54 684523.09,4203470.31 684540.46,4203490.03
484
                684586.1,4203541.15 684630.95,4203592.17 684662.82,4203628.46 684698.17,4203668.07
485
                684716.45,4203687.73 684727.39,4203697.6 684743.17,4203710.28 684758.21,4203721.78
486
                684776.64,4203735.07 684811.88,4203760.22 684837.77,4203779.29 684866.74,4203800.56
487
                684892.13,4203819.14 684925.36,4203844.14 684956.97,4203867.95 684979.16,4203883.86
488
                685043.23,4203931.73 685052.56,4203938.65 685064.46,4203948.25 685077.11,4203958.43
489
                685089.54,4203969.18 685099.77,4203977.98 685110.88,4203989.08 685139.35,4204016.53
490
                685177.5,4204051.96 685207.28,4204079.4 685244.19,4204114.59 685254.28,4204123.7
491
                685260.8,4204130.39 685266.27,4204136.65 685272.09,4204143.52 685277.02,4204151.18
492
                685283.72,4204162.98 685294.03,4204183.8 685302.94,4204205.11 685320.37,4204249.43
493
                685346.53,4204318.67 685366.96,4204371.21 685393.67,4204440.83 685405.54,4204474.56
494
                685413.48,4204500.36 685416.91,4204513.62 685422.73,4204539.33 685431.2,4204581.64
495
                685438.41,4204621.73 685447.84,4204669.58 685455.86,4204712.16 685468.55,4204776.91
496
                685483.96,4204855.11 685496.91,4204922.63 685510.74,4204998.29 685517.97,4205034.23
497
                685521.58,4205050.87 685524.58,4205062.5 685530.46,4205083.66 685538.4,4205109.73
498
                685551.26,4205151.3 685563.69,4205192.12 685575.84,4205233.38 685584.75,4205260.97
499
                685597.27,4205301.55 685604.56,4205324.63 685607.73,4205334.58 685610.38,4205343.92
500
                685611.88,4205349.55 685613.91,4205358.94 685615.32,4205366.96 685615.87,4205374.94
501
                685615.94,4205381.31 685615.41,4205390.33 685614.53,4205400.37 685613.12,4205409.36
502
                685611.53,4205416.75 685609.24,4205424.33 685606.59,4205431.28 685601.67,4205441.1
503
                685592.94,4205455.54 685570.64,4205489.51 685537.34,4205541.41 685525.81,4205560.27
504
                685520.6,4205568.9 685516.46,4205576.87 685510.91,4205588.28 685508.01,4205596.26
505
                685505.01,4205606.03 685502.98,4205615.89 685502.0,4205624.36 685501.29,4205635.11
506
                685501.38,4205647.88 685502.26,4205666.19 685505.17,4205697.59 685507.46,4205726.01
507
                685509.22,4205745.24 685510.99,4205756.42 685513.19,4205763.56 685514.78,4205768.02
508
                685517.78,4205774.8 685521.57,4205781.76 685525.36,4205787.13 685530.48,4205793.3
509
                685536.71,4205799.88 685546.59,4205809.56 685557.59,4205818.51 685567.02,4205825.46
510
                685578.22,4205832.68 685593.9,4205842.8 685605.53,4205849.56 685631.79,4205865.57
511
                685656.11,4205879.9 685685.89,4205897.48 685725.01,4205921.15 685778.23,4205952.99
512
                685812.93,4205973.75 685839.71,4205990.03 685865.07,4206004.96 685901.02,4206026.17
513
                685916.78,4206035.49 685925.86,4206040.6 685936.62,4206046.33 685948.22,4206052.02
514
                685963.04,4206058.01 685979.44,4206063.73 686000.4,4206070.41 686031.59,4206080.52
515
                686061.47,4206090.9 686082.77,4206097.93 686092.91,4206101.63 686101.2,4206104.89
516
                686113.88,4206109.9 686126.13,4206115.27 686146.73,4206125.55 686159.24,4206131.78
517
                686166.73,4206134.96 686176.85,4206139.0 686188.76,4206142.08 686204.52,4206145.86
518
                686229.19,4206151.93 686254.49,4206157.48 686289.47,4206166.01 686311.1,4206171.2
519
                686325.47,4206174.46 686334.11,4206176.75 686342.13,4206179.3 686349.1,4206181.94
520
                686358.0,4206186.08 686379.75,4206197.77 686389.36,4206202.61 686397.56,4206207.02
521
                686402.5,4206209.66 686407.79,4206212.92 686413.78,4206217.05 686419.82,4206221.68
522
                686426.17,4206227.32 686433.32,4206234.8 686439.84,4206242.55 686447.42,4206252.5
523
                686469.1,4206282.42 686491.65,4206313.36 686523.02,4206355.76 686553.14,4206396.67
524
                686564.04,4206411.85 686571.44,4206422.77 686579.91,4206437.13 686586.5,4206447.83
525
                686593.29,4206457.61 686600.52,4206466.68 686609.76,4206476.68 686618.58,4206484.87
526
                686627.75,4206492.97 686639.47,4206501.69 686659.82,4206515.66 686676.38,4206526.91
527
                686683.52,4206531.93 686693.22,4206538.53 686700.79,4206544.05 686707.49,4206549.6
528
                686714.28,4206555.85 686719.48,4206561.58 686724.94,4206567.92 686734.43,4206580.46
529
                686742.46,4206591.55 686751.19,4206603.71 686765.02,4206623.58 686785.81,4206652.86
530
                686803.5,4206676.75 686811.53,4206686.17 686820.78,4206696.04 686828.28,4206702.46
531
                686836.39,4206709.51 686853.04,4206723.14 686864.38,4206733.04 686869.67,4206738.24
532
                686874.16,4206743.43 686878.04,4206749.51 686881.83,4206756.2 686885.01,4206762.98
533
                686888.89,4206773.11 686893.71,4206787.76 686897.33,4206802.47 686900.94,4206815.57
534
                686906.85,4206833.62 686918.57,4206875.49 686937.52,4206943.03 686939.53,4206951.77
535
                686941.11,4206961.9 686942.08,4206970.88 686942.79,4206981.87 686943.05,4206994.2
536
                686942.7,4207008.29 686941.55,4207031.05 686941.11,4207042.33 686941.11,4207050.22
537
                686941.38,4207055.68 686941.82,4207059.29 686942.88,4207063.57 686944.38,4207067.62
538
                686946.4,4207072.02 686949.58,4207076.95 686953.72,4207082.06 686958.31,4207086.81
539
                686963.69,4207090.78 686970.19,4207094.54 686982.27,4207100.88 687000.59,4207110.28
540
                687010.91,4207115.12 687017.78,4207117.94 687026.07,4207120.84 687034.68,4207123.46
541
                687044.29,4207125.4 687052.58,4207126.1 687063.95,4207126.1 687076.47,4207125.58
542
                687096.11,4207124.08 687121.82,4207122.06 687131.34,4207121.8 687142.54,4207121.36
543
                687151.32,4207121.7 687157.49,4207122.23 687164.45,4207123.38 687171.68,4207124.96
544
                687179.79,4207127.25 687224.1,4207141.67 687264.97,4207155.04 687303.4,4207167.46
545
                687337.2,4207178.53 687349.53,4207182.13 687357.73,4207184.07 687364.17,4207185.22
546
                687369.81,4207185.74 687377.13,4207186.18 687384.45,4207186.62 687400.62,4207187.93
547
                687413.14,4207188.72 687433.85,4207190.22 687453.25,4207192.43 687461.36,4207193.31
548
                687466.27,4207193.39 687470.86,4207192.69 687476.06,4207191.11 687480.14,4207189.45
549
              </gml:coordinates>
550
            </gml:LineString>
551
          </gml:lineStringMember>
552
        </gml:MultiLineString>
553
      </cit:the_geom>
554
      <cit:ENTITY>Complex Chain</cit:ENTITY>
555
      <cit:LAYER>20</cit:LAYER>
556
      <cit:LEVEL>20.0</cit:LEVEL>
557
      <cit:ELEVATION>0.0</cit:ELEVATION>
558
      <cit:COLOR>7.0</cit:COLOR>
559
      <cit:ID>12653.0</cit:ID>
560
      <cit:ID_PONT></cit:ID_PONT>
561
      <cit:NOMBRE>CV-954</cit:NOMBRE>
562
      <cit:ANCHO_C>3.5</cit:ANCHO_C>
563
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
564
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
565
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
566
      <cit:ARCEN>0.0</cit:ARCEN>
567
      <cit:TUNEL>false</cit:TUNEL>
568
      <cit:URBANA>false</cit:URBANA>
569
      <cit:TIPO>Diputaci?n</cit:TIPO>
570
      <cit:ANCHO_BUF>1.75</cit:ANCHO_BUF>
571
      <cit:FROM_NODE>80.0</cit:FROM_NODE>
572
      <cit:TO_NODE>1494.0</cit:TO_NODE>
573
    </cit:lines>
574
  </gml:featureMember>
575
  <gml:featureMember>
576
    <cit:lines>
577
      <cit:the_geom>
578
        <gml:MultiLineString srsName='0'>
579
          <gml:lineStringMember>
580
            <gml:LineString srsName='0'>
581
              <gml:coordinates>
582
                687356.01,4207278.16 687380.67,4207272.49 687434.93,4207258.27 687469.47,4207248.94
583
                687476.96,4207247.16 687481.51,4207246.62 687484.45,4207246.36 687487.22,4207246.53
584
                687490.43,4207247.07 687495.33,4207248.41 687500.77,4207249.92 687506.37,4207251.52
585
                687510.56,4207252.41 687513.86,4207252.5 687516.47,4207252.35 687518.87,4207251.82
586
                687520.44,4207251.15 687521.77,4207250.61 687522.84,4207249.94 687523.56,4207248.96
587
                687524.0,4207247.36 687524.09,4207245.36 687523.65,4207243.0 687522.76,4207239.94
588
                687521.33,4207236.02 687519.19,4207232.5 687513.93,4207225.02 687506.62,4207216.43
589
                687499.55,4207209.98 687494.29,4207205.44 687485.43,4207197.98 687483.03,4207195.04
590
                687481.06,4207191.83 687480.14,4207189.45
591
              </gml:coordinates>
592
            </gml:LineString>
593
          </gml:lineStringMember>
594
        </gml:MultiLineString>
595
      </cit:the_geom>
596
      <cit:ENTITY>Line String</cit:ENTITY>
597
      <cit:LAYER>22</cit:LAYER>
598
      <cit:LEVEL>22.0</cit:LEVEL>
599
      <cit:ELEVATION>0.0</cit:ELEVATION>
600
      <cit:COLOR>6.0</cit:COLOR>
601
      <cit:ID>12657.0</cit:ID>
602
      <cit:ID_PONT></cit:ID_PONT>
603
      <cit:NOMBRE>CV-925</cit:NOMBRE>
604
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
605
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
606
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
607
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
608
      <cit:ARCEN>0.0</cit:ARCEN>
609
      <cit:TUNEL>false</cit:TUNEL>
610
      <cit:URBANA>false</cit:URBANA>
611
      <cit:TIPO>COPUT</cit:TIPO>
612
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
613
      <cit:FROM_NODE>1487.0</cit:FROM_NODE>
614
      <cit:TO_NODE>1494.0</cit:TO_NODE>
615
    </cit:lines>
616
  </gml:featureMember>
617
  <gml:featureMember>
618
    <cit:lines>
619
      <cit:the_geom>
620
        <gml:MultiLineString srsName='0'>
621
          <gml:lineStringMember>
622
            <gml:LineString srsName='0'>
623
              <gml:coordinates>
624
                685442.45,4209825.64 685453.31,4209807.93 685459.27,4209798.59 685467.37,4209786.23
625
                685483.68,4209761.03 685505.6,4209727.85 685530.26,4209690.24 685536.77,4209679.65
626
              </gml:coordinates>
627
            </gml:LineString>
628
          </gml:lineStringMember>
629
        </gml:MultiLineString>
630
      </cit:the_geom>
631
      <cit:ENTITY>Line String</cit:ENTITY>
632
      <cit:LAYER>22</cit:LAYER>
633
      <cit:LEVEL>22.0</cit:LEVEL>
634
      <cit:ELEVATION>0.0</cit:ELEVATION>
635
      <cit:COLOR>6.0</cit:COLOR>
636
      <cit:ID>12658.0</cit:ID>
637
      <cit:ID_PONT></cit:ID_PONT>
638
      <cit:NOMBRE>CV-925</cit:NOMBRE>
639
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
640
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
641
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
642
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
643
      <cit:ARCEN>1.0</cit:ARCEN>
644
      <cit:TUNEL>false</cit:TUNEL>
645
      <cit:URBANA>false</cit:URBANA>
646
      <cit:TIPO>COPUT</cit:TIPO>
647
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
648
      <cit:FROM_NODE>1390.0</cit:FROM_NODE>
649
      <cit:TO_NODE>1395.0</cit:TO_NODE>
650
    </cit:lines>
651
  </gml:featureMember>
652
  <gml:featureMember>
653
    <cit:lines>
654
      <cit:the_geom>
655
        <gml:MultiLineString srsName='0'>
656
          <gml:lineStringMember>
657
            <gml:LineString srsName='0'>
658
              <gml:coordinates>
659
                685536.77,4209679.65 685543.08,4209669.61 685548.25,4209661.0 685551.81,4209654.58
660
                685554.31,4209649.51 685556.54,4209643.89 685558.32,4209638.4 685559.48,4209632.97
661
                685560.01,4209627.98 685560.19,4209622.46 685559.75,4209617.2 685558.78,4209611.72
662
                685556.37,4209603.08 685552.89,4209592.84 685539.35,4209558.24 685521.09,4209511.96
663
                685493.92,4209443.37 685479.67,4209407.85 685463.26,4209366.61 685436.71,4209299.88
664
                685430.22,4209282.23 685428.26,4209275.81 685426.92,4209270.91 685425.85,4209265.12
665
                685425.67,4209261.29 685425.5,4209257.64 685425.49,4209252.32 685425.94,4209247.59
666
                685426.38,4209244.03 685427.72,4209239.04 685429.95,4209232.38 685433.08,4209225.08
667
                685438.06,4209216.28 685443.95,4209207.64 685462.66,4209180.5 685471.99,4209165.95
668
                685476.27,4209158.47 685480.63,4209150.1 685483.58,4209142.44 685486.07,4209134.69
669
                685488.29,4209124.83 685489.81,4209114.23 685492.93,4209074.75 685495.69,4209034.95
670
                685500.33,4208972.88 685503.35,4208932.93 685504.24,4208919.24 685504.33,4208904.63
671
                685504.07,4208894.7 685503.35,4208885.62 685500.69,4208866.53 685494.98,4208836.51
672
                685488.11,4208803.94 685484.82,4208787.24 685483.75,4208780.73 685483.04,4208775.3
673
                685482.33,4208769.06 685482.32,4208764.81 685482.32,4208759.83 685482.5,4208755.55
674
                685482.95,4208751.19 685484.02,4208746.2 685485.89,4208740.88 685487.41,4208737.14
675
                685491.87,4208727.71 685508.54,4208699.59 685529.65,4208665.96 685558.08,4208619.42
676
                685574.81,4208591.96 685583.09,4208578.99 685588.27,4208571.42 685592.01,4208566.16
677
                685597.81,4208559.21 685604.75,4208552.11 685610.99,4208546.41 685618.3,4208540.44
678
                685627.4,4208533.5 685678.47,4208497.11 685701.16,4208480.34 685721.31,4208465.02
679
                685747.24,4208444.11 685780.49,4208417.77 685812.75,4208391.6 685863.18,4208351.67
680
                685927.68,4208299.45 685976.87,4208260.57 686010.42,4208233.74 686026.38,4208220.92
681
                686053.65,4208199.2 686074.77,4208182.21 686109.7,4208154.53 686138.84,4208131.5
682
                686164.92,4208110.81 686176.34,4208101.01 686183.65,4208093.08 686187.73,4208088.04
683
                686191.48,4208082.6 686195.76,4208074.32 686199.32,4208066.39 686202.09,4208058.03
684
                686206.01,4208044.31 686212.42,4208018.86 686224.63,4207967.71 686232.28,4207935.35
685
                686242.52,4207892.31 686251.62,4207853.92 686258.11,4207826.73 686269.35,4207780.53
686
                686272.45,4207769.83 686275.74,4207759.77 686280.47,4207747.3 686285.82,4207734.02
687
                686297.31,4207707.24 686312.19,4207671.38 686337.5,4207610.26 686357.89,4207560.44
688
                686368.23,4207536.55 686373.49,4207525.95 686377.05,4207519.53 686380.62,4207514.1
689
                686385.25,4207507.98 686389.71,4207502.81 686395.15,4207497.29 686404.59,4207489.74
690
                686411.37,4207484.75 686419.93,4207478.87 686435.15,4207469.9 686479.8,4207444.54
691
                686557.16,4207400.59 686578.68,4207388.97 686589.02,4207383.81 686598.09,4207379.91
692
                686613.16,4207374.47 686640.9,4207365.92 686707.03,4207348.66 686802.8,4207322.87
693
                686844.12,4207311.57 686854.19,4207308.81 686862.22,4207307.03 686868.64,4207305.87
694
                686875.46,4207304.98 686881.79,4207304.36 686891.15,4207304.0 686907.08,4207304.36
695
                686936.33,4207305.79 686983.56,4207309.52 687038.08,4207313.79 687070.68,4207316.27
696
                687086.63,4207316.89 687099.11,4207317.25 687114.7,4207317.07 687122.19,4207316.62
697
                687131.55,4207315.82 687149.53,4207313.16 687176.28,4207308.44 687213.52,4207302.75
698
                687259.06,4207295.0 687315.99,4207285.57 687349.28,4207279.71 687356.01,4207278.16
699
              </gml:coordinates>
700
            </gml:LineString>
701
          </gml:lineStringMember>
702
        </gml:MultiLineString>
703
      </cit:the_geom>
704
      <cit:ENTITY>Complex Chain</cit:ENTITY>
705
      <cit:LAYER>22</cit:LAYER>
706
      <cit:LEVEL>22.0</cit:LEVEL>
707
      <cit:ELEVATION>0.0</cit:ELEVATION>
708
      <cit:COLOR>6.0</cit:COLOR>
709
      <cit:ID>12659.0</cit:ID>
710
      <cit:ID_PONT></cit:ID_PONT>
711
      <cit:NOMBRE>CV-925</cit:NOMBRE>
712
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
713
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
714
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
715
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
716
      <cit:ARCEN>1.0</cit:ARCEN>
717
      <cit:TUNEL>false</cit:TUNEL>
718
      <cit:URBANA>false</cit:URBANA>
719
      <cit:TIPO>COPUT</cit:TIPO>
720
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
721
      <cit:FROM_NODE>1395.0</cit:FROM_NODE>
722
      <cit:TO_NODE>1487.0</cit:TO_NODE>
723
    </cit:lines>
724
  </gml:featureMember>
725
  <gml:featureMember>
726
    <cit:lines>
727
      <cit:the_geom>
728
        <gml:MultiLineString srsName='0'>
729
          <gml:lineStringMember>
730
            <gml:LineString srsName='0'>
731
              <gml:coordinates>
732
                687480.14,4207189.45 687479.38,4207187.49 687478.57,4207182.42 687478.31,4207177.78
733
                687478.66,4207172.08 687479.64,4207160.62 687481.42,4207142.54 687486.42,4207096.04
734
                687489.81,4207062.84 687492.22,4207040.96 687493.38,4207032.41 687494.44,4207026.36
735
                687495.24,4207022.37 687497.03,4207016.04 687499.16,4207009.2 687501.75,4207002.34
736
                687504.69,4206996.2 687507.72,4206991.04 687511.38,4206984.8 687516.09,4206978.05
737
                687521.71,4206971.19 687526.61,4206965.75 687535.51,4206957.31 687554.42,4206941.55
738
                687573.66,4206925.64 687583.54,4206916.67 687587.82,4206912.21 687592.99,4206905.8
739
                687598.52,4206898.14 687606.08,4206886.6 687617.68,4206867.98 687637.54,4206834.08
740
                687668.02,4206783.89 687683.33,4206758.58 687697.15,4206735.95 687719.43,4206699.65
741
                687741.52,4206663.25 687764.51,4206625.44 687774.13,4206609.52 687792.66,4206578.2
742
                687811.73,4206546.53 687820.1,4206533.55 687827.77,4206522.34 687831.6,4206517.62
743
                687836.68,4206512.1 687845.41,4206503.21 687853.71,4206496.62 687865.28,4206488.88
744
                687872.95,4206484.7 687880.98,4206481.04 687889.01,4206477.84 687896.41,4206475.61
745
                687904.84,4206473.76 687914.47,4206472.15 687930.77,4206470.1 687951.91,4206468.5
746
                687986.49,4206464.94 688038.55,4206460.59 688064.47,4206458.19 688107.07,4206454.63
747
                688137.06,4206451.98
748
              </gml:coordinates>
749
            </gml:LineString>
750
          </gml:lineStringMember>
751
        </gml:MultiLineString>
752
      </cit:the_geom>
753
      <cit:ENTITY>Complex Chain</cit:ENTITY>
754
      <cit:LAYER>22</cit:LAYER>
755
      <cit:LEVEL>22.0</cit:LEVEL>
756
      <cit:ELEVATION>0.0</cit:ELEVATION>
757
      <cit:COLOR>6.0</cit:COLOR>
758
      <cit:ID>12660.0</cit:ID>
759
      <cit:ID_PONT></cit:ID_PONT>
760
      <cit:NOMBRE>CV-925</cit:NOMBRE>
761
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
762
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
763
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
764
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
765
      <cit:ARCEN>1.0</cit:ARCEN>
766
      <cit:TUNEL>false</cit:TUNEL>
767
      <cit:URBANA>false</cit:URBANA>
768
      <cit:TIPO>COPUT</cit:TIPO>
769
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
770
      <cit:FROM_NODE>1494.0</cit:FROM_NODE>
771
      <cit:TO_NODE>1533.0</cit:TO_NODE>
772
    </cit:lines>
773
  </gml:featureMember>
774
  <gml:featureMember>
775
    <cit:lines>
776
      <cit:the_geom>
777
        <gml:MultiLineString srsName='0'>
778
          <gml:lineStringMember>
779
            <gml:LineString srsName='0'>
780
              <gml:coordinates>
781
                688137.06,4206451.98 688179.37,4206448.24 688229.79,4206443.7 688246.69,4206442.0
782
                688280.4,4206439.42 688338.61,4206433.99 688378.09,4206430.42 688424.43,4206425.79
783
                688480.91,4206421.43 688508.68,4206418.59 688529.37,4206417.43 688550.59,4206416.45
784
                688560.65,4206416.63 688583.48,4206417.96 688606.37,4206419.92 688625.81,4206421.26
785
                688645.52,4206422.5 688681.94,4206425.8 688728.27,4206429.45 688768.37,4206432.74
786
                688820.77,4206436.74 688874.22,4206440.84 688913.11,4206443.96 688946.78,4206446.17
787
                688998.2,4206450.89 689054.96,4206455.16 689100.74,4206458.72 689126.79,4206460.77
788
                689172.14,4206464.23 689238.9,4206469.56 689302.06,4206474.81 689337.98,4206477.39
789
                689348.89,4206477.95 689358.47,4206478.22 689366.4,4206478.13 689372.3,4206477.67
790
                689379.49,4206476.66 689388.62,4206474.26 689397.62,4206471.06 689413.2,4206464.15
791
                689445.81,4206448.78 689497.2,4206424.32 689548.79,4206399.68 689584.75,4206382.41
792
                689605.31,4206372.74 689615.63,4206368.87 689622.82,4206366.76 689629.92,4206365.47
793
                689635.91,4206364.91 689644.11,4206364.36 689651.12,4206364.64 689660.86,4206365.74
794
                689669.16,4206366.94 689675.15,4206368.23 689682.43,4206370.07 689688.15,4206372.1
795
                689694.69,4206374.86 689701.94,4206378.43 689708.03,4206381.84 689713.56,4206385.52
796
                689718.72,4206389.29 689723.88,4206393.33 689729.59,4206398.3 689734.57,4206403.35
797
                689740.1,4206409.43 689744.52,4206414.96 689749.39,4206421.57 689756.58,4206433.53
798
                689783.94,4206481.28 689814.61,4206534.73 689828.12,4206558.32 689833.74,4206567.16
799
                689838.63,4206574.62 689844.07,4206582.26 689848.86,4206588.71 689857.77,4206598.68
800
                689873.07,4206614.15 689891.14,4206630.9 689933.04,4206669.43 689990.26,4206722.41
801
                690042.87,4206770.42 690134.33,4206855.21 690188.01,4206905.21 690223.19,4206937.67
802
                690235.22,4206949.22 690242.69,4206956.77 690248.87,4206963.31 690254.03,4206970.21
803
                690257.24,4206975.15 690260.84,4206982.06 690265.91,4206992.18 690272.27,4207007.01
804
                690288.57,4207046.66 690312.23,4207103.77 690328.34,4207140.88 690336.64,4207161.13
805
                690343.08,4207177.02 690346.12,4207185.03 690348.43,4207192.31 690349.62,4207196.82
806
                690350.82,4207201.79 690351.84,4207207.84 690352.67,4207215.95 690352.76,4207226.26
807
                690352.01,4207248.09 690349.71,4207275.71 690347.04,4207303.86 690344.46,4207333.18
808
                690342.07,4207358.26 690340.13,4207378.86 690338.75,4207399.39 690338.19,4207415.69
809
                690338.11,4207426.87 690338.2,4207435.07 690338.84,4207442.62 690340.13,4207450.07
810
                690342.16,4207458.42 690345.39,4207467.62 690348.71,4207475.36 690354.23,4207485.35
811
                690359.02,4207492.72 690365.47,4207500.79 690371.73,4207507.79 690378.74,4207514.51
812
                690388.86,4207522.86 690409.78,4207538.24 690479.41,4207586.71 690540.02,4207629.48
813
                690603.28,4207674.44 690673.74,4207724.65 690736.18,4207768.6 690765.83,4207789.56
814
                690793.1,4207808.96 690802.87,4207815.77 690815.17,4207823.74 690827.99,4207831.38
815
                690841.35,4207838.75 690852.23,4207844.36 690869.54,4207852.63 690882.17,4207857.97
816
                690900.56,4207864.94 690917.25,4207870.46 690931.26,4207874.6 690947.02,4207878.84
817
                690965.59,4207882.4 690985.5,4207886.17 691017.45,4207891.6 691055.58,4207898.13
818
                691093.81,4207904.75 691119.14,4207909.53 691161.59,4207916.89 691188.69,4207921.49
819
                691223.93,4207927.64 691275.51,4207936.75 691331.43,4207946.22 691399.74,4207958.28
820
                691439.09,4207965.17 691478.03,4207972.07 691506.96,4207977.31 691528.25,4207980.71
821
                691562.12,4207986.69 691585.3,4207990.63 691594.24,4207992.47 691600.33,4207993.94
822
                691605.77,4207995.42 691610.47,4207996.8 691616.18,4207998.64 691621.81,4208001.13
823
                691629.73,4208004.99 691636.09,4208008.22 691645.44,4208013.89 691666.45,4208026.78
824
                691678.06,4208033.4 691705.34,4208050.89 691738.59,4208071.87 691777.83,4208095.96
825
                691816.23,4208119.51 691839.78,4208134.09 691857.66,4208145.42 691872.32,4208154.35
826
                691883.44,4208161.14 691892.66,4208166.48 691902.98,4208171.45 691909.8,4208174.21
827
                691916.16,4208176.33 691921.6,4208178.08 691926.92,4208179.07 691936.32,4208180.27
828
                691949.41,4208180.64 691965.35,4208181.01 691973.99,4208181.0 692002.47,4208181.28
829
                692064.17,4208181.72 692120.99,4208183.1 692127.81,4208183.38 692133.04,4208184.11
830
                692139.86,4208185.21 692146.5,4208186.96 692154.68,4208189.44 692168.97,4208195.24
831
                692187.31,4208203.71 692210.6,4208214.37 692222.84,4208220.53 692243.67,4208230.11
832
                692294.34,4208253.66 692344.35,4208276.83 692418.87,4208311.42 692442.12,4208321.98
833
                692457.52,4208329.08
834
              </gml:coordinates>
835
            </gml:LineString>
836
          </gml:lineStringMember>
837
        </gml:MultiLineString>
838
      </cit:the_geom>
839
      <cit:ENTITY>Complex Chain</cit:ENTITY>
840
      <cit:LAYER>22</cit:LAYER>
841
      <cit:LEVEL>22.0</cit:LEVEL>
842
      <cit:ELEVATION>0.0</cit:ELEVATION>
843
      <cit:COLOR>6.0</cit:COLOR>
844
      <cit:ID>12682.0</cit:ID>
845
      <cit:ID_PONT>3142</cit:ID_PONT>
846
      <cit:NOMBRE>CV-951</cit:NOMBRE>
847
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
848
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
849
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
850
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
851
      <cit:ARCEN>1.0</cit:ARCEN>
852
      <cit:TUNEL>false</cit:TUNEL>
853
      <cit:URBANA>false</cit:URBANA>
854
      <cit:TIPO>COPUT</cit:TIPO>
855
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
856
      <cit:FROM_NODE>1533.0</cit:FROM_NODE>
857
      <cit:TO_NODE>1851.0</cit:TO_NODE>
858
    </cit:lines>
859
  </gml:featureMember>
860
  <gml:featureMember>
861
    <cit:lines>
862
      <cit:the_geom>
863
        <gml:MultiLineString srsName='0'>
864
          <gml:lineStringMember>
865
            <gml:LineString srsName='0'>
866
              <gml:coordinates>
867
                688137.06,4206451.98 688135.53,4206442.82 688134.96,4206439.78 688134.13,4206436.74
868
                688130.2,4206425.21 688112.62,4206376.15 688094.95,4206327.34 688084.83,4206299.57
869
                688077.52,4206278.92 688073.16,4206266.19 688067.83,4206247.84 688065.03,4206236.09
870
                688063.39,4206227.63 688059.61,4206203.54 688055.58,4206174.3 688051.08,4206143.32
871
                688044.59,4206093.34 688041.3,4206071.04 688039.66,4206062.25 688036.78,4206051.98
872
                688033.9,4206043.31 688029.46,4206033.21 688025.19,4206025.32 688021.4,4206018.34
873
                688016.14,4206009.8 688005.89,4205993.83 687990.67,4205971.16 687965.13,4205932.37
874
                687946.73,4205904.88 687935.22,4205888.7 687927.57,4205878.1 687916.89,4205865.07
875
                687893.48,4205837.93 687849.76,4205787.63 687822.33,4205756.23 687798.24,4205728.47
876
                687769.74,4205696.15 687753.7,4205677.76 687745.08,4205668.65 687741.05,4205664.55
877
                687735.21,4205659.29 687726.66,4205651.9 687714.33,4205641.48 687682.72,4205615.58
878
                687653.72,4205592.13 687644.67,4205584.41 687638.01,4205578.57 687633.49,4205573.89
879
                687628.72,4205568.14 687624.28,4205561.73 687619.68,4205554.29 687615.32,4205545.66
880
                687610.47,4205534.84 687589.45,4205482.43 687566.93,4205425.58 687546.15,4205373.07
881
                687527.74,4205327.24 687517.23,4205302.66 687511.22,4205291.24 687505.8,4205281.96
882
                687500.79,4205274.68 687492.41,4205263.6 687483.85,4205253.08 687476.29,4205244.62
883
                687444.85,4205209.55 687381.16,4205138.41 687325.6,4205076.39 687279.75,4205024.78
884
                687246.69,4204987.98 687223.78,4204962.01 687213.58,4204950.02 687206.43,4204939.5
885
                687200.27,4204929.59 687196.07,4204921.05 687193.04,4204913.59 687188.18,4204901.27
886
                687172.83,4204858.24 687150.07,4204795.39 687138.64,4204763.31 687115.65,4204700.63
887
                687093.14,4204638.36 687081.13,4204605.58 687070.79,4204577.87 687065.45,4204561.36
888
                687062.0,4204548.26 687059.04,4204534.38 687057.31,4204522.64 687056.65,4204512.07
889
                687056.49,4204488.99 687057.56,4204464.15 687059.29,4204437.17 687061.83,4204399.19
890
                687065.53,4204346.59 687065.86,4204332.4 687065.61,4204326.24 687064.79,4204319.99
891
                687064.13,4204315.56 687063.31,4204311.45 687061.83,4204306.69 687059.77,4204301.76
892
                687057.06,4204295.55 687054.1,4204289.72 687049.83,4204282.41 687045.63,4204275.84
893
                687037.82,4204264.58 687009.81,4204225.73 686987.86,4204194.96 686971.1,4204172.09
894
                686934.62,4204121.63 686891.81,4204061.88 686855.26,4204008.98 686823.21,4203962.78
895
                686794.62,4203921.44 686772.92,4203890.75 686762.64,4203876.95 686753.94,4203864.81
896
                686747.36,4203856.27 686738.97,4203846.17 686729.76,4203835.98 686721.58,4203826.99
897
                686675.71,4203779.47 686652.68,4203756.15 686637.18,4203739.95 686598.82,4203699.66
898
                686570.45,4203670.52 686543.98,4203644.0 686528.55,4203627.39 686521.97,4203619.17
899
                686518.76,4203613.94 686516.62,4203609.18 686515.31,4203604.58 686514.65,4203600.22
900
                686514.4,4203594.23 686514.4,4203587.98 686515.14,4203577.01 686517.77,4203548.54
901
                686518.75,4203539.26 686520.4,4203532.36 686522.2,4203527.36 686524.34,4203523.99
902
                686527.14,4203520.13 686531.25,4203515.94 686536.02,4203512.58 686539.88,4203510.85
903
                686547.69,4203508.4 686557.47,4203505.94 686565.28,4203503.8 686572.09,4203501.44
904
                686577.43,4203498.89 686583.27,4203495.44 686587.96,4203491.74 686592.4,4203487.55
905
                686595.1,4203484.29 686598.31,4203479.28 686600.53,4203474.19 686601.84,4203469.34
906
                686602.17,4203463.77 686602.0,4203458.02 686600.85,4203452.68 686598.8,4203447.84
907
                686595.67,4203442.91 686592.24,4203439.23 686589.44,4203437.02 686585.17,4203434.88
908
                686580.15,4203432.91 686573.49,4203431.18 686565.26,4203429.54 686552.93,4203428.23
909
                686536.35,4203427.98 686522.72,4203428.8 686510.71,4203429.54 686503.47,4203429.05
910
                686498.38,4203428.31 686493.19,4203426.91 686483.38,4203422.94 686469.48,4203415.62
911
                686455.75,4203407.99 686443.9,4203400.35 686438.09,4203396.02 686432.99,4203390.85
912
                686426.08,4203383.62 686392.82,4203344.26 686365.03,4203311.89 686355.44,4203300.6
913
                686349.51,4203291.81 686347.21,4203288.11 686344.33,4203282.28 686340.8,4203273.65
914
                686336.79,4203263.73 686331.11,4203248.74 686321.01,4203220.79 686303.67,4203173.03
915
                686290.36,4203136.91 686285.34,4203122.86 686282.22,4203112.64 686280.49,4203103.53
916
                686279.59,4203096.21 686279.18,4203090.22 686279.42,4203082.96 686283.86,4203021.84
917
                686287.23,4202959.48 686287.47,4202939.93 686287.14,4202927.69 686286.57,4202920.09
918
                686285.58,4202913.19 686284.43,4202906.7 686282.54,4202897.17 686275.97,4202869.13
919
                686271.86,4202852.87 686269.88,4202841.65 686269.22,4202835.24 686269.22,4202826.69
920
                686269.38,4202821.48 686269.95,4202816.46 686270.86,4202812.44 686272.83,4202807.26
921
                686274.64,4202802.75 686277.93,4202795.93 686283.11,4202786.73 686303.65,4202750.34
922
                686323.3,4202715.47 686345.06,4202677.02 686378.25,4202615.9 686407.41,4202561.08
923
                686436.75,4202505.13 686465.11,4202450.88 686485.57,4202411.99 686494.94,4202393.68
924
                686500.95,4202380.78 686504.56,4202371.94 686509.14,4202359.44 686529.35,4202292.8
925
                686542.26,4202249.61 686554.68,4202208.36 686558.71,4202195.88 686562.24,4202186.7
926
                686565.45,4202180.21 686569.23,4202174.05 686573.0,4202168.32 686577.11,4202162.82
927
                686581.3,4202157.73 686590.75,4202146.33 686617.45,4202115.72 686636.43,4202094.72
928
                686645.07,4202086.18 686650.17,4202081.49 686656.25,4202076.65 686661.85,4202072.62
929
                686667.03,4202068.92 686693.94,4202053.37 686760.99,4202016.61 686779.49,4202006.02
930
                686795.25,4201996.84 686803.23,4201991.91 686808.82,4201987.64 686813.35,4201983.78
931
                686817.7,4201979.01 686823.53,4201971.98 686828.96,4201963.84 686833.15,4201957.27
932
                686838.4,4201947.69 686855.81,4201914.95 686872.81,4201884.1 686881.2,4201870.14
933
                686890.32,4201856.76 686901.57,4201840.46 686933.04,4201798.39 686964.44,4201756.45
934
                686988.27,4201723.96 686992.87,4201717.47 686996.0,4201712.55 686998.13,4201708.44
935
                686999.77,4201705.17 687000.84,4201702.38 687001.58,4201699.51
936
              </gml:coordinates>
937
            </gml:LineString>
938
          </gml:lineStringMember>
939
        </gml:MultiLineString>
940
      </cit:the_geom>
941
      <cit:ENTITY>Complex Chain</cit:ENTITY>
942
      <cit:LAYER>22</cit:LAYER>
943
      <cit:LEVEL>22.0</cit:LEVEL>
944
      <cit:ELEVATION>0.0</cit:ELEVATION>
945
      <cit:COLOR>6.0</cit:COLOR>
946
      <cit:ID>12811.0</cit:ID>
947
      <cit:ID_PONT></cit:ID_PONT>
948
      <cit:NOMBRE>CV-925</cit:NOMBRE>
949
      <cit:ANCHO_C>5.5</cit:ANCHO_C>
950
      <cit:CARRIL_D>1.0</cit:CARRIL_D>
951
      <cit:CARRIL_I>1.0</cit:CARRIL_I>
952
      <cit:ANCHO_M>0.0</cit:ANCHO_M>
953
      <cit:ARCEN>1.0</cit:ARCEN>
954
      <cit:TUNEL>false</cit:TUNEL>
955
      <cit:URBANA>false</cit:URBANA>
956
      <cit:TIPO>COPUT</cit:TIPO>
957
      <cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
958
      <cit:FROM_NODE>1533.0</cit:FROM_NODE>
959
      <cit:TO_NODE>1472.0</cit:TO_NODE>
960
    </cit:lines>
961
  </gml:featureMember>
962
</gml:FeatureCollection>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.76/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GML-polygons.gml
1
<?xml version="1.0" encoding="ISO-8859-1"?><gml:FeatureCollection xmlns:cit="http://www.gvsig.com/cit" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gvsig.com/cit GML-polygons.xsd"><gml:boundedBy><gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#23030"><gml:coordinates decimal="." cs="," ts=" ">620344.45,4205001.5 773626.0,4509860.5</gml:coordinates></gml:Box></gml:boundedBy><gml:featureMember>
2
<cit:polygons><cit:the_geom><gml:MultiPolygon srsName='0'>
3
  <gml:polygonMember>
4
    <gml:Polygon srsName='0'>
5
      <gml:outerBoundaryIs>
6
        <gml:LinearRing srsName='0'>
7
          <gml:coordinates>
8
686982.31,4209197.5 686900.88,4209196.5 
9
            686849.38,4209233.0 686826.0,4209227.0 
10
            686805.63,4209199.0 686750.88,4209161.5 
11
            686618.25,4209059.0 686481.44,4208965.0 
12
            686411.19,4208954.5 686395.75,4208975.0 
13
            686370.06,4209045.0 686342.94,4209119.0 
14
            686324.56,4209156.0 686282.81,4209180.5 
15
            686242.25,4209225.5 686230.94,4209250.0 
16
            686231.69,4209301.5 686278.63,4209415.0 
17
            686297.25,4209470.5 686292.88,4209491.0 
18
            686262.44,4209495.0 686171.81,4209456.5 
19
            686129.0,4209463.0 686091.5,4209481.5 
20
            686061.19,4209477.0 685996.06,4209386.5 
21
            685874.25,4209302.5 685801.19,4209299.0 
22
            685766.13,4209342.5 685668.5,4209541.5 
23
            685637.13,4209625.5 685683.19,4209696.0 
24
            685696.5,4209735.0 685587.0,4209776.5 
25
            685558.25,4209868.5 685511.63,4209959.0 
26
            685509.88,4209989.5 685648.94,4210354.0 
27
            685707.44,4210539.5 685724.88,4210691.5 
28
            685719.56,4210900.0 685783.75,4211069.0 
29
            685847.88,4211133.5 685912.5,4211150.5 
30
            686025.5,4211164.5 686058.19,4211198.0 
31
            686077.81,4211285.0 686095.63,4211409.5 
32
            686100.38,4211473.0 686191.0,4211623.5 
33
            686229.69,4211621.0 686395.88,4211686.5 
34
            686574.56,4211745.5 686690.13,4211775.5 
35
            686823.38,4211827.0 686886.94,4211819.5 
36
            686940.88,4211806.5 686995.63,4211729.5 
37
            687147.69,4211596.5 687193.19,4211598.5 
38
            687237.06,4211625.0 687283.63,4211652.0 
39
            687333.19,4211662.0 687391.0,4211675.0 
40
            687401.94,4211685.0 687457.0,4211696.5 
41
            687553.75,4211682.5 687587.13,4211664.0 
42
            687615.19,4211625.5 687666.44,4211608.0 
43
            687799.25,4211582.0 687843.38,4211585.5 
44
            687959.63,4211555.0 687983.38,4211530.5 
45
            688007.5,4211480.0 688016.0,4211347.5 
46
            688034.25,4211320.0 688082.5,4211210.5 
47
            688187.56,4211195.0 688252.88,4211157.0 
48
            688322.88,4211078.0 688447.13,4211087.5 
49
            688510.13,4211072.0 688560.63,4210978.0 
50
            688636.44,4210884.0 688731.31,4210845.0 
51
            688836.75,4210834.0 688894.81,4210771.5 
52
            688924.5,4210675.0 688961.25,4210556.5 
53
            689004.06,4210513.0 689076.06,4210423.5 
54
            689168.69,4210326.0 689224.44,4210222.5 
55
            689202.31,4210109.0 689115.06,4210083.5 
56
            689038.19,4210112.5 688937.81,4210167.5 
57
            688828.19,4210191.0 688721.63,4210183.5 
58
            688725.0,4210120.5 688765.13,4210073.0 
59
            688748.0,4210008.5 688685.38,4209983.5 
60
            688615.69,4209977.0 688564.06,4209945.0 
61
            688563.19,4209896.0 688594.06,4209817.0 
62
            688627.5,4209758.5 688602.38,4209677.5 
63
            688541.0,4209662.0 688479.81,4209671.0 
64
            688446.5,4209651.0 688397.5,4209591.0 
65
            688356.5,4209561.5 688355.5,4209531.5 
66
            688357.31,4209494.0 688368.75,4209461.0 
67
            688367.0,4209378.5 688409.94,4209362.5 
68
            688433.88,4209325.5 688488.06,4209313.5 
69
            688508.56,4209218.5 688583.0,4209158.0 
70
            688626.63,4209174.5 688709.31,4209239.5 
71
            688849.63,4209297.0 688900.56,4209393.5 
72
            688951.5,4209494.0 688989.5,4209521.5 
73
            689038.69,4209527.5 689201.88,4209478.5 
74
            689238.13,4209414.5 689273.88,4209259.0 
75
            689285.88,4209155.5 689325.88,4209116.0 
76
            689390.13,4209122.0 689452.06,4209083.0 
77
            689547.38,4209122.5 689603.75,4209090.0 
78
            689726.69,4208965.5 689773.63,4208921.0 
79
            689721.06,4208845.5 689592.56,4208842.5 
80
            689545.0,4208816.0 689556.5,4208759.0 
81
            689615.81,4208711.5 689694.0,4208682.5 
82
            689763.94,4208666.5 689833.81,4208653.5 
83
            689894.56,4208594.0 689920.31,4208481.0 
84
            689904.0,4208334.5 689876.75,4208234.0 
85
            689822.63,4208198.0 689689.75,4208176.0 
86
            689504.0,4208146.5 689409.81,4208059.0 
87
            689426.13,4208000.5 689440.38,4207954.0 
88
            689491.69,4207925.0 689534.81,4207897.0 
89
            689560.38,4207859.0 689573.56,4207798.5 
90
            689585.75,4207739.0 689598.94,4207683.0 
91
            689613.19,4207627.5 689590.38,4207560.0 
92
            689549.25,4207558.0 689514.31,4207566.5 
93
            689461.94,4207585.0 689410.44,4207548.0 
94
            689377.56,4207545.0 689315.88,4207556.5 
95
            689282.0,4207568.0 689296.63,4207650.0 
96
            689292.63,4207697.5 689277.38,4207744.0 
97
            689246.5,4207751.0 689222.69,4207678.0 
98
            689197.81,4207612.5 689109.44,4207617.0 
99
            689049.81,4207623.0 689084.06,4207729.0 
100
            689104.75,4207791.5 689119.38,4207866.5 
101
            689120.56,4207919.0 689060.06,4207974.5 
102
            689049.0,4208060.0 688982.31,4208108.5 
103
            688857.81,4208070.0 688844.5,4208097.5 
104
            688814.81,4208143.0 688707.44,4208163.5 
105
            688573.56,4208158.5 688514.75,4208158.5 
106
            688490.31,4208151.0 688471.06,4208144.5 
107
            688459.38,4208136.0 688445.25,4208117.0 
108
            688415.25,4208115.5 688403.25,4208093.5 
109
            688422.06,4208084.5 688440.0,4208067.0 
110
            688425.88,4208047.5 688411.75,4208026.5 
111
            688423.56,4208001.5 688455.0,4207981.5 
112
            688444.75,4207922.5 688464.88,4207899.0 
113
            688501.56,4207875.5 688505.25,4207844.5 
114
            688479.75,4207820.5 688459.81,4207782.0 
115
            688463.5,4207750.5 688485.75,4207722.0 
116
            688517.19,4207703.0 688524.19,4207659.5 
117
            688502.06,4207625.0 688468.81,4207631.5 
118
            688438.5,4207646.5 688373.88,4207611.5 
119
            688337.0,4207591.0 688327.25,4207556.5 
120
            688305.88,4207537.5 688287.94,4207555.0 
121
            688252.19,4207585.0 688192.38,4207571.5 
122
            688167.31,4207581.5 688160.75,4207601.0 
123
            688169.63,4207625.0 688191.13,4207636.0 
124
            688227.06,4207654.0 688217.44,4207670.5 
125
            688202.63,4207688.0 688210.25,4207721.0 
126
            688226.31,4207749.5 688231.94,4207782.5 
127
            688203.88,4207785.5 688191.31,4207794.5 
128
            688199.13,4207819.5 688216.25,4207844.5 
129
            688234.44,4207868.5 688228.88,4207890.5 
130
            688211.19,4207895.0 688179.31,4207883.0 
131
            688148.56,4207866.0 688104.88,4207820.5 
132
            688080.56,4207790.0 688062.38,4207767.0 
133
            688035.63,4207756.0 688004.38,4207766.0 
134
            687997.31,4207809.5 688003.94,4207846.0 
135
            688024.06,4207876.0 688019.31,4207907.0 
136
            687998.44,4207916.0 687995.81,4207946.0 
137
            688013.06,4207967.0 688019.75,4207996.0 
138
            687993.63,4208009.0 687983.75,4208040.0 
139
            688004.81,4208075.5 688028.88,4208120.5 
140
            687994.13,4208149.0 687937.19,4208167.0 
141
            687905.13,4208176.0 687888.63,4208187.0 
142
            687863.13,4208256.0 687848.38,4208335.5 
143
            687886.44,4208381.5 687940.56,4208472.0 
144
            688007.06,4208562.5 688027.13,4208614.0 
145
            688015.5,4208664.5 687987.75,4208675.5 
146
            687920.19,4208669.0 687892.38,4208691.0 
147
            687883.56,4208730.5 687894.25,4208761.0 
148
            687880.25,4208779.0 687834.94,4208759.0 
149
            687720.06,4208672.0 687501.06,4208523.0 
150
            687249.75,4208425.0 687129.81,4208415.0 
151
            687064.5,4208453.0 687088.44,4208525.0 
152
            687164.75,4208607.5 687326.88,4208778.0 
153
            687351.0,4208834.5 687408.13,4208905.5 
154
            687435.13,4208955.5 687430.75,4208972.0 
155
            687410.0,4208977.5 687324.75,4208951.5 
156
            687210.5,4208929.5 687126.06,4208952.0 
157
            687046.5,4209024.0 687012.25,4209115.0 
158
            687006.06,4209174.0 686982.31,4209197.5 
159
            686982.31,4209197.5 
160
          </gml:coordinates>
161
        </gml:LinearRing>
162
      </gml:outerBoundaryIs>
163
    </gml:Polygon>
164
  </gml:polygonMember>
165
</gml:MultiPolygon>
166
</cit:the_geom>
167
<cit:level>55</cit:level>
168
<cit:color>1</cit:color>
169
<cit:entity>Complex Shape</cit:entity>
170
<cit:layer>55</cit:layer>
171
<cit:mslink_dmr>0</cit:mslink_dmr>
172
<cit:tipo>Embalses</cit:tipo>
173
<cit:codigo>Embalse de la Pedrera</cit:codigo>
174
<cit:elevation>0.0</cit:elevation>
175
</cit:polygons></gml:featureMember><gml:featureMember>
176
<cit:polygons><cit:the_geom><gml:MultiPolygon srsName='0'>
177
  <gml:polygonMember>
178
    <gml:Polygon srsName='0'>
179
      <gml:outerBoundaryIs>
180
        <gml:LinearRing srsName='0'>
181
          <gml:coordinates>
182
697871.19,4207945.5 697888.25,4207982.0 
183
            697920.81,4208013.5 697957.38,4208056.0 
184
            697973.13,4208108.0 697970.25,4208167.0 
185
            697962.25,4208217.5 697967.94,4208252.5 
186
            697945.5,4208305.0 697923.13,4208354.0 
187
            697928.5,4208410.0 697945.81,4208434.5 
188
            697952.69,4208464.5 697958.0,4208500.5 
189
            697964.38,4208541.5 697981.13,4208604.5 
190
            698022.63,4208663.0 698069.13,4208706.0 
191
            698106.31,4208741.5 698191.13,4208822.5 
192
            698181.0,4208869.0 698169.88,4208908.0 
193
            698150.56,4208958.5 698165.13,4208990.5 
194
            698168.44,4209033.0 698159.38,4209086.5 
195
            698146.25,4209139.0 698111.44,4209174.0 
196
            698123.0,4209222.5 698133.56,4209282.0 
197
            698113.25,4209344.0 698072.31,4209391.5 
198
            697996.13,4209384.5 697923.94,4209358.0 
199
            697873.5,4209357.5 697808.0,4209436.0 
200
            697806.13,4209477.0 697802.19,4209513.0 
201
            697755.88,4209526.5 697750.88,4209556.5 
202
            697779.75,4209566.5 697822.0,4209570.5 
203
            697859.06,4209581.0 697878.75,4209601.0 
204
            697889.25,4209640.5 697926.25,4209634.0 
205
            697947.0,4209666.0 697986.0,4209653.0 
206
            698031.31,4209651.0 698048.88,4209671.5 
207
            698036.75,4209710.5 698020.5,4209759.0 
208
            697995.0,4209806.5 698040.38,4209834.0 
209
            698054.63,4209800.0 698082.31,4209772.0 
210
            698119.44,4209784.5 698144.38,4209837.0 
211
            698158.69,4209822.5 698196.81,4209824.0 
212
            698226.69,4209833.5 698240.19,4209860.0 
213
            698239.38,4209902.0 698264.13,4209912.5 
214
            698280.63,4209926.5 698274.63,4209960.5 
215
            698292.25,4209984.5 698316.0,4210005.0 
216
            698351.13,4210023.0 698393.31,4210025.0 
217
            698449.88,4210014.5 698497.25,4210022.5 
218
            698514.88,4210051.0 698505.81,4210087.0 
219
            698476.06,4210110.0 698439.0,4210114.5 
220
            698415.5,4210144.5 698442.44,4210186.5 
221
            698481.69,4210220.0 698530.19,4210240.5 
222
            698591.0,4210260.0 698639.38,4210259.5 
223
            698665.25,4210282.0 698668.44,4210316.0 
224
            698666.63,4210366.5 698683.31,4210404.5 
225
            698735.81,4210413.5 698797.63,4210428.5 
226
            698853.38,4210456.0 698906.0,4210493.0 
227
            698953.5,4210517.5 699006.0,4210524.5 
228
            699049.25,4210517.0 699100.75,4210529.0 
229
            699146.0,4210525.0 699197.5,4210534.0 
230
            699227.5,4210562.5 699295.44,4210562.0 
231
            699368.56,4210573.0 699405.75,4210609.0 
232
            699474.94,4210650.0 699549.31,4210694.0 
233
            699612.25,4210739.0 699664.94,4210793.5 
234
            699719.56,4210816.0 699771.25,4210866.0 
235
            699828.0,4210900.0 699882.63,4210926.5 
236
            699882.44,4210860.5 699949.44,4210891.5 
237
            700007.19,4210917.0 700064.88,4210933.0 
238
            700118.31,4210901.0 700172.88,4210884.5 
239
            700211.88,4210864.5 700248.81,4210822.5 
240
            700282.63,4210777.0 700319.56,4210727.5 
241
            700369.88,4210690.0 700403.75,4210661.0 
242
            700460.25,4210620.0 700525.0,4210581.5 
243
            700593.94,4210577.0 700652.56,4210557.5 
244
            700719.44,4210540.5 700772.94,4210529.0 
245
            700833.63,4210511.5 700899.44,4210490.5 
246
            700983.75,4210460.5 701054.75,4210431.5 
247
            701080.44,4210422.0 701124.0,4210382.0 
248
            701175.38,4210341.0 701240.13,4210310.0 
249
            701289.44,4210309.0 701323.31,4210289.5 
250
            701344.94,4210256.5 701363.44,4210216.5 
251
            701410.69,4210219.5 701424.06,4210171.5 
252
            701447.69,4210134.5 701493.94,4210112.0 
253
            701500.13,4210059.5 701557.63,4210055.5 
254
            701598.75,4210011.0 701648.13,4209957.0 
255
            701681.0,4209908.5 701707.75,4209863.5 
256
            701735.5,4209812.0 701727.25,4209789.5 
257
            701740.63,4209766.5 701763.25,4209747.0 
258
            701784.81,4209738.0 701788.94,4209699.0 
259
            701799.25,4209653.5 701818.75,4209590.0 
260
            701834.19,4209548.0 701855.75,4209505.5 
261
            701883.5,4209457.5 701920.5,4209401.0 
262
            701953.44,4209348.5 701985.25,4209290.0 
263
            702000.69,4209247.0 702021.25,4209195.5 
264
            702025.38,4209139.0 702014.13,4209085.5 
265
            701964.81,4209063.0 701897.0,4209054.5 
266
            701832.25,4209048.5 701774.69,4209056.5 
267
            701767.5,4209098.0 701745.94,4209152.5 
268
            701727.38,4209201.5 701703.75,4209244.5 
269
            701680.13,4209287.0 701651.38,4209320.5 
270
            701606.13,4209360.0 701559.88,4209345.5 
271
            701551.69,4209318.5 701567.13,4209269.5 
272
            701574.31,4209242.5 701593.88,4209175.0 
273
            701578.44,4209137.0 701541.44,4209146.0 
274
            701502.38,4209153.0 701460.25,4209187.0 
275
            701395.5,4209210.5 701343.13,4209207.5 
276
            701269.13,4209208.5 701222.94,4209206.5 
277
            701156.13,4209218.0 701142.75,4209190.0 
278
            701144.81,4209160.5 701153.06,4209113.0 
279
            701144.88,4209079.0 701133.56,4209047.5 
280
            701121.25,4209017.5 701108.94,4208984.5 
281
            701113.06,4208945.5 701136.69,4208910.5 
282
            701170.63,4208874.5 701202.44,4208843.0 
283
            701227.13,4208816.0 701264.13,4208733.0 
284
            701288.81,4208721.5 701322.69,4208704.0 
285
            701351.5,4208673.5 701361.75,4208628.0 
286
            701384.38,4208608.5 701425.5,4208583.0 
287
            701459.38,4208564.5 701497.94,4208522.5 
288
            701515.88,4208487.5 701553.63,4208430.0 
289
            701602.31,4208417.5 701638.25,4208339.0 
290
            701674.06,4208267.5 701771.63,4208122.0 
291
            701865.25,4208149.5 701880.44,4208079.5 
292
            701902.19,4207980.0 701867.25,4207968.0 
293
            701836.94,4207907.0 701824.88,4207877.0 
294
            701837.63,4207839.0 701860.63,4207815.5 
295
            701838.25,4207782.0 701824.13,4207753.0 
296
            701798.75,4207712.5 701782.94,4207652.5 
297
            701765.06,4207585.0 701784.44,4207514.0 
298
            701770.31,4207483.0 701759.38,4207441.5 
299
            701777.75,4207366.5 701789.69,4207313.0 
300
            701798.56,4207254.5 701757.25,4207261.0 
301
            701749.38,4207224.0 701765.31,4207181.5 
302
            701765.88,4207129.0 701788.44,4207050.0 
303
            701815.06,4206969.5 701827.13,4206904.5 
304
            701845.25,4206852.5 701816.75,4206814.0 
305
            701725.69,4206713.5 701684.63,4206723.5 
306
            701644.25,4206734.5 701601.0,4206730.0 
307
            701469.06,4206616.0 701486.63,4206522.5 
308
            701499.0,4206329.5 701509.44,4206222.0 
309
            701512.31,4206149.0 701473.13,4206147.5 
310
            701365.25,4206104.0 701367.94,4206042.0 
311
            701388.06,4205999.0 701451.19,4205982.0 
312
            701499.0,4205951.5 701515.0,4205873.0 
313
            701515.31,4205871.5 701557.44,4205656.5 
314
            701481.5,4205627.0 701445.81,4205602.0 
315
            701447.31,4205577.0 701454.0,4205547.0 
316
            701427.63,4205518.0 701432.81,4205457.0 
317
            701400.25,4205430.5 701403.5,4205362.5 
318
            701387.0,4205361.0 701349.75,4205363.5 
319
            701270.63,4205341.5 701250.5,4205310.5 
320
            701193.06,4205287.5 701163.19,4205284.0 
321
            701133.5,4205269.0 701117.25,4205251.0 
322
            701091.06,4205214.5 701051.69,4205221.0 
323
            701022.75,4205223.5 701003.31,4205212.0 
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff