Revision 43740

View differences:

tags/org.gvsig.desktop-2.0.215-#4778-SeleccionPorCapa/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/java/org/gvsig/remoteclient/taskplanning/retrieving/URLRetrieveTest.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.taskplanning.retrieving;
25

  
26
import java.io.File;
27

  
28
import junit.framework.TestCase;
29

  
30
import org.gvsig.remoteclient.taskplanning.IQueue;
31
import org.gvsig.remoteclient.taskplanning.IRunnableTask;
32
/**
33
 * 
34
 * @author jaume
35
 *
36
 */
37
public class URLRetrieveTest extends TestCase {
38
	private final static String tempDirectoryPath = System.getProperty("java.io.tmpdir")+"tmp-andami";
39
	IQueue queue;
40
	IRunnableTask task1, task2, task3, task4;
41
	boolean finished1, finished2, finished3, finished4;
42
	RetrieveListener listener1 = new RetrieveListener() {
43
		public void transferEventReceived(RetrieveEvent event) {
44
			int e = event.getType();
45
			printMessage("listener1", event.getType());
46
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED || e == RetrieveEvent.REQUEST_CANCELLED )
47
				finished1 = true;
48
		}
49
	};
50
	
51
	String protocol = URLRequest.HTTP;
52
	String host1 = "192.168.0.223";
53
	String page1 = "cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map&&REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=comunidades&SRS=EPSG:23030&BBOX=507522.0,4154976.282477341,942309.0,4552983.717522658&WIDTH=332&HEIGHT=305&FORMAT=image/png&STYLES=&TRANSPARENT=TRUE";
54
	URLRequest request1;
55
	
56
	String host2 = "localhost";
57
	String page2 = "aegCapabilities1.3.xml";
58
	URLRequest request2;
59
	RetrieveListener listener2 = new RetrieveListener() {
60
		public void transferEventReceived(RetrieveEvent event) {
61
			int e = event.getType();
62
			printMessage("listener2", event.getType());
63
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED || e==RetrieveEvent.REQUEST_CANCELLED )
64
				finished2 = true;
65

  
66
		}
67
	};
68
	
69
	String host3 = "localhost";
70
	String page3 = "avalencia.ecw";
71
	URLRequest request3;
72
	RetrieveListener listener3 = new RetrieveListener() {
73
		public void transferEventReceived(RetrieveEvent event) {
74
			int e = event.getType();
75
			printMessage("listener3", event.getType());
76
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED  || e == RetrieveEvent.REQUEST_CANCELLED )
77
				finished3 = true;
78

  
79
		}
80
	};
81
	
82
	String host4 = "192.168.0.223";
83
	String page4 = "prueba.rar";
84
	URLRequest request4;
85
	RetrieveListener listener4 = new RetrieveListener() {
86
		public void transferEventReceived(RetrieveEvent event) {
87
			int e = event.getType();
88
			printMessage("listener4", event.getType());
89
			if (e==RetrieveEvent.REQUEST_FINISHED || e == RetrieveEvent.REQUEST_FAILED  || e == RetrieveEvent.REQUEST_CANCELLED )
90
				finished4 = true;
91

  
92
		}
93
	};
94
	{
95
		cleanFiles();
96
	}
97
	private static void cleanFiles(){
98
		try{
99
			File tempDirectory = new File(tempDirectoryPath);
100
			
101
			File[] files = tempDirectory.listFiles();
102
			if (files!=null) {
103
				for (int i = 0; i < files.length; i++) {
104
					// s?lo por si en un futuro se necesitan crear directorios temporales
105
					files[i].delete();
106
				}
107
			}
108
			tempDirectory.delete();
109
		} catch (Exception e) {	}
110
	}
111
	
112
	
113
	public void setUp() {
114
		File tmpDir = new File(tempDirectoryPath);
115
		if (!tmpDir.exists())
116
			tmpDir.mkdir();
117
		finished1 = finished2 = finished3 = finished4 = false;
118
		System.out.println("\n\n\nSetting up test..");
119
		queue = new RetrieveQueue("http://192.168.0.223/cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map");
120
		
121
		request1 = new URLRequest();
122
		// http://192.168.0.223/cgi-bin/mapserv_46.exe?map=c:\\ms4w\\Apache\\cgi-bin\\demo.map&&REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=comunidades&SRS=EPSG:23030&BBOX=507522.0,4154976.282477341,942309.0,4552983.717522658&WIDTH=332&HEIGHT=305&FORMAT=image/png&STYLES=&TRANSPARENT=TRUE
123
		request1.setProtocol(protocol);
124
		request1.setHost(host1);
125
		request1.setFile(page1);
126
		request1.setFileName(tempDirectoryPath+File.separator+"task1");
127
		request1.setRequestType(URLRequest.GET);
128
		task1 = new URLRetrieveTask(request1, listener1); 
129
		
130
		request2 = new URLRequest();
131
		// http://localhost/aegCapabilities1.3.xml
132
		request2.setProtocol(protocol);
133
		request2.setHost(host2);
134
		request2.setFile(page2);
135
		request2.setFileName(tempDirectoryPath+File.separator+"task2");
136
		request2.setRequestType(URLRequest.GET);
137
		task2 = new URLRetrieveTask(request2, listener2);
138
		
139
		request3 = new URLRequest();
140
		// http://localhost/avalencia.ecw
141
		request3.setProtocol(protocol);
142
		request3.setHost(host3);
143
		request3.setFile(page3);
144
		request3.setFileName(tempDirectoryPath+File.separator+"task3");
145
		request3.setRequestType(URLRequest.GET);
146
		task3 = new URLRetrieveTask(request3, listener3);
147
		
148
		request4 = new URLRequest();
149
		// http://192.168.0.223/prueba.rar
150
		request4.setProtocol(protocol);
151
		request4.setHost(host4);
152
		request4.setFile(page4);
153
		request4.setFileName(tempDirectoryPath+File.separator+"task4");
154
		request4.setRequestType(URLRequest.GET);
155
		
156
		task4 = new URLRetrieveTask(request4, listener4);
157
		
158
	}
159
	
160
	public void testRetrieve() {
161
		queue.put(task1);
162
		queue.put(task2);
163
		
164
		while(!queue.isEmpty()) {		
165
		}
166
	}
167
	
168
	public void testCancelling() {
169
		long time = System.currentTimeMillis();
170
		
171
		queue.put(task1);
172
		queue.put(task2);
173
		boolean more = true;
174
		while (!queue.isEmpty()) {
175
			if (more && System.currentTimeMillis()-time > 1000) { // wait 1 seconds and cancel
176
				task2.cancel();
177
				more = false;
178
			}
179
		}
180
	}
181
	
182
	public void testRequestManager() {
183
		System.out.println("tests parallel downloading from different servers");
184
		request3.setFileName("task3");
185
		// http://localhost/avalencia.ecw
186
		
187
		request4.setFileName("task4");
188
		// http://192.168.0.223/prueba.rar
189
		RequestManager manager = RequestManager.getInstance();
190
		manager.addURLRequest(request3, listener3);
191
		manager.addURLRequest(request4, listener4);
192
		manager.addURLRequest(request4, listener1);
193
		while (!(finished1 && finished3 && finished4)) { 
194
			
195
		}
196
	}
197
	
198
	public void testCocurrentTransfers() {
199
		finished1 = finished2 = finished3 = finished4 = false;
200
		System.out.println("tests to merge two or more equivalent transfers into one");
201
		RequestManager manager = RequestManager.getInstance();
202
		//manager.removeURLRequest(request3);
203
		request3.setFileName("task3");
204
		
205
		manager.addURLRequest(request3, listener1);
206
		manager.addURLRequest(request3, listener2);
207
		manager.addURLRequest(request3, listener3);
208
		
209
		manager.addURLRequest(request3, listener4);
210
		while (!(finished1 && finished2 && finished3 && finished4)) { 
211
			
212
		}
213
	}
214
	
215
	public void printMessage(String who, int code) {
216
		switch (code) {
217
		case RetrieveEvent.CONNECTING:
218
			System.out.println(who+": connecting");
219
			break;
220
		case RetrieveEvent.TRANSFERRING:
221
			System.out.println(who+": transferring");
222
			break;
223
		case RetrieveEvent.REQUEST_CANCELLED:
224
			System.out.println(who+": cancelled");
225
			break;
226
		case RetrieveEvent.REQUEST_FINISHED:
227
			System.out.println(who+": finished");
228
			break;
229
		case RetrieveEvent.REQUEST_FAILED:
230
			System.err.println(who+": failed");
231
			break;
232
		case RetrieveEvent.NOT_STARTED:
233
			System.out.println(who+": not started");
234
			break;
235
		case RetrieveEvent.POSTPROCESSING:
236
			System.out.println(who+": postprocessing");
237
			break;
238
		}
239
	}
240
}
0 241

  
tags/org.gvsig.desktop-2.0.215-#4778-SeleccionPorCapa/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/java/org/gvsig/remoteclient/AllTests.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient;
25

  
26
import junit.framework.Test;
27
import junit.framework.TestSuite;
28

  
29
public class AllTests {
30

  
31
	public static Test suite() {
32
		TestSuite suite = new TestSuite("Test for org.gvsig.remoteClient");
33
		//$JUnit-BEGIN$
34
		suite.addTestSuite(Test.class);
35

  
36
		//commented until there is a way to simulate the needed servers.
37
		//suite.addTestSuite(URLRetrieveTest.class);
38
//		suite.addTestSuite(WCSProtocolHandler_1_0_0Test.class);
39

  
40
		//$JUnit-END$
41
		return suite;
42
	}
43

  
44
}
0 45

  
tags/org.gvsig.desktop-2.0.215-#4778-SeleccionPorCapa/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/gml/GML-lines.xsd
1
<?xml version="1.0" encoding="ISO-8859-1"?><xs:schema targetNamespace="http://www.gvsig.com/cit" xmlns:cit="http://www.gvsig.com/cit" xmlns:gml="http://www.opengis.net/gml" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.1.2"><xs:import namespace="http://www.opengis.net/gml" schemaLocation="feature.xsd"/><xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="lines_Type"><xs:complexContent><xs:extension base="gml:AbstractFeatureType"><xs:sequence><xs:element name="the_geom" minOccurs="0" nillable="true" type="gml:GeometryPropertyType"/><xs:element name="ENTITY" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="LAYER" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="LEVEL" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="ELEVATION" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="COLOR" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="ID" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="ID_PONT" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="NOMBRE" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="ANCHO_C" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="CARRIL_D" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="CARRIL_I" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="ANCHO_M" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="ARCEN" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="TUNEL" minOccurs="0" nillable="true" type="xs:boolean"/><xs:element name="URBANA" minOccurs="0" nillable="true" type="xs:boolean"/><xs:element name="TIPO" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="ANCHO_BUF" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="FROM_NODE" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="TO_NODE" minOccurs="0" nillable="true" type="xs:double"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="lines" type="cit:lines_Type" substitutionGroup="gml:_Feature"/></xs:schema><!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
0 26

  
tags/org.gvsig.desktop-2.0.215-#4778-SeleccionPorCapa/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/gml/GML-polygons.xsd
1
<?xml version="1.0" encoding="ISO-8859-1"?><xs:schema targetNamespace="http://www.gvsig.com/cit" xmlns:cit="http://www.gvsig.com/cit" xmlns:gml="http://www.opengis.net/gml" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.1.2"><xs:import namespace="http://www.opengis.net/gml" schemaLocation="feature.xsd"/><xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="polygons_Type"><xs:complexContent><xs:extension base="gml:AbstractFeatureType"><xs:sequence><xs:element name="the_geom" minOccurs="0" nillable="true" type="gml:GeometryPropertyType"/><xs:element name="level" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="color" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="entity" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="layer" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="mslink_dmr" minOccurs="0" nillable="true" type="xs:double"/><xs:element name="tipo" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="codigo" minOccurs="0" nillable="true" type="xs:string"/><xs:element name="elevation" minOccurs="0" nillable="true" type="xs:double"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="polygons" type="cit:polygons_Type" substitutionGroup="gml:_Feature"/></xs:schema><!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
0 26

  
tags/org.gvsig.desktop-2.0.215-#4778-SeleccionPorCapa/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/gml/GML-lines.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-lines.xsd"><gml:boundedBy><gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#23030"><gml:coordinates decimal="." cs="," ts=" ">627820.0,4191291.0 797117.0,4519166.0</gml:coordinates></gml:Box></gml:boundedBy><gml:featureMember>
2
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
3
  <gml:lineStringMember>
4
    <gml:LineString srsName='0'>
5
      <gml:coordinates>
6
685442.45,4209825.64 685445.64,4209832.3 
7
        685450.18,4209842.27 685452.54,4209848.61 
8
        685454.35,4209855.13 685454.85,4209858.27 
9
        685455.09,4209862.0 685454.91,4209874.11 
10
        685454.53,4209898.4 685454.28,4209907.47 
11
        685454.16,4209919.58 685454.28,4209927.52 
12
        685454.59,4209935.16 685455.15,4209941.24 
13
        685455.71,4209947.12 685456.71,4209953.46 
14
        685458.2,4209959.42 685460.37,4209966.78 
15
        685463.29,4209976.35 685467.33,4209986.88 
16
        685472.11,4209999.24 685481.62,4210024.05 
17
        685492.81,4210052.4 685505.24,4210084.23 
18
        685518.53,4210118.29 685532.01,4210152.78 
19
        685546.0,4210188.26 685558.49,4210220.89 
20
        685567.62,4210243.65 685580.8,4210277.59 
21
        685595.08,4210313.87 685611.48,4210355.63 
22
        685629.36,4210402.89 685636.82,4210425.32 
23
        685641.98,4210442.14 685647.76,4210465.16 
24
        685651.17,4210482.16 685654.96,4210501.95 
25
        685659.5,4210529.06 685666.03,4210565.48 
26
        685673.49,4210609.46 685679.64,4210645.81 
27
        685687.96,4210693.82 685694.74,4210732.84 
28
        685703.62,4210787.18 685705.1,4210802.29 
29
        685706.78,4210822.51 685707.28,4210846.57 
30
        685707.29,4210885.98 685706.54,4210924.01 
31
        685706.17,4210959.12 685705.62,4210997.7 
32
        685705.12,4211037.34 685705.05,4211052.13 
33
        685705.11,4211060.57 685705.36,4211065.16 
34
        685705.98,4211071.62 685706.85,4211076.71 
35
        685707.65,4211079.79 685709.46,4211085.82 
36
        685712.01,4211092.34 685715.33,4211099.63 
37
        685717.79,4211103.89 685721.01,4211108.76 
38
        685726.04,4211114.97 685733.19,4211121.81 
39
        685741.13,4211127.81 685762.0,4211141.13 
40
        685790.6,4211159.76 685819.92,4211178.05 
41
        685840.13,4211191.4 685876.04,4211214.73 
42
        685910.26,4211236.36 685947.84,4211260.81 
43
        685970.7,4211275.18 685978.54,4211280.33 
44
        685984.57,4211284.24 685990.04,4211287.91 
45
        685995.32,4211291.82 686000.5,4211296.25 
46
        686006.29,4211301.77 686011.51,4211307.92 
47
        686015.49,4211313.64 686018.54,4211319.1 
48
        686021.77,4211326.0 686024.38,4211332.37 
49
        686025.68,4211337.71 686026.68,4211342.12 
50
        686027.24,4211347.59 686027.55,4211353.28 
51
        686027.49,4211359.18 686027.24,4211365.01 
52
        686026.37,4211371.47 686025.13,4211377.54 
53
        686022.95,4211386.23 686018.55,4211400.12 
54
        686012.83,4211417.17 686006.31,4211433.05 
55
        686001.96,4211441.8 685996.38,4211450.98 
56
        685990.48,4211459.42 685982.62,4211470.37 
57
        685977.53,4211477.95 685973.24,4211484.78 
58
        685970.06,4211491.12 685967.28,4211497.98 
59
        685965.48,4211503.69 685963.98,4211509.47 
60
        685962.55,4211515.8 685962.06,4211521.7 
61
        685961.87,4211527.75 685962.0,4211535.89 
62
        685962.74,4211544.27 685964.79,4211553.55 
63
        685968.4,4211565.73 685976.23,4211587.05 
64
        685987.17,4211614.13 686000.84,4211647.18 
65
        686005.87,4211656.89 686010.28,4211663.85 
66
        686015.32,4211669.62 686020.98,4211674.96 
67
        686027.32,4211679.12 686034.91,4211682.97 
68
        686043.53,4211686.18 686050.06,4211687.99 
69
        686055.1,4211688.79 686061.23,4211689.03 
70
        686068.94,4211688.72 686074.1,4211687.98 
71
        686081.25,4211686.17 686087.69,4211683.94 
72
        686094.72,4211680.71 686102.31,4211676.73 
73
        686116.9,4211668.17 686123.41,4211664.76 
74
        686128.88,4211662.15 686136.47,4211659.23 
75
        686144.84,4211656.69 686152.18,4211655.2 
76
        686160.14,4211654.09 686169.28,4211653.53 
77
        686175.29,4211653.78 686182.69,4211654.71 
78
        686191.02,4211656.89 686202.4,4211660.61 
79
        686247.0,4211676.13 686294.0,4211692.61 
80
        686339.89,4211708.57 686374.31,4211720.73 
81
        686427.25,4211739.29 686518.08,4211771.05 
82
        686623.13,4211807.59 686707.63,4211837.12 
83
        686801.38,4211869.74 686866.31,4211892.58 
84
        686889.95,4211900.29 686899.83,4211903.21 
85
        686909.04,4211905.13 686917.55,4211906.13 
86
        686924.77,4211906.25 686932.54,4211905.88 
87
        686940.59,4211904.95 686948.37,4211902.71 
88
        686954.65,4211900.35 686960.06,4211897.5 
89
        686965.56,4211893.86 686971.47,4211888.95 
90
        686975.57,4211884.85 686980.05,4211878.89 
91
        686984.76,4211871.46 686989.85,4211862.76 
92
        687003.83,4211836.83 687024.51,4211797.26 
93
        687038.8,4211769.41 687050.79,4211747.02 
94
        687063.59,4211722.16 687070.43,4211709.98 
95
        687074.96,4211703.48 687081.43,4211695.03 
96
        687088.44,4211686.91 687099.2,4211675.98 
97
        687110.31,4211665.63 687115.41,4211661.53 
98
        687120.88,4211657.81 687124.47,4211655.6 
99
        687130.13,4211652.68 687136.16,4211650.14 
100
        687141.2,4211648.52 687146.05,4211647.47 
101
        687151.34,4211646.66 687155.94,4211646.22 
102
        687162.71,4211646.04 687168.54,4211646.54 
103
        687174.01,4211647.35 687179.85,4211649.02 
104
        687186.19,4211651.38 687191.73,4211653.43 
105
        687203.46,4211659.44 687215.77,4211667.14 
106
        687237.09,4211680.73 687250.24,4211688.9 
107
        687256.52,4211692.57 687263.36,4211695.73 
108
        687268.64,4211697.85 687275.48,4211699.59 
109
        687285.04,4211701.62 687303.26,4211705.23 
110
        687347.55,4211713.78 687371.19,4211718.48 
111
        687379.77,4211720.34 687385.62,4211722.02 
112
        687389.97,4211723.69 687394.07,4211725.43 
113
        687397.3,4211727.1 687401.09,4211729.4 
114
        687404.7,4211731.88 687408.31,4211734.74 
115
        687413.28,4211739.4 687419.12,4211745.28 
116
        687432.18,4211758.95 687440.92,4211767.43 
117
        687447.08,4211772.71 687451.8,4211776.12 
118
        687455.28,4211778.36 687460.94,4211781.34 
119
        687467.66,4211784.2 687475.9,4211786.54 
120
        687483.11,4211788.22 687491.2,4211788.9 
121
        687497.29,4211789.27 687503.6,4211789.08 
122
        687510.81,4211788.46 687518.03,4211787.22 
123
        687526.05,4211785.17 687533.57,4211782.81 
124
        687539.08,4211780.63 687547.41,4211776.47 
125
        687557.8,4211770.39 687580.23,4211756.79 
126
        687620.42,4211732.47 687657.45,4211710.51 
127
        687693.86,4211688.98 687736.42,4211664.12 
128
        687766.42,4211646.38 687777.99,4211639.99 
129
        687791.39,4211633.11 687797.17,4211630.51 
130
        687804.69,4211627.77 687811.53,4211625.97 
131
        687818.74,4211624.67 687828.59,4211623.94 
132
        687838.98,4211623.69 687848.8,4211624.19 
133
        687857.51,4211625.43 687867.56,4211627.97 
134
        687877.26,4211631.7 687885.91,4211635.55 
135
        687894.09,4211639.88 687901.8,4211644.53 
136
        687912.81,4211651.74 687926.27,4211660.97 
137
        687946.23,4211674.45 687974.31,4211693.56 
138
        687982.6,4211698.98 687990.62,4211703.45 
139
        687997.08,4211706.68 688003.92,4211709.04 
140
        688009.77,4211710.53 688015.61,4211711.34 
141
        688021.4,4211711.58 688027.8,4211711.46 
142
        688034.24,4211711.08 688040.27,4211710.4 
143
        688046.11,4211709.16 688053.08,4211707.05 
144
        688061.29,4211703.76 688067.17,4211701.04 
145
        688073.14,4211697.62 688077.36,4211694.83 
146
        688083.01,4211690.44 688089.04,4211684.91 
147
        688093.02,4211680.07 688097.55,4211674.24 
148
        688101.16,4211668.46 688104.2,4211662.69 
149
        688107.61,4211653.76 688110.23,4211645.62 
150
        688117.74,4211617.83 688126.86,4211585.46 
151
        688135.74,4211553.45 688141.28,4211533.13 
152
        688142.4,4211528.09 688143.39,4211522.01 
153
        688143.83,4211516.67 688143.7,4211511.36 
154
        688143.21,4211505.58 688142.09,4211500.24 
155
        688140.15,4211494.58 688137.64,4211489.57 
156
        688134.18,4211484.32 688129.23,4211477.66 
157
        688123.45,4211470.89 688118.35,4211465.3 
158
        688113.65,4211459.68 688110.79,4211455.39 
159
        688107.55,4211449.74 688104.75,4211444.15 
160
        688103.26,4211440.3 688102.39,4211437.16 
161
        688101.96,4211433.12 688101.52,4211429.27 
162
        688101.58,4211423.68 688101.77,4211419.77 
163
        688102.38,4211415.31 688103.88,4211409.35 
164
        688106.24,4211402.83 688111.59,4211391.55 
165
        688117.93,4211378.88 688133.52,4211348.17 
166
        688143.77,4211327.58 688160.61,4211294.7 
167
        688166.81,4211283.94 688171.72,4211276.55 
168
        688176.44,4211270.96 688181.05,4211266.3 
169
        688186.08,4211262.14 688190.61,4211259.42 
170
        688197.45,4211255.82 688205.66,4211252.53 
171
        688212.63,4211250.54 688222.87,4211248.32 
172
        688237.18,4211246.09 688260.72,4211243.3 
173
        688277.19,4211241.01 688288.69,4211238.46 
174
        688301.78,4211235.05 688309.54,4211231.96 
175
        688318.12,4211227.61 688329.94,4211220.4 
176
        688345.15,4211210.11 688361.75,4211198.94 
177
        688414.62,4211163.09 688457.52,4211133.97 
178
        688473.81,4211123.29 688481.15,4211117.95 
179
        688487.8,4211112.54 688491.21,4211108.77 
180
        688495.07,4211104.17 688499.05,4211098.71 
181
        688501.72,4211094.3 688504.26,4211089.29 
182
        688507.19,4211082.33 688509.36,4211075.69 
183
        688511.97,4211065.34 688513.9,4211056.34 
184
        688516.5,4211043.7 688518.06,4211037.24 
185
        688519.68,4211031.8 688521.79,4211026.15 
186
        688524.22,4211021.3 688526.57,4211017.15 
187
        688530.55,4211012.25 688534.47,4211007.9 
188
        688540.55,4211002.52 688546.83,4210997.3 
189
        688570.02,4210981.48 688602.57,4210959.46 
190
        688625.68,4210944.03 688634.88,4210938.75 
191
        688644.75,4210933.61 688652.83,4210930.19 
192
        688659.92,4210927.71 688665.64,4210926.34 
193
        688671.54,4210925.54 688677.19,4210925.29 
194
        688684.16,4210925.47 688690.06,4210926.34 
195
        688696.06,4210927.7 688702.46,4210929.94 
196
        688708.56,4210932.73 688715.12,4210936.71 
197
        688721.65,4210941.3 688726.38,4210945.4 
198
        688731.29,4210950.43 688736.39,4210956.46 
199
        688741.36,4210963.32 688746.02,4210971.02 
200
        688752.55,4210985.16 688762.43,4211009.48 
201
        688776.16,4211042.4 688789.34,4211074.67 
202
        688796.04,4211089.3 688800.39,4211097.31 
203
        688802.99,4211101.45 688806.47,4211106.48 
204
        688811.63,4211112.13 688817.23,4211117.35 
205
        688823.92,4211122.48 688829.89,4211125.9 
206
        688836.3,4211129.0 688842.2,4211131.24 
207
        688848.67,4211133.17 688853.89,4211134.53 
208
        688863.38,4211135.88 688871.9,4211136.99 
209
        688882.22,4211137.86 688899.31,4211138.67 
210
        688938.64,4211140.72 688963.03,4211142.21 
211
        688974.03,4211142.21 688979.2,4211141.83 
212
        688985.91,4211140.84 688990.76,4211139.6 
213
        688996.78,4211137.61 689002.68,4211134.94 
214
        689009.58,4211131.34 689017.02,4211126.46 
215
        689022.62,4211122.42 689029.64,4211116.52 
216
        689034.17,4211112.19 689037.92,4211107.63 
217
        689042.19,4211101.39 689045.11,4211095.74 
218
        689049.02,4211087.0 689052.37,4211077.88 
219
        689054.49,4211070.61 689064.48,4211028.67 
220
        689068.77,4211009.6 689072.5,4210995.94 
221
        689075.98,4210984.32 689080.76,4210972.12 
222
        689085.73,4210960.51 689090.76,4210950.34 
223
        689097.23,4210939.35 689109.9,4210918.32 
224
        689120.83,4210900.23 689126.55,4210890.05 
225
        689132.52,4210878.37 689141.52,4210861.39 
226
        689146.44,4210853.01 689151.41,4210844.93 
227
        689160.61,4210832.84 689169.24,4210823.54 
228
        689175.77,4210817.45 689189.94,4210806.12 
229
        689198.52,4210800.78 689206.35,4210796.8 
230
        689214.5,4210793.76 689224.25,4210791.16 
231
        689233.33,4210789.36 689243.69,4210788.18 
232
        689251.77,4210787.93 689260.6,4210788.37 
233
        689271.58,4210789.98 689283.52,4210792.52 
234
        689295.89,4210795.57 689343.54,4210807.48 
235
        689383.49,4210818.14 689428.28,4210829.74 
236
        689468.72,4210839.91 689484.6,4210844.37 
237
        689500.81,4210849.7 689523.2,4210858.09 
238
        689552.52,4210870.32 689609.49,4210894.01 
239
        689641.29,4210907.35 689650.68,4210911.63 
240
        689657.02,4210915.05 689661.09,4210917.27 
241
        689665.38,4210920.26 689669.61,4210923.8 
242
        689673.09,4210927.65 689676.93,4210932.95 
243
        689680.97,4210940.41 689685.57,4210950.03 
244
        689699.31,4210982.99 689711.61,4211011.72 
245
        689728.01,4211050.55 689735.41,4211066.84 
246
        689739.07,4211073.61 689741.81,4211077.83 
247
        689746.41,4211083.48 689750.45,4211087.77 
248
        689754.84,4211091.15 689760.38,4211094.32 
249
        689767.78,4211097.73 689782.58,4211103.7 
250
        689810.88,4211114.74 689831.77,4211123.12 
251
        689857.07,4211133.36 689883.65,4211145.14 
252
        689887.45,4211146.63 
253
      </gml:coordinates>
254
    </gml:LineString>
255
  </gml:lineStringMember>
256
</gml:MultiLineString>
257
</cit:the_geom>
258
<cit:ENTITY>Complex Chain</cit:ENTITY>
259
<cit:LAYER>22</cit:LAYER>
260
<cit:LEVEL>22.0</cit:LEVEL>
261
<cit:ELEVATION>0.0</cit:ELEVATION>
262
<cit:COLOR>6.0</cit:COLOR>
263
<cit:ID>12106.0</cit:ID>
264
<cit:ID_PONT></cit:ID_PONT>
265
<cit:NOMBRE>CV-950</cit:NOMBRE>
266
<cit:ANCHO_C>5.5</cit:ANCHO_C>
267
<cit:CARRIL_D>1.0</cit:CARRIL_D>
268
<cit:CARRIL_I>1.0</cit:CARRIL_I>
269
<cit:ANCHO_M>0.0</cit:ANCHO_M>
270
<cit:ARCEN>1.0</cit:ARCEN>
271
<cit:TUNEL>false</cit:TUNEL>
272
<cit:URBANA>false</cit:URBANA>
273
<cit:TIPO>COPUT</cit:TIPO>
274
<cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
275
<cit:FROM_NODE>1390.0</cit:FROM_NODE>
276
<cit:TO_NODE>1607.0</cit:TO_NODE>
277
</cit:lines></gml:featureMember><gml:featureMember>
278
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
279
  <gml:lineStringMember>
280
    <gml:LineString srsName='0'>
281
      <gml:coordinates>
282
682619.4,4214407.51 682627.47,4214397.34 
283
        682637.04,4214385.27 682653.65,4214366.59 
284
        682669.84,4214350.52 682676.29,4214344.84 
285
        682679.89,4214342.24 682683.67,4214339.72 
286
        682687.03,4214337.63 682691.56,4214335.62 
287
        682696.77,4214333.69 682702.64,4214332.43 
288
        682709.27,4214331.34 682717.08,4214330.5 
289
        682727.07,4214329.75 682755.64,4214328.25 
290
        682763.54,4214327.58 682768.57,4214326.83 
291
        682774.7,4214325.65 682781.67,4214323.89 
292
        682790.14,4214321.38 682802.45,4214316.95 
293
        682810.76,4214313.6 682825.09,4214307.32 
294
        682832.98,4214303.38 682838.94,4214299.77 
295
        682845.55,4214295.18 682852.26,4214289.23 
296
        682860.32,4214281.26 682869.11,4214272.81 
297
        682873.9,4214269.04 682878.77,4214265.68 
298
        682883.36,4214262.95 682888.9,4214260.1 
299
        682896.7,4214256.83 682905.18,4214254.14 
300
        682921.86,4214249.96 682928.66,4214248.2 
301
        682934.37,4214246.44 682940.92,4214244.17 
302
        682947.3,4214241.49 682956.34,4214236.98 
303
        682969.18,4214230.11 682991.4,4214217.8 
304
        683002.03,4214211.1 683007.24,4214207.24 
305
        683010.84,4214204.06 683014.79,4214199.28 
306
        683018.9,4214193.41 683022.24,4214187.59 
307
        683026.61,4214178.28 683032.48,4214163.44 
308
        683049.34,4214117.8 683068.38,4214064.12 
309
        683087.4,4214011.12 683102.25,4213966.4 
310
        683117.77,4213910.21 683125.14,4213884.22 
311
        683129.59,4213871.64 683134.55,4213859.32 
312
        683146.03,4213834.79 683157.43,4213813.96 
313
        683170.02,4213791.82 683193.92,4213750.96 
314
        683204.23,4213732.4 683209.52,4213722.09 
315
        683212.0,4213716.79 683213.46,4213712.86 
316
        683217.24,4213702.55 683220.93,4213689.88 
317
        683224.62,4213676.88 683227.89,4213662.63 
318
        683234.01,4213633.4 683242.07,4213595.82 
319
        683251.04,4213553.85 683260.76,4213510.09 
320
        683268.9,4213472.7 683281.39,4213415.25 
321
        683293.31,4213361.24 683296.24,4213348.14 
322
        683298.1,4213341.38 683300.77,4213334.13 
323
        683302.86,4213329.45 683306.39,4213322.66 
324
        683315.03,4213307.91 683334.5,4213276.93 
325
        683371.32,4213219.22 683401.93,4213170.75 
326
        683438.83,4213111.79 683446.11,4213099.87 
327
        683450.73,4213090.06 683452.91,4213083.86 
328
        683454.42,4213078.16 683455.1,4213072.2 
329
        683455.35,4213065.92 683455.18,4213060.38 
330
        683454.26,4213053.88 683452.92,4213045.58 
331
        683452.33,4213038.54 683452.25,4213034.26 
332
        683452.33,4213029.9 683452.92,4213024.54 
333
        683454.09,4213020.21 683455.77,4213014.76 
334
        683457.28,4213011.16 683459.79,4213006.88 
335
        683463.08,4213002.7 683464.35,4213001.49 
336
        683465.73,4213000.37 683469.09,4212997.77 
337
        683473.54,4212995.25 683477.9,4212993.91 
338
        683482.52,4212993.15 683487.3,4212992.99 
339
        683493.85,4212993.24 683501.91,4212994.75 
340
        683515.0,4212998.52 683533.34,4213004.02 
341
        683541.9,4213006.54 683548.53,4213008.05 
342
        683553.55,4213008.63 683558.25,4213008.8 
343
        683563.96,4213008.47 683569.25,4213007.63 
344
        683574.2,4213005.95 683580.16,4213003.44 
345
        683585.59,4213000.19 683590.38,4212996.25 
346
        683595.67,4212991.05 683600.03,4212985.77 
347
        683603.97,4212979.5 683607.41,4212972.87 
348
        683609.93,4212966.92 683611.94,4212960.47 
349
        683613.12,4212955.02 683615.54,4212942.64 
350
        683617.89,4212931.83 683620.65,4212922.3 
351
        683623.59,4212914.84 683626.69,4212908.55 
352
        683629.88,4212903.52 683638.66,4212892.69 
353
        683652.51,4212877.01 683662.66,4212866.53 
354
        683667.87,4212860.24 683673.24,4212852.86 
355
        683678.78,4212845.18 683684.65,4212834.95 
356
        683691.43,4212821.74 683692.61,4212819.39 
357
        683697.14,4212810.08 683711.24,4212781.68 
358
        683724.9,4212753.63 683743.27,4212715.1 
359
        683761.54,4212677.37 683771.45,4212657.09 
360
        683783.19,4212632.7 683799.37,4212599.71 
361
        683804.82,4212588.61 683813.3,4212573.27 
362
        683824.88,4212553.65 683852.14,4212506.93 
363
        683882.41,4212457.27 683917.58,4212399.84 
364
        683937.77,4212365.57 683955.9,4212334.55 
365
        683982.82,4212285.38 684005.72,4212242.16 
366
        684031.05,4212195.44 684065.86,4212130.88 
367
        684085.57,4212094.49 684089.51,4212087.02 
368
        684096.56,4212073.86 684107.79,4212052.53 
369
        684126.25,4212018.37 684139.27,4211995.31 
370
        684148.38,4211980.62 684156.44,4211968.54 
371
        684163.83,4211959.41 684183.95,4211935.88 
372
        684221.53,4211894.09 684253.22,4211858.85 
373
        684258.59,4211852.48 684263.04,4211847.19 
374
        684266.87,4211841.63 684271.49,4211834.17 
375
        684274.35,4211828.64 684277.28,4211821.76 
376
        684279.63,4211814.55 684281.23,4211807.84 
377
        684283.16,4211798.85 684285.0,4211785.94 
378
        684287.69,4211766.49 684291.55,4211739.88 
379
        684293.22,4211729.52 684294.65,4211721.31 
380
        684297.04,4211713.39 684299.22,4211707.35 
381
        684302.04,4211701.73 684304.43,4211697.36 
382
        684307.66,4211692.58 684311.62,4211687.48 
383
        684316.1,4211682.69 684321.41,4211677.59 
384
        684330.68,4211668.96 684344.93,4211657.54 
385
        684357.63,4211648.28 684368.99,4211640.06 
386
        684395.21,4211622.89 684418.45,4211608.58 
387
        684444.64,4211592.06 684496.9,4211559.58 
388
        684524.21,4211542.35 684538.23,4211533.97 
389
        684548.01,4211529.04 684555.9,4211525.86 
390
        684561.02,4211524.26 684566.06,4211523.43 
391
        684572.36,4211522.84 684582.68,4211522.67 
392
        684618.82,4211523.76 684628.14,4211523.76 
393
        684634.27,4211523.51 684643.25,4211522.67 
394
        684652.99,4211520.99 684665.95,4211518.24 
395
        684681.73,4211513.62 684705.15,4211506.25 
396
        684722.55,4211499.74 684730.19,4211496.13 
397
        684736.74,4211492.11 684739.68,4211490.09 
398
        684749.67,4211481.29 684759.87,4211470.61 
399
        684771.21,4211457.61 684792.1,4211434.33 
400
        684802.74,4211421.27 684810.8,4211410.63 
401
        684818.91,4211397.94 684824.28,4211388.46 
402
        684829.49,4211378.15 684837.2,4211360.65 
403
        684852.04,4211324.98 684856.56,4211316.04 
404
        684858.66,4211312.26 684861.94,4211307.57 
405
        684865.71,4211302.79 684872.76,4211294.57 
406
        684888.45,4211277.41 684902.19,4211263.36 
407
        684908.49,4211257.99 684915.04,4211253.3 
408
        684920.58,4211249.52 684926.66,4211245.95 
409
        684933.88,4211242.18 684939.75,4211240.0 
410
        684947.3,4211237.65 684959.47,4211234.47 
411
        684984.07,4211229.02 684998.45,4211225.94 
412
        685024.14,4211219.4 685038.91,4211214.87 
413
        685047.26,4211211.72 685055.15,4211207.86 
414
        685061.19,4211203.83 685066.65,4211199.06 
415
        685070.85,4211194.36 685074.88,4211188.74 
416
        685079.24,4211181.78 685081.17,4211178.12 
417
        685084.94,4211167.98 685090.57,4211151.46 
418
        685101.46,4211120.35 685108.59,4211103.02 
419
        685113.3,4211093.04 685117.99,4211084.68 
420
        685123.95,4211075.96 685131.17,4211066.32 
421
        685137.19,4211060.05 685144.92,4211052.01 
422
        685153.87,4211044.0 685168.32,4211032.15 
423
        685188.02,4211017.76 685205.48,4211005.94 
424
        685221.14,4210995.33 685229.03,4210989.38 
425
        685233.56,4210985.44 685237.76,4210982.0 
426
        685242.96,4210977.14 685249.51,4210970.6 
427
        685256.8,4210963.0 685266.2,4210952.52 
428
        685299.75,4210916.09 685347.64,4210864.0 
429
        685390.42,4210817.19 685419.18,4210785.99 
430
        685426.9,4210776.68 685431.26,4210770.98 
431
        685433.95,4210766.7 685437.03,4210760.31 
432
        685440.3,4210752.51 685442.32,4210745.72 
433
        685443.83,4210737.17 685445.26,4210726.43 
434
        685447.19,4210701.74 685449.96,4210667.07 
435
        685451.47,4210651.83 685452.81,4210643.7 
436
        685454.32,4210636.91 685457.26,4210627.66 
437
        685460.86,4210618.88 685465.81,4210610.16 
438
        685474.71,4210595.49 685488.36,4210576.17 
439
        685505.49,4210551.27 685529.39,4210516.26 
440
        685535.67,4210506.23 685540.37,4210497.18 
441
        685543.31,4210490.39 685546.25,4210481.92 
442
        685548.66,4210473.25 685550.51,4210465.78 
443
        685551.26,4210459.75 685551.68,4210453.12 
444
        685552.02,4210446.12 685552.02,4210439.58 
445
        685551.68,4210433.29 685550.68,4210426.67 
446
        685548.91,4210418.79 685546.73,4210412.77 
447
        685540.61,4210397.68 685529.54,4210371.89 
448
        685512.61,4210333.46 685495.83,4210294.93 
449
        685474.11,4210243.85 685450.53,4210189.51 
450
        685422.45,4210125.01 685412.88,4210102.79 
451
        685408.43,4210091.47 685405.93,4210084.13 
452
        685402.9,4210075.75 685399.88,4210066.36 
453
        685397.95,4210058.31 685396.28,4210047.3 
454
        685395.36,4210039.5 685394.86,4210032.55 
455
        685394.77,4210022.99 685395.95,4210009.66 
456
        685397.04,4209999.52 685398.3,4209990.21 
457
        685400.97,4209972.33 685405.0,4209945.0 
458
        685409.95,4209914.53 685413.48,4209895.19 
459
        685415.07,4209886.75 685417.42,4209878.53 
460
        685419.77,4209870.73 685423.05,4209862.35 
461
        685426.48,4209854.66 685429.76,4209847.62 
462
        685434.2,4209839.75 685438.57,4209832.21 
463
        685442.45,4209825.64 
464
      </gml:coordinates>
465
    </gml:LineString>
466
  </gml:lineStringMember>
467
</gml:MultiLineString>
468
</cit:the_geom>
469
<cit:ENTITY>Complex Chain</cit:ENTITY>
470
<cit:LAYER>22</cit:LAYER>
471
<cit:LEVEL>22.0</cit:LEVEL>
472
<cit:ELEVATION>0.0</cit:ELEVATION>
473
<cit:COLOR>6.0</cit:COLOR>
474
<cit:ID>12187.0</cit:ID>
475
<cit:ID_PONT>3076</cit:ID_PONT>
476
<cit:NOMBRE>CV-925</cit:NOMBRE>
477
<cit:ANCHO_C>5.5</cit:ANCHO_C>
478
<cit:CARRIL_D>1.0</cit:CARRIL_D>
479
<cit:CARRIL_I>1.0</cit:CARRIL_I>
480
<cit:ANCHO_M>0.0</cit:ANCHO_M>
481
<cit:ARCEN>1.0</cit:ARCEN>
482
<cit:TUNEL>false</cit:TUNEL>
483
<cit:URBANA>false</cit:URBANA>
484
<cit:TIPO>COPUT</cit:TIPO>
485
<cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
486
<cit:FROM_NODE>1259.0</cit:FROM_NODE>
487
<cit:TO_NODE>1390.0</cit:TO_NODE>
488
</cit:lines></gml:featureMember><gml:featureMember>
489
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
490
  <gml:lineStringMember>
491
    <gml:LineString srsName='0'>
492
      <gml:coordinates>
493
679289.43,4207945.31 679295.33,4207945.36 
494
        679300.3,4207945.75 679304.6,4207946.14 
495
        679308.6,4207946.74 679313.49,4207947.82 
496
        679318.87,4207949.65 679323.02,4207951.33 
497
        679326.66,4207953.19 679331.99,4207955.86 
498
        679336.39,4207958.57 679340.39,4207960.99 
499
        679347.19,4207965.22 679356.09,4207971.84 
500
        679399.05,4208005.57 679423.1,4208024.36 
501
        679500.43,4208083.05 679510.95,4208090.68 
502
        679518.54,4208095.99 679526.84,4208101.42 
503
        679536.52,4208107.14 679546.2,4208112.17 
504
        679558.64,4208118.09 679577.89,4208126.66 
505
        679609.84,4208140.34 679630.74,4208149.91 
506
        679639.83,4208154.05 679644.37,4208156.31 
507
        679651.38,4208159.76 679659.78,4208164.69 
508
        679666.88,4208169.03 679690.47,4208183.42 
509
        679723.25,4208203.25 679790.97,4208245.25 
510
        679818.25,4208261.95 679837.51,4208273.58 
511
        679851.04,4208281.77 679861.31,4208288.47 
512
        679868.42,4208292.42 679874.25,4208295.48 
513
        679879.97,4208298.04 679885.31,4208299.92 
514
        679892.4,4208302.07 679910.08,4208305.42 
515
        679950.54,4208313.5 679961.15,4208315.46 
516
        679977.35,4208319.31 680002.54,4208326.41 
517
        680028.39,4208334.59 680041.79,4208339.21 
518
        680049.99,4208342.07 680059.47,4208345.52 
519
        680064.61,4208347.88 680071.22,4208351.54 
520
        680079.52,4208356.27 680094.91,4208365.63 
521
        680113.87,4208378.16 680133.7,4208391.36 
522
        680141.9,4208396.39 680147.92,4208399.85 
523
        680153.85,4208402.9 680161.45,4208405.86 
524
        680171.3,4208409.39 680192.73,4208416.1 
525
        680222.84,4208425.36 680253.02,4208434.32 
526
        680265.07,4208437.87 680271.79,4208439.55 
527
        680280.98,4208441.13 680287.0,4208442.11 
528
        680300.27,4208443.28 680324.86,4208445.06 
529
        680358.45,4208447.23 680420.52,4208451.68 
530
        680456.7,4208454.82 680479.22,4208457.49 
531
        680544.65,4208469.9 680602.98,4208480.95 
532
        680637.92,4208489.71 680710.69,4208509.14 
533
        680797.25,4208532.31 680891.4,4208558.04 
534
        680959.37,4208577.53 680968.55,4208579.6 
535
        680976.95,4208580.68 680986.23,4208581.18 
536
        681012.87,4208580.29 681061.34,4208575.95 
537
        681135.27,4208569.94 681189.53,4208565.99 
538
        681221.28,4208564.61 681269.92,4208563.13 
539
        681306.96,4208563.33 681323.43,4208562.83 
540
        681335.38,4208562.14 681346.64,4208560.86 
541
        681356.32,4208559.38 681372.48,4208556.44 
542
        681408.04,4208549.73 681463.23,4208538.89 
543
        681499.03,4208533.0 681508.22,4208531.81 
544
        681518.59,4208531.42 681531.13,4208531.71 
545
        681539.88,4208532.41 681549.56,4208533.98 
546
        681562.3,4208537.14 681613.63,4208550.35 
547
        681733.76,4208581.0 681816.32,4208602.89 
548
        681835.56,4208607.4 681849.49,4208610.56 
549
        681858.18,4208612.14 681865.59,4208612.93 
550
        681874.85,4208613.22 681884.33,4208613.13 
551
        681891.84,4208612.34 681905.56,4208610.17 
552
        681976.72,4208599.9 682048.07,4208589.07 
553
        682137.7,4208575.75 682214.49,4208564.03 
554
        682246.01,4208559.51 682260.33,4208558.03 
555
        682272.68,4208557.24 682285.91,4208556.94 
556
        682310.01,4208557.83 682367.77,4208560.2 
557
        682418.76,4208562.27 682447.09,4208562.95 
558
        682464.52,4208563.53 682475.59,4208564.52 
559
        682488.43,4208566.2 682508.18,4208569.16 
560
        682553.28,4208579.3 682622.88,4208594.39 
561
        682665.29,4208604.24 682675.46,4208607.0 
562
        682684.06,4208609.96 682690.28,4208612.52 
563
        682695.71,4208615.58 682700.55,4208618.74 
564
        682705.75,4208622.74 682711.19,4208627.18 
565
        682716.62,4208633.0 682728.27,4208647.1 
566
        682750.1,4208676.31 682789.36,4208726.86 
567
        682828.15,4208777.72 682876.41,4208840.69 
568
        682918.74,4208895.95 682932.46,4208912.9 
569
        682938.88,4208920.69 682944.02,4208925.73 
570
        682951.13,4208932.14 682963.53,4208942.65 
571
        682981.71,4208957.05 683017.16,4208984.96 
572
        683036.86,4209000.39 683045.95,4209007.0 
573
        683051.97,4209010.85 683057.6,4209013.71 
574
        683063.33,4209016.27 683069.95,4209018.44 
575
        683076.08,4209020.02 683083.16,4209020.89 
576
        683101.04,4209021.29 683130.94,4209021.09 
577
        683143.65,4209021.47 683150.47,4209022.06 
578
        683158.08,4209023.05 683164.4,4209023.93 
579
        683172.69,4209025.91 683188.07,4209030.85 
580
        683209.39,4209039.23 683264.28,4209061.4 
581
        683276.98,4209067.01 683284.09,4209070.26 
582
        683288.34,4209072.44 683291.5,4209074.61 
583
        683295.65,4209077.57 683299.31,4209080.43 
584
        683303.85,4209084.67 683307.6,4209088.91 
585
        683312.64,4209094.54 683328.22,4209115.7 
586
        683343.02,4209135.8 683347.47,4209141.52 
587
        683352.61,4209147.34 683357.15,4209151.69 
588
        683362.29,4209155.53 683367.68,4209159.15 
589
        683375.29,4209162.7 683384.18,4209166.15 
590
        683405.97,4209172.44 683456.05,4209186.26 
591
        683492.53,4209196.58 683511.99,4209202.1 
592
        683557.39,4209214.62 683578.27,4209220.03 
593
        683589.92,4209222.5 683601.48,4209224.57 
594
        683611.55,4209225.76 683624.89,4209226.84 
595
        683641.88,4209227.83 683672.95,4209229.89 
596
        683684.6,4209230.68 683690.92,4209231.57 
597
        683696.65,4209232.36 683701.69,4209233.35 
598
        683705.44,4209234.43 683709.1,4209236.41 
599
        683712.36,4209238.48 683718.15,4209242.83 
600
        683724.47,4209248.65 683731.48,4209255.85 
601
        683739.85,4209265.28 683749.04,4209275.05 
602
        683755.56,4209281.37 683761.19,4209286.2 
603
        683766.72,4209290.15 683771.92,4209293.07 
604
        683776.86,4209295.34 683782.99,4209297.02 
605
        683788.62,4209298.0 683792.96,4209298.5 
606
        683800.37,4209298.4 683809.06,4209297.02 
607
        683827.63,4209294.06 683866.21,4209287.44 
608
        683928.39,4209276.9 683964.19,4209270.99 
609
        683972.39,4209269.91 683978.81,4209269.51 
610
        683984.34,4209269.51 683989.18,4209269.81 
611
        683994.02,4209270.4 683999.06,4209271.68 
612
        684005.18,4209274.05 684018.27,4209280.76 
613
        684060.83,4209303.73 684110.26,4209330.53 
614
        684120.81,4209336.13 684125.35,4209338.59 
615
        684129.4,4209341.46 684133.95,4209344.81 
616
        684139.68,4209349.15 684145.0,4209353.99 
617
        684151.81,4209360.7 684183.89,4209394.48 
618
        684205.11,4209415.48 684212.52,4209422.48 
619
        684219.23,4209427.91 684224.47,4209431.56 
620
        684230.98,4209434.9 684237.3,4209437.47 
621
        684246.29,4209440.13 684255.54,4209441.99 
622
        684268.28,4209443.96 684281.81,4209445.54 
623
        684298.57,4209447.2 684310.52,4209448.39 
624
        684318.82,4209448.39 684326.92,4209447.5 
625
        684333.91,4209445.92 684342.28,4209443.26 
626
        684355.82,4209437.93 684358.46,4209436.71 
627
        684392.81,4209421.95 684417.42,4209411.41 
628
        684434.87,4209403.83 684442.08,4209401.27 
629
        684446.63,4209400.18 684450.18,4209399.79 
630
        684455.1,4209399.59 684460.04,4209399.89 
631
        684463.69,4209400.68 684467.35,4209401.96 
632
        684475.15,4209405.02 684485.29,4209408.66 
633
        684489.64,4209410.14 684493.19,4209410.63 
634
        684496.55,4209411.13 684500.3,4209411.23 
635
        684504.74,4209411.03 684508.39,4209410.24 
636
        684512.25,4209409.06 684518.24,4209406.71 
637
        684528.22,4209401.68 684539.47,4209395.86 
638
        684546.86,4209392.52 684552.59,4209390.44 
639
        684557.04,4209390.05 684561.29,4209390.15 
640
        684566.03,4209390.64 684568.99,4209391.43 
641
        684571.66,4209392.42 684575.3,4209394.1 
642
        684578.85,4209396.37 684582.71,4209399.33 
643
        684590.9,4209407.21 684625.42,4209445.33 
644
        684631.94,4209452.54 684635.5,4209456.29 
645
        684639.15,4209459.64 684643.6,4209463.0 
646
        684646.66,4209464.87 684650.81,4209466.35 
647
        684654.95,4209467.54 684659.89,4209467.83 
648
        684664.14,4209468.03 684668.68,4209467.83 
649
        684673.82,4209467.04 684681.41,4209465.28 
650
        684699.68,4209459.26 684738.63,4209443.11 
651
        684771.82,4209428.11 684819.39,4209406.13 
652
        684856.89,4209387.8 684877.8,4209376.38 
653
        684889.26,4209369.47 684896.27,4209364.64 
654
        684903.36,4209358.94 684910.08,4209353.01 
655
        684920.45,4209342.36 684934.85,4209326.6 
656
        684959.53,4209298.51 684975.02,4209281.56 
657
        684981.35,4209275.93 684985.99,4209272.97 
658
        684990.14,4209271.0 684994.35,4209269.94 
659
        684999.39,4209269.25 685004.13,4209268.96 
660
        685007.68,4209269.15 685012.42,4209269.74 
661
        685015.78,4209270.53 685021.2,4209272.3 
662
        685027.82,4209274.87 685038.18,4209278.61 
663
        685062.56,4209287.48 685082.19,4209295.74 
664
        685096.11,4209302.65 685134.11,4209323.64 
665
        685170.73,4209344.14 685190.37,4209354.49 
666
        685197.39,4209358.63 685201.22,4209361.08 
667
        685204.67,4209364.04 685208.03,4209367.59 
668
        685211.19,4209371.64 685213.76,4209376.47 
669
        685215.54,4209380.81 685216.72,4209385.06 
670
        685217.42,4209389.5 685217.71,4209402.26 
671
        685215.83,4209452.68 685213.95,4209497.19 
672
        685211.48,4209546.37 685211.19,4209557.79 
673
        685211.19,4209565.78 685211.19,4209571.2 
674
        685211.49,4209575.94 685211.98,4209579.89 
675
        685212.47,4209582.65 685213.26,4209585.56 
676
        685214.64,4209589.6 685216.62,4209593.75 
677
        685219.19,4209597.59 685222.45,4209601.74 
678
        685225.51,4209605.09 685232.31,4209611.58 
679
        685239.41,4209617.69 685247.61,4209623.02 
680
        685254.52,4209626.77 685260.05,4209629.24 
681
        685265.09,4209630.92 685270.03,4209631.9 
682
        685276.55,4209632.4 685281.77,4209632.19 
683
        685290.36,4209631.31 685303.79,4209628.74 
684
        685336.17,4209621.94 685359.73,4209617.41 
685
        685365.96,4209616.62 685371.29,4209616.12 
686
        685374.65,4209616.12 685378.6,4209616.32 
687
        685383.04,4209616.81 685387.36,4209617.59 
688
        685392.89,4209619.47 685397.93,4209621.74 
689
        685403.44,4209624.58 685412.03,4209630.0 
690
        685435.23,4209647.26 685447.37,4209656.06 
691
        685455.86,4209661.38 685461.1,4209664.74 
692
        685468.11,4209668.39 685473.72,4209670.94 
693
        685479.35,4209673.02 685484.59,4209674.59 
694
        685491.01,4209675.68 685498.22,4209676.57 
695
        685508.87,4209677.05 685521.59,4209677.93 
696
        685536.77,4209679.65 
697
      </gml:coordinates>
698
    </gml:LineString>
699
  </gml:lineStringMember>
700
</gml:MultiLineString>
701
</cit:the_geom>
702
<cit:ENTITY>Complex Chain</cit:ENTITY>
703
<cit:LAYER>22</cit:LAYER>
704
<cit:LEVEL>22.0</cit:LEVEL>
705
<cit:ELEVATION>0.0</cit:ELEVATION>
706
<cit:COLOR>6.0</cit:COLOR>
707
<cit:ID>12652.0</cit:ID>
708
<cit:ID_PONT>3140;3141</cit:ID_PONT>
709
<cit:NOMBRE>CV-949</cit:NOMBRE>
710
<cit:ANCHO_C>5.5</cit:ANCHO_C>
711
<cit:CARRIL_D>1.0</cit:CARRIL_D>
712
<cit:CARRIL_I>1.0</cit:CARRIL_I>
713
<cit:ANCHO_M>0.0</cit:ANCHO_M>
714
<cit:ARCEN>1.0</cit:ARCEN>
715
<cit:TUNEL>false</cit:TUNEL>
716
<cit:URBANA>false</cit:URBANA>
717
<cit:TIPO>COPUT</cit:TIPO>
718
<cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
719
<cit:FROM_NODE>73.0</cit:FROM_NODE>
720
<cit:TO_NODE>1395.0</cit:TO_NODE>
721
</cit:lines></gml:featureMember><gml:featureMember>
722
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
723
  <gml:lineStringMember>
724
    <gml:LineString srsName='0'>
725
      <gml:coordinates>
726
681918.5,4203788.22 681941.42,4203778.09 
727
        681956.47,4203770.65 681964.79,4203765.71 
728
        681970.89,4203761.08 681977.83,4203755.51 
729
        681986.97,4203747.76 681993.81,4203741.34 
730
        682000.86,4203733.46 682013.58,4203718.24 
731
        682015.36,4203715.84 682026.61,4203700.61 
732
        682037.22,4203686.65 682050.16,4203670.38 
733
        682061.93,4203654.24 682073.82,4203637.94 
734
        682080.35,4203629.11 682088.13,4203618.6 
735
        682102.01,4203600.64 682115.91,4203582.58 
736
        682131.46,4203562.0 682160.39,4203524.82 
737
        682183.63,4203494.37 682205.38,4203465.53 
738
        682219.94,4203447.16 682237.13,4203424.25 
739
        682244.4,4203413.95 682254.37,4203399.16 
740
        682261.78,4203386.98 682270.85,4203368.84 
741
        682276.72,4203355.62 682286.77,4203330.28 
742
        682294.65,4203307.82 682297.18,4203301.51 
743
        682300.23,4203295.52 682304.23,4203288.48 
744
        682310.01,4203280.1 682315.8,4203272.22 
745
        682325.05,4203261.2 682335.05,4203251.11 
746
        682344.94,4203242.28 682355.44,4203233.9 
747
        682362.38,4203229.7 682370.38,4203225.92 
748
        682381.64,4203221.18 682392.45,4203217.41 
749
        682403.71,4203213.63 682414.96,4203210.59 
750
        682424.01,4203209.11 682432.22,4203208.38 
751
        682445.48,4203207.96 682479.64,4203209.65 
752
        682514.56,4203211.23 682562.41,4203212.79 
753
        682597.51,4203214.36 682632.21,4203215.83 
754
        682657.12,4203216.35 682670.91,4203216.14 
755
        682680.27,4203215.61 682689.01,4203214.77 
756
        682701.53,4203213.09 682713.7,4203210.88 
757
        682725.38,4203208.36 682740.85,4203204.47 
758
        682757.98,4203199.55 682766.29,4203197.34 
759
        682771.87,4203196.39 682777.45,4203195.97 
760
        682784.25,4203195.77 682791.93,4203196.29 
761
        682801.09,4203197.34 682809.72,4203199.34 
762
        682822.44,4203203.11 682871.75,4203218.34 
763
        682927.48,4203235.04 682982.27,4203251.63 
764
        683004.55,4203258.65 683011.18,4203260.55 
765
        683016.12,4203262.23 683027.28,4203264.33 
766
        683032.02,4203264.86 683038.12,4203265.17 
767
        683042.33,4203265.07 683048.81,4203264.53 
768
        683057.44,4203262.96 683068.28,4203259.91 
769
        683079.72,4203255.6 683100.14,4203246.77 
770
        683130.95,4203234.6 683170.68,4203219.07 
771
        683201.68,4203206.58 683212.31,4203203.12 
772
        683223.04,4203200.28 683235.78,4203197.33 
773
        683252.72,4203194.6 683272.02,4203191.59 
774
        683280.55,4203189.59 683290.76,4203186.23 
775
        683297.39,4203183.07 683305.59,4203177.92 
776
        683314.95,4203171.32 683324.95,4203163.43 
777
        683334.61,4203155.48 683346.6,4203144.12 
778
        683356.49,4203134.03 683366.36,4203122.61 
779
        683375.2,4203111.36 683390.96,4203090.69 
780
        683398.75,4203081.02 683402.75,4203076.71 
781
        683407.78,4203071.7 683412.31,4203068.02 
782
        683416.94,4203064.76 683421.78,4203061.92 
783
        683427.99,4203058.77 683432.93,4203056.98 
784
        683437.25,4203055.83 683441.55,4203054.78 
785
        683447.23,4203053.83 683454.92,4203053.41 
786
        683464.56,4203053.32 683478.35,4203053.95 
787
        683502.95,4203055.51 683554.18,4203057.09 
788
        683614.85,4203059.08 683638.59,4203060.22 
789
        683650.27,4203060.22 683655.74,4203060.01 
790
        683661.95,4203059.38 683666.47,4203058.44 
791
        683670.55,4203057.18 683675.13,4203055.07 
792
        683681.57,4203051.11 683692.31,4203044.69 
793
        683699.45,4203040.9 683705.71,4203038.35 
794
        683710.74,4203036.77 683714.71,4203035.8 
795
        683719.03,4203035.09 683723.61,4203034.56 
796
        683729.12,4203034.48 683734.06,4203034.66 
797
        683739.17,4203035.1 683744.11,4203035.89 
798
        683749.75,4203037.3 683760.07,4203039.59 
799
        683774.23,4203042.85 683794.13,4203047.24 
800
        683807.62,4203050.76 683820.94,4203055.25 
801
        683831.94,4203058.84 683841.02,4203062.54 
802
        683847.45,4203065.27 683854.33,4203068.62 
803
        683860.15,4203071.61 683866.15,4203074.87 
804
        683872.63,4203078.99 683879.59,4203083.66 
805
        683888.41,4203089.91 683895.73,4203096.25 
806
        683911.58,4203110.58 683966.49,4203160.04 
807
        684033.45,4203219.31 684105.26,4203284.15 
808
        684136.14,4203311.48 684146.2,4203320.02 
809
        684156.23,4203328.35 684168.66,4203337.06 
810
        684182.84,4203345.41 684205.85,4203359.59 
811
        684237.05,4203377.7 684252.94,4203386.84 
812
        684272.69,4203399.34 684281.68,4203404.0 
813
        684290.14,4203407.96 684298.52,4203410.95 
814
        684305.92,4203412.98 684316.06,4203414.83 
815
        684325.85,4203416.24 684342.39,4203417.18 
816
        684362.05,4203416.83 684425.06,4203417.35 
817
        684437.8,4203418.23 684445.56,4203419.55 
818
        684452.53,4203421.14 684460.11,4203423.16 
819
        684467.07,4203425.89 684471.22,4203427.92 
820
        684478.6,4203431.95 684487.58,4203437.23 
821
        684495.78,4203443.04 684500.63,4203447.09 
822
        684505.66,4203451.85 684512.09,4203458.54 
823
        684523.09,4203470.31 684540.46,4203490.03 
824
        684586.1,4203541.15 684630.95,4203592.17 
825
        684662.82,4203628.46 684698.17,4203668.07 
826
        684716.45,4203687.73 684727.39,4203697.6 
827
        684743.17,4203710.28 684758.21,4203721.78 
828
        684776.64,4203735.07 684811.88,4203760.22 
829
        684837.77,4203779.29 684866.74,4203800.56 
830
        684892.13,4203819.14 684925.36,4203844.14 
831
        684956.97,4203867.95 684979.16,4203883.86 
832
        685043.23,4203931.73 685052.56,4203938.65 
833
        685064.46,4203948.25 685077.11,4203958.43 
834
        685089.54,4203969.18 685099.77,4203977.98 
835
        685110.88,4203989.08 685139.35,4204016.53 
836
        685177.5,4204051.96 685207.28,4204079.4 
837
        685244.19,4204114.59 685254.28,4204123.7 
838
        685260.8,4204130.39 685266.27,4204136.65 
839
        685272.09,4204143.52 685277.02,4204151.18 
840
        685283.72,4204162.98 685294.03,4204183.8 
841
        685302.94,4204205.11 685320.37,4204249.43 
842
        685346.53,4204318.67 685366.96,4204371.21 
843
        685393.67,4204440.83 685405.54,4204474.56 
844
        685413.48,4204500.36 685416.91,4204513.62 
845
        685422.73,4204539.33 685431.2,4204581.64 
846
        685438.41,4204621.73 685447.84,4204669.58 
847
        685455.86,4204712.16 685468.55,4204776.91 
848
        685483.96,4204855.11 685496.91,4204922.63 
849
        685510.74,4204998.29 685517.97,4205034.23 
850
        685521.58,4205050.87 685524.58,4205062.5 
851
        685530.46,4205083.66 685538.4,4205109.73 
852
        685551.26,4205151.3 685563.69,4205192.12 
853
        685575.84,4205233.38 685584.75,4205260.97 
854
        685597.27,4205301.55 685604.56,4205324.63 
855
        685607.73,4205334.58 685610.38,4205343.92 
856
        685611.88,4205349.55 685613.91,4205358.94 
857
        685615.32,4205366.96 685615.87,4205374.94 
858
        685615.94,4205381.31 685615.41,4205390.33 
859
        685614.53,4205400.37 685613.12,4205409.36 
860
        685611.53,4205416.75 685609.24,4205424.33 
861
        685606.59,4205431.28 685601.67,4205441.1 
862
        685592.94,4205455.54 685570.64,4205489.51 
863
        685537.34,4205541.41 685525.81,4205560.27 
864
        685520.6,4205568.9 685516.46,4205576.87 
865
        685510.91,4205588.28 685508.01,4205596.26 
866
        685505.01,4205606.03 685502.98,4205615.89 
867
        685502.0,4205624.36 685501.29,4205635.11 
868
        685501.38,4205647.88 685502.26,4205666.19 
869
        685505.17,4205697.59 685507.46,4205726.01 
870
        685509.22,4205745.24 685510.99,4205756.42 
871
        685513.19,4205763.56 685514.78,4205768.02 
872
        685517.78,4205774.8 685521.57,4205781.76 
873
        685525.36,4205787.13 685530.48,4205793.3 
874
        685536.71,4205799.88 685546.59,4205809.56 
875
        685557.59,4205818.51 685567.02,4205825.46 
876
        685578.22,4205832.68 685593.9,4205842.8 
877
        685605.53,4205849.56 685631.79,4205865.57 
878
        685656.11,4205879.9 685685.89,4205897.48 
879
        685725.01,4205921.15 685778.23,4205952.99 
880
        685812.93,4205973.75 685839.71,4205990.03 
881
        685865.07,4206004.96 685901.02,4206026.17 
882
        685916.78,4206035.49 685925.86,4206040.6 
883
        685936.62,4206046.33 685948.22,4206052.02 
884
        685963.04,4206058.01 685979.44,4206063.73 
885
        686000.4,4206070.41 686031.59,4206080.52 
886
        686061.47,4206090.9 686082.77,4206097.93 
887
        686092.91,4206101.63 686101.2,4206104.89 
888
        686113.88,4206109.9 686126.13,4206115.27 
889
        686146.73,4206125.55 686159.24,4206131.78 
890
        686166.73,4206134.96 686176.85,4206139.0 
891
        686188.76,4206142.08 686204.52,4206145.86 
892
        686229.19,4206151.93 686254.49,4206157.48 
893
        686289.47,4206166.01 686311.1,4206171.2 
894
        686325.47,4206174.46 686334.11,4206176.75 
895
        686342.13,4206179.3 686349.1,4206181.94 
896
        686358.0,4206186.08 686379.75,4206197.77 
897
        686389.36,4206202.61 686397.56,4206207.02 
898
        686402.5,4206209.66 686407.79,4206212.92 
899
        686413.78,4206217.05 686419.82,4206221.68 
900
        686426.17,4206227.32 686433.32,4206234.8 
901
        686439.84,4206242.55 686447.42,4206252.5 
902
        686469.1,4206282.42 686491.65,4206313.36 
903
        686523.02,4206355.76 686553.14,4206396.67 
904
        686564.04,4206411.85 686571.44,4206422.77 
905
        686579.91,4206437.13 686586.5,4206447.83 
906
        686593.29,4206457.61 686600.52,4206466.68 
907
        686609.76,4206476.68 686618.58,4206484.87 
908
        686627.75,4206492.97 686639.47,4206501.69 
909
        686659.82,4206515.66 686676.38,4206526.91 
910
        686683.52,4206531.93 686693.22,4206538.53 
911
        686700.79,4206544.05 686707.49,4206549.6 
912
        686714.28,4206555.85 686719.48,4206561.58 
913
        686724.94,4206567.92 686734.43,4206580.46 
914
        686742.46,4206591.55 686751.19,4206603.71 
915
        686765.02,4206623.58 686785.81,4206652.86 
916
        686803.5,4206676.75 686811.53,4206686.17 
917
        686820.78,4206696.04 686828.28,4206702.46 
918
        686836.39,4206709.51 686853.04,4206723.14 
919
        686864.38,4206733.04 686869.67,4206738.24 
920
        686874.16,4206743.43 686878.04,4206749.51 
921
        686881.83,4206756.2 686885.01,4206762.98 
922
        686888.89,4206773.11 686893.71,4206787.76 
923
        686897.33,4206802.47 686900.94,4206815.57 
924
        686906.85,4206833.62 686918.57,4206875.49 
925
        686937.52,4206943.03 686939.53,4206951.77 
926
        686941.11,4206961.9 686942.08,4206970.88 
927
        686942.79,4206981.87 686943.05,4206994.2 
928
        686942.7,4207008.29 686941.55,4207031.05 
929
        686941.11,4207042.33 686941.11,4207050.22 
930
        686941.38,4207055.68 686941.82,4207059.29 
931
        686942.88,4207063.57 686944.38,4207067.62 
932
        686946.4,4207072.02 686949.58,4207076.95 
933
        686953.72,4207082.06 686958.31,4207086.81 
934
        686963.69,4207090.78 686970.19,4207094.54 
935
        686982.27,4207100.88 687000.59,4207110.28 
936
        687010.91,4207115.12 687017.78,4207117.94 
937
        687026.07,4207120.84 687034.68,4207123.46 
938
        687044.29,4207125.4 687052.58,4207126.1 
939
        687063.95,4207126.1 687076.47,4207125.58 
940
        687096.11,4207124.08 687121.82,4207122.06 
941
        687131.34,4207121.8 687142.54,4207121.36 
942
        687151.32,4207121.7 687157.49,4207122.23 
943
        687164.45,4207123.38 687171.68,4207124.96 
944
        687179.79,4207127.25 687224.1,4207141.67 
945
        687264.97,4207155.04 687303.4,4207167.46 
946
        687337.2,4207178.53 687349.53,4207182.13 
947
        687357.73,4207184.07 687364.17,4207185.22 
948
        687369.81,4207185.74 687377.13,4207186.18 
949
        687384.45,4207186.62 687400.62,4207187.93 
950
        687413.14,4207188.72 687433.85,4207190.22 
951
        687453.25,4207192.43 687461.36,4207193.31 
952
        687466.27,4207193.39 687470.86,4207192.69 
953
        687476.06,4207191.11 687480.14,4207189.45 
954
      </gml:coordinates>
955
    </gml:LineString>
956
  </gml:lineStringMember>
957
</gml:MultiLineString>
958
</cit:the_geom>
959
<cit:ENTITY>Complex Chain</cit:ENTITY>
960
<cit:LAYER>20</cit:LAYER>
961
<cit:LEVEL>20.0</cit:LEVEL>
962
<cit:ELEVATION>0.0</cit:ELEVATION>
963
<cit:COLOR>7.0</cit:COLOR>
964
<cit:ID>12653.0</cit:ID>
965
<cit:ID_PONT></cit:ID_PONT>
966
<cit:NOMBRE>CV-954</cit:NOMBRE>
967
<cit:ANCHO_C>3.5</cit:ANCHO_C>
968
<cit:CARRIL_D>1.0</cit:CARRIL_D>
969
<cit:CARRIL_I>1.0</cit:CARRIL_I>
970
<cit:ANCHO_M>0.0</cit:ANCHO_M>
971
<cit:ARCEN>0.0</cit:ARCEN>
972
<cit:TUNEL>false</cit:TUNEL>
973
<cit:URBANA>false</cit:URBANA>
974
<cit:TIPO>Diputaci?n</cit:TIPO>
975
<cit:ANCHO_BUF>1.75</cit:ANCHO_BUF>
976
<cit:FROM_NODE>80.0</cit:FROM_NODE>
977
<cit:TO_NODE>1494.0</cit:TO_NODE>
978
</cit:lines></gml:featureMember><gml:featureMember>
979
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
980
  <gml:lineStringMember>
981
    <gml:LineString srsName='0'>
982
      <gml:coordinates>
983
687356.01,4207278.16 687380.67,4207272.49 
984
        687434.93,4207258.27 687469.47,4207248.94 
985
        687476.96,4207247.16 687481.51,4207246.62 
986
        687484.45,4207246.36 687487.22,4207246.53 
987
        687490.43,4207247.07 687495.33,4207248.41 
988
        687500.77,4207249.92 687506.37,4207251.52 
989
        687510.56,4207252.41 687513.86,4207252.5 
990
        687516.47,4207252.35 687518.87,4207251.82 
991
        687520.44,4207251.15 687521.77,4207250.61 
992
        687522.84,4207249.94 687523.56,4207248.96 
993
        687524.0,4207247.36 687524.09,4207245.36 
994
        687523.65,4207243.0 687522.76,4207239.94 
995
        687521.33,4207236.02 687519.19,4207232.5 
996
        687513.93,4207225.02 687506.62,4207216.43 
997
        687499.55,4207209.98 687494.29,4207205.44 
998
        687485.43,4207197.98 687483.03,4207195.04 
999
        687481.06,4207191.83 687480.14,4207189.45 
1000
      </gml:coordinates>
1001
    </gml:LineString>
1002
  </gml:lineStringMember>
1003
</gml:MultiLineString>
1004
</cit:the_geom>
1005
<cit:ENTITY>Line String</cit:ENTITY>
1006
<cit:LAYER>22</cit:LAYER>
1007
<cit:LEVEL>22.0</cit:LEVEL>
1008
<cit:ELEVATION>0.0</cit:ELEVATION>
1009
<cit:COLOR>6.0</cit:COLOR>
1010
<cit:ID>12657.0</cit:ID>
1011
<cit:ID_PONT></cit:ID_PONT>
1012
<cit:NOMBRE>CV-925</cit:NOMBRE>
1013
<cit:ANCHO_C>5.5</cit:ANCHO_C>
1014
<cit:CARRIL_D>1.0</cit:CARRIL_D>
1015
<cit:CARRIL_I>1.0</cit:CARRIL_I>
1016
<cit:ANCHO_M>0.0</cit:ANCHO_M>
1017
<cit:ARCEN>0.0</cit:ARCEN>
1018
<cit:TUNEL>false</cit:TUNEL>
1019
<cit:URBANA>false</cit:URBANA>
1020
<cit:TIPO>COPUT</cit:TIPO>
1021
<cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
1022
<cit:FROM_NODE>1487.0</cit:FROM_NODE>
1023
<cit:TO_NODE>1494.0</cit:TO_NODE>
1024
</cit:lines></gml:featureMember><gml:featureMember>
1025
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
1026
  <gml:lineStringMember>
1027
    <gml:LineString srsName='0'>
1028
      <gml:coordinates>
1029
685442.45,4209825.64 685453.31,4209807.93 
1030
        685459.27,4209798.59 685467.37,4209786.23 
1031
        685483.68,4209761.03 685505.6,4209727.85 
1032
        685530.26,4209690.24 685536.77,4209679.65 
1033
      </gml:coordinates>
1034
    </gml:LineString>
1035
  </gml:lineStringMember>
1036
</gml:MultiLineString>
1037
</cit:the_geom>
1038
<cit:ENTITY>Line String</cit:ENTITY>
1039
<cit:LAYER>22</cit:LAYER>
1040
<cit:LEVEL>22.0</cit:LEVEL>
1041
<cit:ELEVATION>0.0</cit:ELEVATION>
1042
<cit:COLOR>6.0</cit:COLOR>
1043
<cit:ID>12658.0</cit:ID>
1044
<cit:ID_PONT></cit:ID_PONT>
1045
<cit:NOMBRE>CV-925</cit:NOMBRE>
1046
<cit:ANCHO_C>5.5</cit:ANCHO_C>
1047
<cit:CARRIL_D>1.0</cit:CARRIL_D>
1048
<cit:CARRIL_I>1.0</cit:CARRIL_I>
1049
<cit:ANCHO_M>0.0</cit:ANCHO_M>
1050
<cit:ARCEN>1.0</cit:ARCEN>
1051
<cit:TUNEL>false</cit:TUNEL>
1052
<cit:URBANA>false</cit:URBANA>
1053
<cit:TIPO>COPUT</cit:TIPO>
1054
<cit:ANCHO_BUF>2.75</cit:ANCHO_BUF>
1055
<cit:FROM_NODE>1390.0</cit:FROM_NODE>
1056
<cit:TO_NODE>1395.0</cit:TO_NODE>
1057
</cit:lines></gml:featureMember><gml:featureMember>
1058
<cit:lines><cit:the_geom><gml:MultiLineString srsName='0'>
1059
  <gml:lineStringMember>
1060
    <gml:LineString srsName='0'>
1061
      <gml:coordinates>
1062
685536.77,4209679.65 685543.08,4209669.61 
1063
        685548.25,4209661.0 685551.81,4209654.58 
1064
        685554.31,4209649.51 685556.54,4209643.89 
1065
        685558.32,4209638.4 685559.48,4209632.97 
1066
        685560.01,4209627.98 685560.19,4209622.46 
1067
        685559.75,4209617.2 685558.78,4209611.72 
1068
        685556.37,4209603.08 685552.89,4209592.84 
1069
        685539.35,4209558.24 685521.09,4209511.96 
1070
        685493.92,4209443.37 685479.67,4209407.85 
1071
        685463.26,4209366.61 685436.71,4209299.88 
1072
        685430.22,4209282.23 685428.26,4209275.81 
1073
        685426.92,4209270.91 685425.85,4209265.12 
1074
        685425.67,4209261.29 685425.5,4209257.64 
1075
        685425.49,4209252.32 685425.94,4209247.59 
1076
        685426.38,4209244.03 685427.72,4209239.04 
1077
        685429.95,4209232.38 685433.08,4209225.08 
1078
        685438.06,4209216.28 685443.95,4209207.64 
1079
        685462.66,4209180.5 685471.99,4209165.95 
1080
        685476.27,4209158.47 685480.63,4209150.1 
1081
        685483.58,4209142.44 685486.07,4209134.69 
1082
        685488.29,4209124.83 685489.81,4209114.23 
1083
        685492.93,4209074.75 685495.69,4209034.95 
1084
        685500.33,4208972.88 685503.35,4208932.93 
1085
        685504.24,4208919.24 685504.33,4208904.63 
1086
        685504.07,4208894.7 685503.35,4208885.62 
1087
        685500.69,4208866.53 685494.98,4208836.51 
1088
        685488.11,4208803.94 685484.82,4208787.24 
1089
        685483.75,4208780.73 685483.04,4208775.3 
1090
        685482.33,4208769.06 685482.32,4208764.81 
1091
        685482.32,4208759.83 685482.5,4208755.55 
1092
        685482.95,4208751.19 685484.02,4208746.2 
1093
        685485.89,4208740.88 685487.41,4208737.14 
1094
        685491.87,4208727.71 685508.54,4208699.59 
1095
        685529.65,4208665.96 685558.08,4208619.42 
1096
        685574.81,4208591.96 685583.09,4208578.99 
1097
        685588.27,4208571.42 685592.01,4208566.16 
1098
        685597.81,4208559.21 685604.75,4208552.11 
1099
        685610.99,4208546.41 685618.3,4208540.44 
1100
        685627.4,4208533.5 685678.47,4208497.11 
1101
        685701.16,4208480.34 685721.31,4208465.02 
1102
        685747.24,4208444.11 685780.49,4208417.77 
1103
        685812.75,4208391.6 685863.18,4208351.67 
1104
        685927.68,4208299.45 685976.87,4208260.57 
1105
        686010.42,4208233.74 686026.38,4208220.92 
1106
        686053.65,4208199.2 686074.77,4208182.21 
1107
        686109.7,4208154.53 686138.84,4208131.5 
1108
        686164.92,4208110.81 686176.34,4208101.01 
1109
        686183.65,4208093.08 686187.73,4208088.04 
1110
        686191.48,4208082.6 686195.76,4208074.32 
1111
        686199.32,4208066.39 686202.09,4208058.03 
1112
        686206.01,4208044.31 686212.42,4208018.86 
1113
        686224.63,4207967.71 686232.28,4207935.35 
1114
        686242.52,4207892.31 686251.62,4207853.92 
1115
        686258.11,4207826.73 686269.35,4207780.53 
1116
        686272.45,4207769.83 686275.74,4207759.77 
1117
        686280.47,4207747.3 686285.82,4207734.02 
1118
        686297.31,4207707.24 686312.19,4207671.38 
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff