Revision 536

View differences:

org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/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.26</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.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/buildNumber.properties
1
#Sun Feb 07 08:32:28 CET 2016
2
buildNumber=2127
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/java/org/gvsig/fmap/dal/store/gpe/GPETest.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22

  
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2009 {Iver T.I.}   {Task}
26
 */
27

  
28
package org.gvsig.fmap.dal.store.gpe;
29

  
30
import java.io.File;
31

  
32
import org.gvsig.fmap.crs.CRSFactory;
33
import org.gvsig.fmap.dal.DataStoreParameters;
34
import org.gvsig.fmap.dal.exception.DataException;
35
import org.gvsig.fmap.dal.feature.BaseTestEditableFeatureStore;
36
import org.gvsig.fmap.dal.feature.NewFeatureStoreParameters;
37
import org.gvsig.fmap.dal.serverexplorer.filesystem.FilesystemServerExplorer;
38
import org.gvsig.gpe.lib.api.GPELocator;
39
import org.gvsig.gpe.lib.api.GPEManager;
40

  
41
/**
42
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
43
 */
44
public class GPETest extends BaseTestEditableFeatureStore {
45
	public static final File file_prueba = new File("testdata/GML-points.gml");
46

  
47
	private FilesystemServerExplorer myExplorer = null;
48
	private GPEManager gpeManager = null;
49

  
50
	protected void doSetUp() throws Exception {
51
		super.doSetUp();
52
		gpeManager = GPELocator.getGPEManager();
53
	}
54

  
55
	/*
56
	 * (non-Javadoc)
57
	 *
58
	 * @see
59
	 * org.gvsig.fmap.dal.feature.BaseTestFeatureStore#getDefaultDataStoreParameters
60
	 * ()
61
	 */
62
	public DataStoreParameters getDefaultDataStoreParameters()
63
	throws DataException {
64
		GPEStoreParameters parameters = null;
65

  
66
		parameters = (GPEStoreParameters) dataManager
67
		.createStoreParameters(GPEStoreProvider.NAME);
68

  
69
		parameters.setFileName(file_prueba.getAbsolutePath());
70
		parameters.setCRS(CRSFactory.getCRS("EPSG:23030"));
71
		return parameters;
72
	}
73

  
74
	/*
75
	 * (non-Javadoc)
76
	 *
77
	 * @see org.gvsig.fmap.dal.feature.BaseTestFeatureStore#hasExplorer()
78
	 */
79
	public boolean hasExplorer() {
80
		return false;
81
	}
82

  
83
	/* (non-Javadoc)
84
	 * @see org.gvsig.fmap.dal.feature.BaseTestEditableFeatureStore#getDefaultNewDataStoreParameters()
85
	 */
86
	public NewFeatureStoreParameters getDefaultNewDataStoreParameters()
87
	throws Exception {
88
		return null;
89
//		if (this.myExplorer == null) {
90
//			GPEStoreParameters gpeStoreParameters = (GPEStoreParameters) this
91
//			.getDefaultDataStoreParameters();
92
//			FeatureStore store = (FeatureStore) dataManager
93
//			.createStore(gpeStoreParameters);
94
//			myExplorer = (FilesystemServerExplorer) store.getExplorer();
95
//			store.dispose();
96
//		}
97
//
98
//		return (NewFeatureStoreParameters) myExplorer
99
//		.getAddParameters(dbf_prueba_destino);
100
	}
101

  
102
	/* (non-Javadoc)
103
	 * @see org.gvsig.fmap.dal.feature.BaseTestEditableFeatureStore#usesResources()
104
	 */
105
	public boolean usesResources() {
106
		// TODO Auto-generated method stub
107
		return false;
108
	}
109

  
110
	public boolean resourcesNotifyChanges() {
111
		return true;
112
	}
113

  
114

  
115
}
116

  
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/java/org/gvsig/fmap/geom/operation/writegml2/WriteGmlTest.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22
package org.gvsig.fmap.geom.operation.writegml2;
23

  
24
import java.io.ByteArrayOutputStream;
25
import java.io.IOException;
26
import java.io.OutputStream;
27

  
28
import org.slf4j.Logger;
29
import org.slf4j.LoggerFactory;
30

  
31
import org.gvsig.fmap.geom.Geometry;
32
import org.gvsig.fmap.geom.Geometry.SUBTYPES;
33
import org.gvsig.fmap.geom.Geometry.TYPES;
34
import org.gvsig.fmap.geom.GeometryLocator;
35
import org.gvsig.fmap.geom.GeometryManager;
36
import org.gvsig.fmap.geom.aggregate.MultiCurve;
37
import org.gvsig.fmap.geom.aggregate.MultiPoint;
38
import org.gvsig.fmap.geom.aggregate.MultiSurface;
39
import org.gvsig.fmap.geom.exception.CreateGeometryException;
40
import org.gvsig.fmap.geom.operation.GeometryOperationException;
41
import org.gvsig.fmap.geom.operation.GeometryOperationNotSupportedException;
42
import org.gvsig.fmap.geom.primitive.Curve;
43
import org.gvsig.fmap.geom.primitive.GeneralPathX;
44
import org.gvsig.fmap.geom.primitive.Point;
45
import org.gvsig.fmap.geom.primitive.Surface;
46
import org.gvsig.gpe.lib.api.GPELocator;
47
import org.gvsig.gpe.lib.api.GPEManager;
48
import org.gvsig.gpe.lib.api.exceptions.WriterHandlerCreationException;
49
import org.gvsig.gpe.lib.api.writer.IGPEWriterHandler;
50
import org.gvsig.tools.junit.AbstractLibraryAutoInitTestCase;
51

  
52

  
53
/**
54
 * @author gvSIG Team
55
 * @version $Id$
56
 *
57
 */
58
public class WriteGmlTest extends AbstractLibraryAutoInitTestCase{
59
    private static final Logger LOG = LoggerFactory.getLogger(WriteGmlTest.class);
60
    private GeometryManager geometryManager;
61
    private GPEManager gpeManager;
62
    
63
    protected void doSetUp() throws Exception {
64
        geometryManager = GeometryLocator.getGeometryManager();   
65
        gpeManager = GPELocator.getGPEManager();
66
    }
67
    
68
    private String write(Geometry geometry) throws WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException{      
69
        OutputStream os = new ByteArrayOutputStream();   
70
        IGPEWriterHandler writerHandler = gpeManager.createWriterByMimeType("text/xml; subtype=gml/3.1.2");  
71
        writerHandler.setOutputStream(os);
72
        writerHandler.initialize(); 
73
               
74
        WriteGml2OperationContext operationContext = new WriteGml2OperationContext();
75
        operationContext.setWriterHandler(writerHandler);
76
        operationContext.setId("0");
77
        operationContext.setSrs("EPSG:23030");
78
        
79
        geometry.invokeOperation(WriteGml2Operation.NAME, operationContext);
80
   
81
        writerHandler.close();
82

  
83
        LOG.info("Parsed geometry: " + os.toString());
84
        assertTrue(os.toString().startsWith("<?xml"));
85
        return os.toString();
86
    }
87
    
88
    public void testPoint2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
89
        Point point = (Point)geometryManager.create(TYPES.POINT, SUBTYPES.GEOM2D);
90
        point.setCoordinateAt(0, 1.0);
91
        point.setCoordinateAt(1, 2.0);
92
        
93
        write(point);        
94
    }    
95
    
96
    public void testCurve2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
97
        Curve curve = (Curve)geometryManager.create(TYPES.CURVE, SUBTYPES.GEOM2D);
98
        GeneralPathX generalPathX = new GeneralPathX();
99
        generalPathX.moveTo(0, 0);
100
        generalPathX.lineTo(1, 1);
101
        generalPathX.lineTo(2, 1);      
102
        curve.setGeneralPath(generalPathX); 
103
        
104
        write(curve);
105
    }  
106
    
107
    public void testSurface2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
108
        Surface surface = (Surface)geometryManager.create(TYPES.SURFACE, SUBTYPES.GEOM2D);
109
        GeneralPathX generalPathX = new GeneralPathX();
110
        generalPathX.moveTo(0, 0);
111
        generalPathX.lineTo(1, 1);
112
        generalPathX.lineTo(2, 1);
113
        surface.setGeneralPath(generalPathX);   
114
        
115
        write(surface);
116
    } 
117
    
118
    public void testMultiPoint2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
119
        Point point1 = (Point)geometryManager.create(TYPES.POINT, SUBTYPES.GEOM3D);
120
        point1.setCoordinateAt(0, 1.0);
121
        point1.setCoordinateAt(1, 2.0);
122
        point1.setCoordinateAt(2, 3.0);
123
        
124
        Point point2 = (Point)geometryManager.create(TYPES.POINT, SUBTYPES.GEOM3D);
125
        point2.setCoordinateAt(0, 4.0);
126
        point2.setCoordinateAt(1, 5.0);
127
        point2.setCoordinateAt(2, 6.0);
128
        
129
        MultiPoint multiPoint = (MultiPoint)geometryManager.create(TYPES.MULTIPOINT, SUBTYPES.GEOM2D);
130
        multiPoint.addPoint(point1);
131
        multiPoint.addPoint(point2);
132
        
133
        write(multiPoint);        
134
    }    
135
    
136
    public void testMultiCurve2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
137
        Curve curve1 = (Curve)geometryManager.create(TYPES.CURVE, SUBTYPES.GEOM2D);
138
        GeneralPathX generalPathX1 = new GeneralPathX();
139
        generalPathX1.moveTo(0, 0);
140
        generalPathX1.lineTo(1, 1);
141
        generalPathX1.lineTo(2, 1);     
142
        curve1.setGeneralPath(generalPathX1);   
143
        
144
        Curve curve2 = (Curve)geometryManager.create(TYPES.CURVE, SUBTYPES.GEOM2D);
145
        GeneralPathX generalPathX2 = new GeneralPathX();
146
        generalPathX2.moveTo(0, 0);
147
        generalPathX2.lineTo(1, 1);
148
        generalPathX2.lineTo(2, 1);     
149
        curve2.setGeneralPath(generalPathX2);   
150
        
151
        MultiCurve multiCurve = (MultiCurve)geometryManager.create(TYPES.MULTICURVE, SUBTYPES.GEOM2D);
152
        multiCurve.addCurve(curve1);
153
        multiCurve.addCurve(curve2);
154
        
155
        write(multiCurve);
156
    }  
157
    
158
    public void testMultiSurface2D() throws CreateGeometryException, WriterHandlerCreationException, GeometryOperationNotSupportedException, GeometryOperationException, IOException{
159
        Surface surface1 = (Surface)geometryManager.create(TYPES.SURFACE, SUBTYPES.GEOM2D);
160
        GeneralPathX generalPathX1 = new GeneralPathX();
161
        generalPathX1.moveTo(0, 0);
162
        generalPathX1.lineTo(1, 1);
163
        generalPathX1.lineTo(2, 1);     
164
        surface1.setGeneralPath(generalPathX1); 
165
        
166
        Surface surface2 = (Surface)geometryManager.create(TYPES.SURFACE, SUBTYPES.GEOM2D);     
167
        GeneralPathX generalPathX2 = new GeneralPathX();
168
        generalPathX2.moveTo(0, 0);
169
        generalPathX2.lineTo(1, 1);
170
        generalPathX2.lineTo(2, 1);     
171
        surface2.setGeneralPath(generalPathX2); 
172
        
173
        MultiSurface multiSurface = (MultiSurface)geometryManager.create(TYPES.MULTISURFACE, SUBTYPES.GEOM2D);
174
        multiSurface.addSurface(surface1);
175
        multiSurface.addSurface(surface2); 
176
        
177
        write(multiSurface);
178
    } 
179
    
180
}
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/euroroads.gml
1
<?xml version="1.0" encoding="utf-8"?>
2
<er:EuroRoadSDataset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
3
http://www.euroroads.org C:\Projekt\V?gverket\Euroroads\Leveransobjekt\GML\EuroRoadS.xsd"
4
xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:er="
5
http://www.euroroads.org">
6
<gml:featureMember>
7
<er:RoadNode>
8
<er:id>
9
<er:permanentId>169d9fa8-4de4-466e-9555-e0b0948c28b6</er:permanentId>
10
</er:id>
11
<er:formOfNode>Junction</er:formOfNode>
12
<er:node>
13
<er:Node gml:id="i1">
14
<gml:pointProperty>
15
<gml:Point>
16
<gml:coord>
17
<gml:X>123.456</gml:X>
18
<gml:Y>123.456</gml:Y>
19
<gml:Z>100</gml:Z>
20
</gml:coord>
21
</gml:Point>
22
</gml:pointProperty>
23
</er:Node>
24
</er:node>
25
</er:RoadNode>
26
</gml:featureMember>
27
<gml:featureMember>
28
<er:RoadNode>
29
<er:id>
30
<er:permanentId>98a5a365-837a-4be4-9d9a-a261c6c5bb08</er:permanentId>
31
</er:id>
32
<er:attributes>
33
<er:NeighbourBorderNodeInfo>
34
<er:borderNodeType>NationalBorder</er:borderNodeType>
35
<er:neighbourDatasetId>NOR</er:neighbourDatasetId>
36
<er:neighbourId>
37
<er:permanentId>7bcf86f7-8a42-4157-9d7f-f590a3ef159e</er:permanentId>
38
</er:neighbourId>
39
</er:NeighbourBorderNodeInfo>
40
</er:attributes>
41
<er:formOfNode>Junction</er:formOfNode>
42
<er:node>
43
<er:Node gml:id="i2">
44
<gml:pointProperty>
45
<gml:Point>
46
<gml:coord>
47
<gml:X>234.567</gml:X>
48
<gml:Y>234.567</gml:Y>
49
<gml:Z>100</gml:Z>
50
</gml:coord>
51
</gml:Point>
52
</gml:pointProperty>
53
</er:Node>
54
</er:node>
55
</er:RoadNode>
56
</gml:featureMember>
57
<gml:featureMember>
58
<er:RoadLink gml:id="i3">
59
<er:id>
60
<er:permanentId>95e6e70a-ff03-4a53-a21e-8135e0624694</er:permanentId>
61
</er:id>
62
<er:attributes>
63
<er:LinkLevel>
64
<er:startLevel>1</er:startLevel>
65
</er:LinkLevel>
66
<er:DirectionOfFlow>
67
<er:trafficFlow>Positive</er:trafficFlow>
68
</er:DirectionOfFlow>
69
<er:RestrictionForVehiclesDir>
70
<er:restriction>
71
<er:vehicleType>TrolleyBus</er:vehicleType>
72
<er:measure uom="meter">5.56</er:measure>
73
<er:restrictionType>MaximumHeight</er:restrictionType>
74
</er:restriction>
75
<er:validityDirection>+</er:validityDirection>
76
</er:RestrictionForVehiclesDir>
77
<er:SpeedLimit>
78
<er:speedLimit>
79
<er:speedLimit>70</er:speedLimit>
80
<er:speedLimitUnit>km/h</er:speedLimitUnit>
81
<er:speedLimitType>Maximum</er:speedLimitType>
82
</er:speedLimit>
83
</er:SpeedLimit>
84
</er:attributes>
85
<er:edge>
86
<er:Edge gml:id="i4">
87
<gml:directedNode orientation="-"
88
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;169d9fa8-4de4-466e-9555-
89
e0b0948c28b6&quot;]/er:node/er:Node"/>
90
<gml:directedNode orientation="+"
91
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;98a5a365-837a-4be4-9d9aa261c6c5bb08&quot;]/er:node/er:Node"/>
92
<gml:curveProperty>
93
<gml:LineString>
94
<gml:coord>
95
<gml:X>123.456</gml:X>
96
<gml:Y>123.456</gml:Y>
97
<gml:Z>100</gml:Z>
98
</gml:coord>
99
<gml:coord>
100
<gml:X>234.567</gml:X>
101
<gml:Y>234.567</gml:Y>
102
<gml:Z>100</gml:Z>
103
</gml:coord>
104
</gml:LineString>
105
</gml:curveProperty>
106
<er:roadnetLink xlink:href="#i3"/>
107
</er:Edge>
108
</er:edge>
109
<er:formOfWay>SingleCarriageway</er:formOfWay>
110
<er:functionalRoadClass>FirstClass</er:functionalRoadClass>
111
</er:RoadLink>
112
</gml:featureMember>
113
<gml:featureMember>
114
<er:RoadNode>
115
<er:id>
116
<er:permanentId>138dc6d4-f47e-43cc-aa54-08876b72c0d0</er:permanentId>
117
</er:id>
118
<er:formOfNode>GradeSeparatedCrossing</er:formOfNode>
119
<er:node>
120
<er:Node gml:id="i5">
121
<gml:pointProperty>
122
<gml:Point>
123
<gml:coord>
124
<gml:X>34.567</gml:X>
125
<gml:Y>34.567</gml:Y>
126
<gml:Z>100</gml:Z>
127
</gml:coord>
128
</gml:Point>
129
</gml:pointProperty>
130
</er:Node>
131
</er:node>
132
</er:RoadNode>
133
</gml:featureMember>
134
<gml:featureMember>
135
<er:RoadLink gml:id="i6">
136
<er:id>
137
<er:permanentId>b57448ea-a5b1-498d-8a18-ddac05f37da6</er:permanentId>
138
</er:id>
139
<er:attributes>
140
<er:LinkLevel>
141
<er:endLevel>1</er:endLevel>
142
</er:LinkLevel>
143
</er:attributes>
144
<er:edge>
145
<er:Edge gml:id="i7">
146
<gml:directedNode orientation="-"
147
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;138dc6d4-f47e-43cc-aa54-
148
08876b72c0d0&quot;]/er:node/er:Node"/>
149
<gml:directedNode orientation="+"
150
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;169d9fa8-4de4-466e-9555-
151
e0b0948c28b6&quot;]/er:node/er:Node"/>
152
<gml:curveProperty>
153
<gml:LineString>
154
<gml:coord>
155
<gml:X>34.567</gml:X>
156
<gml:Y>34.567</gml:Y>
157
<gml:Z>100</gml:Z>
158
</gml:coord>
159
<gml:coord>
160
<gml:X>123.456</gml:X>
161
<gml:Y>123.456</gml:Y>
162
<gml:Z>100</gml:Z>
163
</gml:coord>
164
</gml:LineString>
165
</gml:curveProperty>
166
<er:roadnetLink xlink:href="#i6"/>
167
</er:Edge>
168
</er:edge>
169
<er:formOfWay>SingleCarriageway</er:formOfWay>
170
<er:functionalRoadClass>FirstClass</er:functionalRoadClass>
171
</er:RoadLink>
172
</gml:featureMember>
173
<gml:featureMember>
174
<er:RoadNode>
175
<er:id>
176
<er:permanentId>42759a40-4664-48ad-830d-114d0edcf8f7</er:permanentId>
177
</er:id>
178
<er:formOfNode>Junction</er:formOfNode>
179
<er:node>
180
<er:Node gml:id="i8">
181
<gml:pointProperty>
182
<gml:Point>
183
<gml:coord>
184
<gml:X>123.456</gml:X>
185
<gml:Y>34.567</gml:Y>
186
<gml:Z>105</gml:Z>
187
</gml:coord>
188
</gml:Point>
189
</gml:pointProperty>
190
</er:Node>
191
</er:node>
192
</er:RoadNode>
193
</gml:featureMember>
194
<gml:featureMember>
195
<er:RoadLink gml:id="i9">
196
<er:id>
197
<er:permanentId>7f18a15d-e245-44c8-8bba-3ae9739a6142</er:permanentId>
198
</er:id>
199
<er:attributes>
200
<er:LinkLevel>
201
<er:endLevel>1</er:endLevel>
202
</er:LinkLevel>
203
</er:attributes>
204
<er:edge>
205
<er:Edge gml:id="i10">
206
<gml:directedNode orientation="-"
207
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;42759a40-4664-48ad-830d-
208
114d0edcf8f7&quot;]/er:node/er:Node"/>
209
<gml:directedNode orientation="+"
210
xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;169d9fa8-4de4-466e-9555-
211
e0b0948c28b6&quot;]/er:node/er:Node"/>
212
<gml:curveProperty>
213
<gml:LineString>
214
<gml:coord>
215
<gml:X>123.456</gml:X>
216
<gml:Y>34.567</gml:Y>
217
<gml:Z>105</gml:Z>
218
</gml:coord>
219
<gml:coord>
220
<gml:X>123.456</gml:X>
221
<gml:Y>123.456</gml:Y>
222
<gml:Z>100</gml:Z>
223
</gml:coord>
224
</gml:LineString>
225
</gml:curveProperty>
226
<er:roadnetLink xlink:href="#i9"/>
227
</er:Edge>
228
</er:edge>
229
<er:formOfWay>SingleCarriageway</er:formOfWay>
230
<er:functionalRoadClass>FirstClass</er:functionalRoadClass>
231
</er:RoadLink>
232
</gml:featureMember>
233
<gml:featureMember>
234
<er:ExcludedManoeuvreFeature>
235
<er:id>
236
<er:permanentId>2bd2fcbf-6a31-4d5d-bd26-ca7b474e55b0</er:permanentId>
237
</er:id>
238
<er:location>
239
<er:turns>
240
<er:node xlink:href="#//er:RoadNode[er:id/er:permanentId=&quot;169d9fa8-4de4-466e-9555-
241
e0b0948c28b6&quot;]"/>
242
<er:fromElement>
243
<er:link xlink:href="//er:RoadLink/permanentId[.=&quot;95e6e70a-ff03-4a53-a21e-
244
8135e0624694&quot;]"/>
245
</er:fromElement>
246
<er:toElement>
247
<er:link xlink:href="//er:RoadLink/permanentId[.=&quot;7f18a15d-e245-44c8-8bba-
248
3ae9739a6142&quot;]"/>
249
</er:toElement>
250
</er:turns>
251
</er:location>
252
</er:ExcludedManoeuvreFeature>
253
</gml:featureMember>
254
<gml:featureMember>
255
<er:Route>
256
<er:id>
257
<er:permanentId>aef110c4-4ae4-4ae4-8dd8-d84bf1188f39</er:permanentId>
258
</er:id>
259
<er:routeLinks>
260
<er:direction>+</er:direction>
261
<er:roadnetLink xlink:href="//er:RoadLink/permanentId[.=&quot;59ed0f41-96e3-40ed-97a2-
262
c2ee384e9b11&quot;]"/>
263
</er:routeLinks>
264
<er:routeLinks>
265
<er:direction>+</er:direction>
266
<er:roadnetLink xlink:href="//er:RoadLink/permanentId[.=&quot;95e6e70a-ff03-4a53-a21e-
267
8135e0624694&quot;]"/>
268
</er:routeLinks>
269
</er:Route>
270
</gml:featureMember>
271
<er:properties>
272
<er:id>b72ce61a-70b7-4d02-9bb2-1a6d8361be5e</er:id>
273
<er:timestamp>
274
<gml:timePosition>2005-12-16 14:07:03</gml:timePosition>
275
</er:timestamp>
276
</er:properties>
277
</er:EuroRoadSDataset>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GML-lines.xsd
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<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">
3
<xs:import namespace="http://www.opengis.net/gml" schemaLocation="feature.xsd"/>
4
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="lines_Type">
5
<xs:complexContent>
6
<xs:extension base="gml:AbstractFeatureType">
7
<xs:sequence>
8
<xs:element name="the_geom" minOccurs="0" nillable="true" type="gml:GeometryPropertyType"/>
9
<xs:element name="ENTITY" minOccurs="0" nillable="true" type="xs:string"/>
10
<xs:element name="LAYER" minOccurs="0" nillable="true" type="xs:string"/>
11
<xs:element name="LEVEL" minOccurs="0" nillable="true" type="xs:double"/>
12
<xs:element name="ELEVATION" minOccurs="0" nillable="true" type="xs:double"/>
13
<xs:element name="COLOR" minOccurs="0" nillable="true" type="xs:double"/>
14
<xs:element name="ID" minOccurs="0" nillable="true" type="xs:double"/>
15
<xs:element name="ID_PONT" minOccurs="0" nillable="true" type="xs:string"/>
16
<xs:element name="NOMBRE" minOccurs="0" nillable="true" type="xs:string"/>
17
<xs:element name="ANCHO_C" minOccurs="0" nillable="true" type="xs:double"/>
18
<xs:element name="CARRIL_D" minOccurs="0" nillable="true" type="xs:double"/>
19
<xs:element name="CARRIL_I" minOccurs="0" nillable="true" type="xs:double"/>
20
<xs:element name="ANCHO_M" minOccurs="0" nillable="true" type="xs:double"/>
21
<xs:element name="ARCEN" minOccurs="0" nillable="true" type="xs:double"/>
22
<xs:element name="TUNEL" minOccurs="0" nillable="true" type="xs:boolean"/>
23
<xs:element name="URBANA" minOccurs="0" nillable="true" type="xs:boolean"/>
24
<xs:element name="TIPO" minOccurs="0" nillable="true" type="xs:string"/>
25
<xs:element name="ANCHO_BUF" minOccurs="0" nillable="true" type="xs:double"/>
26
<xs:element name="FROM_NODE" minOccurs="0" nillable="true" type="xs:double"/>
27
<xs:element name="TO_NODE" minOccurs="0" nillable="true" type="xs:double"/>
28
</xs:sequence></xs:extension></xs:complexContent></xs:complexType>
29
<xs:element name="lines" type="cit:lines_Type" substitutionGroup="gml:_Feature"/></xs:schema>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/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>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GML-points.xsd
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<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">
3
<xs:import namespace="http://www.opengis.net/gml" schemaLocation="feature.xsd"/>
4
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="cities_Type">
5
<xs:complexContent>
6
 <xs:extension base="gml:AbstractFeatureType">
7
  <xs:sequence>
8
   <xs:element name="the_geom" minOccurs="0" nillable="true" type="gml:PointPropertyType"/>
9
   <xs:element name="NAME" minOccurs="0" nillable="true" type="xs:string"/>
10
   <xs:element name="CAPITAL" minOccurs="0" nillable="true" type="xs:string"/>
11
   <xs:element name="PROV_NAME" minOccurs="0" nillable="true" type="xs:string"/>
12
   <xs:element name="POPULATION" minOccurs="0" nillable="true" type="xs:double"/>
13
   <xs:element name="PK" minOccurs="0" nillable="true" type="xs:double"/>
14
  </xs:sequence>
15
 </xs:extension>
16
</xs:complexContent>
17
</xs:complexType>
18
<xs:element name="cities" type="cit:cities_Type" substitutionGroup="gml:_Feature"/>
19
</xs:schema>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GMLNomenclatorIdee.gml
1
<?xml version="1.0" encoding="ISO-8859-1"?><ResultCollection xmlns="http://www.idee.es/mne" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.idee.es/mne GMLNomenclatorIdee.xsd">
2
	<gml:boundedBy>
3
		<gml:Box>
4
			<gml:coord>
5
				<gml:X>-1.13</gml:X>
6
				<gml:Y>42.12</gml:Y>
7
			</gml:coord>
8
			<gml:coord>
9
				<gml:X>-1.13</gml:X>
10
				<gml:Y>42.12</gml:Y>
11
			</gml:coord>
12
		</gml:Box>
13
	</gml:boundedBy>
14
	<gml:featureMember>
15
		<Entidad fid="Entidad.382806">
16
			<nombreEntidad>
17
				<nombre>Ejea de los Caballeros</nombre>
18
				<idioma>und</idioma>
19
				<claseNombre>Preferente</claseNombre>
20
				<estatus>No disponible</estatus>
21
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
22
			</nombreEntidad>
23
			<nombreEntidad>
24
				<nombre>La Capital de Cinco Villas</nombre>
25
				<idioma>und</idioma>
26
				<claseNombre>No disponible</claseNombre>
27
				<estatus>No disponible</estatus>
28
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
29
			</nombreEntidad>
30
			<nombreEntidad>
31
				<nombre>Segeda</nombre>
32
				<idioma>und</idioma>
33
				<claseNombre>No disponible</claseNombre>
34
				<estatus>No disponible</estatus>
35
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
36
			</nombreEntidad>
37
			<nombreEntidad>
38
				<nombre>Segia</nombre>
39
				<idioma>und</idioma>
40
				<claseNombre>No disponible</claseNombre>
41
				<estatus>No disponible</estatus>
42
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
43
			</nombreEntidad>
44
			<nombreEntidad>
45
				<nombre>Setia</nombre>
46
				<idioma>und</idioma>
47
				<claseNombre>No disponible</claseNombre>
48
				<estatus>No disponible</estatus>
49
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
50
			</nombreEntidad>
51
			<tipoEntidad>
52
				<tipo>Poblaci๏ฟฝ</tipo>
53
				<catalogoEntidades>Entidades del Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</catalogoEntidades>
54
			</tipoEntidad>
55
			<posicionEspacial>
56
				<gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
57
					<gml:coordinates cs="," decimal="." ts=" ">-1.13,42.12</gml:coordinates>
58
				</gml:Point>
59
			</posicionEspacial>
60
			<entidadLocal>
61
				<provincia>Zaragoza</provincia>
62
			</entidadLocal>
63
			<entidadLocal>
64
				<municipio>Ejea de los Caballeros</municipio>
65
			</entidadLocal>
66
			<mapa>
67
				<serie>MTN25</serie>
68
				<hoja>0284-1</hoja>
69
			</mapa>
70
		</Entidad>
71
	</gml:featureMember>
72
</ResultCollection>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GML-points.xml
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-points.xsd"><gml:boundedBy><gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#23030"><gml:coordinates decimal="." cs="," ts=" ">-135.15989685058594,43.97196475963302 -41.46491900991063,76.32874354251143</gml:coordinates></gml:Box></gml:boundedBy><gml:featureMember>
2
<cit:cities><cit:the_geom><gml:Point srsName='0'>
3
  <gml:coordinates>
4
-123.06999969482422,49.411192817494346 
5
  </gml:coordinates>
6
</gml:Point>
7
</cit:the_geom>
8
<cit:NAME>Vancouver</cit:NAME>
9
<cit:CAPITAL>N</cit:CAPITAL>
10
<cit:PROV_NAME>British Columbia</cit:PROV_NAME>
11
<cit:POPULATION>1380729.0</cit:POPULATION>
12
<cit:PK>0.0</cit:PK>
13
</cit:cities></gml:featureMember><gml:featureMember>
14
<cit:cities><cit:the_geom><gml:Point srsName='0'>
15
  <gml:coordinates>
16
-114.05000305175781,51.28119174937911 
17
  </gml:coordinates>
18
</gml:Point>
19
</cit:the_geom>
20
<cit:NAME>Calgary</cit:NAME>
21
<cit:CAPITAL>N</cit:CAPITAL>
22
<cit:PROV_NAME>Alberta</cit:PROV_NAME>
23
<cit:POPULATION>671326.0</cit:POPULATION>
24
<cit:PK>1.0</cit:PK>
25
</cit:cities></gml:featureMember><gml:featureMember>
26
<cit:cities><cit:the_geom><gml:Point srsName='0'>
27
  <gml:coordinates>
28
-113.27999877929688,53.581194801136924 
29
  </gml:coordinates>
30
</gml:Point>
31
</cit:the_geom>
32
<cit:NAME>Edmonton</cit:NAME>
33
<cit:CAPITAL>Y</cit:CAPITAL>
34
<cit:PROV_NAME>Alberta</cit:PROV_NAME>
35
<cit:POPULATION>785465.0</cit:POPULATION>
36
<cit:PK>2.0</cit:PK>
37
</cit:cities></gml:featureMember><gml:featureMember>
38
<cit:cities><cit:the_geom><gml:Point srsName='0'>
39
  <gml:coordinates>
40
-97.12444305419922,50.172362251088096 
41
  </gml:coordinates>
42
</gml:Point>
43
</cit:the_geom>
44
<cit:NAME>Winnipeg</cit:NAME>
45
<cit:CAPITAL>Y</cit:CAPITAL>
46
<cit:PROV_NAME>Manitoba</cit:PROV_NAME>
47
<cit:POPULATION>625304.0</cit:POPULATION>
48
<cit:PK>3.0</cit:PK>
49
</cit:cities></gml:featureMember><gml:featureMember>
50
<cit:cities><cit:the_geom><gml:Point srsName='0'>
51
  <gml:coordinates>
52
-79.41264343261719,43.97196475963302 
53
  </gml:coordinates>
54
</gml:Point>
55
</cit:the_geom>
56
<cit:NAME>Toronto</cit:NAME>
57
<cit:CAPITAL>Y</cit:CAPITAL>
58
<cit:PROV_NAME>Ontario</cit:PROV_NAME>
59
<cit:POPULATION>3427168.0</cit:POPULATION>
60
<cit:PK>4.0</cit:PK>
61
</cit:cities></gml:featureMember><gml:featureMember>
62
<cit:cities><cit:the_geom><gml:Point srsName='0'>
63
  <gml:coordinates>
64
-75.65074920654297,45.62541477184005 
65
  </gml:coordinates>
66
</gml:Point>
67
</cit:the_geom>
68
<cit:NAME>Ottawa</cit:NAME>
69
<cit:CAPITAL>C</cit:CAPITAL>
70
<cit:PROV_NAME>Ontario</cit:PROV_NAME>
71
<cit:POPULATION>819263.0</cit:POPULATION>
72
<cit:PK>5.0</cit:PK>
73
</cit:cities></gml:featureMember><gml:featureMember>
74
<cit:cities><cit:the_geom><gml:Point srsName='0'>
75
  <gml:coordinates>
76
-73.65352630615234,45.7922124097795 
77
  </gml:coordinates>
78
</gml:Point>
79
</cit:the_geom>
80
<cit:NAME>Montreal</cit:NAME>
81
<cit:CAPITAL>N</cit:CAPITAL>
82
<cit:PROV_NAME>Quebec</cit:PROV_NAME>
83
<cit:POPULATION>2921357.0</cit:POPULATION>
84
<cit:PK>6.0</cit:PK>
85
</cit:cities></gml:featureMember><gml:featureMember>
86
<cit:cities><cit:the_geom><gml:Point srsName='0'>
87
  <gml:coordinates>
88
-71.24492645263672,47.05326358775802 
89
  </gml:coordinates>
90
</gml:Point>
91
</cit:the_geom>
92
<cit:NAME>Quebec</cit:NAME>
93
<cit:CAPITAL>Y</cit:CAPITAL>
94
<cit:PROV_NAME>Quebec</cit:PROV_NAME>
95
<cit:POPULATION>603267.0</cit:POPULATION>
96
<cit:PK>7.0</cit:PK>
97
</cit:cities></gml:featureMember><gml:featureMember>
98
<cit:cities><cit:the_geom><gml:Point srsName='0'>
99
  <gml:coordinates>
100
-123.34989929199219,48.70318119029708 
101
  </gml:coordinates>
102
</gml:Point>
103
</cit:the_geom>
104
<cit:NAME>Victoria</cit:NAME>
105
<cit:CAPITAL>Y</cit:CAPITAL>
106
<cit:PROV_NAME>British Columbia</cit:PROV_NAME>
107
<cit:POPULATION>255547.0</cit:POPULATION>
108
<cit:PK>8.0</cit:PK>
109
</cit:cities></gml:featureMember><gml:featureMember>
110
<cit:cities><cit:the_geom><gml:Point srsName='0'>
111
  <gml:coordinates>
112
-135.15989685058594,60.88318149547286 
113
  </gml:coordinates>
114
</gml:Point>
115
</cit:the_geom>
116
<cit:NAME>Whitehorse</cit:NAME>
117
<cit:CAPITAL>Y</cit:CAPITAL>
118
<cit:PROV_NAME>Yukon Territory</cit:PROV_NAME>
119
<cit:POPULATION>15199.0</cit:POPULATION>
120
<cit:PK>9.0</cit:PK>
121
</cit:cities></gml:featureMember><gml:featureMember>
122
<cit:cities><cit:the_geom><gml:Point srsName='0'>
123
  <gml:coordinates>
124
-95.31895763571492,75.40770265220989 
125
  </gml:coordinates>
126
</gml:Point>
127
</cit:the_geom>
128
<cit:NAME>Yellowknife</cit:NAME>
129
<cit:CAPITAL>Y</cit:CAPITAL>
130
<cit:PROV_NAME>Northwest Territories</cit:PROV_NAME>
131
<cit:POPULATION>11753.0</cit:POPULATION>
132
<cit:PK>10.0</cit:PK>
133
</cit:cities></gml:featureMember><gml:featureMember>
134
<cit:cities><cit:the_geom><gml:Point srsName='0'>
135
  <gml:coordinates>
136
-104.5198974609375,50.70318119029708 
137
  </gml:coordinates>
138
</gml:Point>
139
</cit:the_geom>
140
<cit:NAME>Regina</cit:NAME>
141
<cit:CAPITAL>Y</cit:CAPITAL>
142
<cit:PROV_NAME>Saskatchewan</cit:PROV_NAME>
143
<cit:POPULATION>186521.0</cit:POPULATION>
144
<cit:PK>11.0</cit:PK>
145
</cit:cities></gml:featureMember><gml:featureMember>
146
<cit:cities><cit:the_geom><gml:Point srsName='0'>
147
  <gml:coordinates>
148
-66.51985168457031,46.03318302135177 
149
  </gml:coordinates>
150
</gml:Point>
151
</cit:the_geom>
152
<cit:NAME>Fredericton</cit:NAME>
153
<cit:CAPITAL>Y</cit:CAPITAL>
154
<cit:PROV_NAME>New Brunswick</cit:PROV_NAME>
155
<cit:POPULATION>65768.0</cit:POPULATION>
156
<cit:PK>12.0</cit:PK>
157
</cit:cities></gml:featureMember><gml:featureMember>
158
<cit:cities><cit:the_geom><gml:Point srsName='0'>
159
  <gml:coordinates>
160
-63.120399475097656,46.506094856068565 
161
  </gml:coordinates>
162
</gml:Point>
163
</cit:the_geom>
164
<cit:NAME>Charlottetown</cit:NAME>
165
<cit:CAPITAL>Y</cit:CAPITAL>
166
<cit:PROV_NAME>Prince Edward Island</cit:PROV_NAME>
167
<cit:POPULATION>53868.0</cit:POPULATION>
168
<cit:PK>13.0</cit:PK>
169
</cit:cities></gml:featureMember><gml:featureMember>
170
<cit:cities><cit:the_geom><gml:Point srsName='0'>
171
  <gml:coordinates>
172
-63.61201858520508,44.89517108897872 
173
  </gml:coordinates>
174
</gml:Point>
175
</cit:the_geom>
176
<cit:NAME>Halifax</cit:NAME>
177
<cit:CAPITAL>Y</cit:CAPITAL>
178
<cit:PROV_NAME>Nova Scotia</cit:PROV_NAME>
179
<cit:POPULATION>295990.0</cit:POPULATION>
180
<cit:PK>14.0</cit:PK>
181
</cit:cities></gml:featureMember><gml:featureMember>
182
<cit:cities><cit:the_geom><gml:Point srsName='0'>
183
  <gml:coordinates>
184
-52.684871673583984,47.82076160411544 
185
  </gml:coordinates>
186
</gml:Point>
187
</cit:the_geom>
188
<cit:NAME>St. John's</cit:NAME>
189
<cit:CAPITAL>Y</cit:CAPITAL>
190
<cit:PROV_NAME>Newfoundland and Labrador</cit:PROV_NAME>
191
<cit:POPULATION>161901.0</cit:POPULATION>
192
<cit:PK>15.0</cit:PK>
193
</cit:cities></gml:featureMember><gml:featureMember>
194
<cit:cities><cit:the_geom><gml:Point srsName='0'>
195
  <gml:coordinates>
196
-133.6699981689453,68.52118961314865 
197
  </gml:coordinates>
198
</gml:Point>
199
</cit:the_geom>
200
<cit:NAME>Inuvik</cit:NAME>
201
<cit:CAPITAL>N</cit:CAPITAL>
202
<cit:PROV_NAME>Northwest Territories</cit:PROV_NAME>
203
<cit:POPULATION>-99.0</cit:POPULATION>
204
<cit:PK>16.0</cit:PK>
205
</cit:cities></gml:featureMember><gml:featureMember>
206
<cit:cities><cit:the_geom><gml:Point srsName='0'>
207
  <gml:coordinates>
208
-130.04808044433594,54.671473426625205 
209
  </gml:coordinates>
210
</gml:Point>
211
</cit:the_geom>
212
<cit:NAME>Prince Rupert</cit:NAME>
213
<cit:CAPITAL>N</cit:CAPITAL>
214
<cit:PROV_NAME>British Columbia</cit:PROV_NAME>
215
<cit:POPULATION>16197.0</cit:POPULATION>
216
<cit:PK>17.0</cit:PK>
217
</cit:cities></gml:featureMember><gml:featureMember>
218
<cit:cities><cit:the_geom><gml:Point srsName='0'>
219
  <gml:coordinates>
220
-106.62999725341797,52.3611935804338 
221
  </gml:coordinates>
222
</gml:Point>
223
</cit:the_geom>
224
<cit:NAME>Saskatoon</cit:NAME>
225
<cit:CAPITAL>N</cit:CAPITAL>
226
<cit:PROV_NAME>Saskatchewan</cit:PROV_NAME>
227
<cit:POPULATION>200665.0</cit:POPULATION>
228
<cit:PK>18.0</cit:PK>
229
</cit:cities></gml:featureMember><gml:featureMember>
230
<cit:cities><cit:the_geom><gml:Point srsName='0'>
231
  <gml:coordinates>
232
-94.18000030517578,58.96195880870528 
233
  </gml:coordinates>
234
</gml:Point>
235
</cit:the_geom>
236
<cit:NAME>Churchill</cit:NAME>
237
<cit:CAPITAL>N</cit:CAPITAL>
238
<cit:PROV_NAME>Manitoba</cit:PROV_NAME>
239
<cit:POPULATION>1304.0</cit:POPULATION>
240
<cit:PK>19.0</cit:PK>
241
</cit:cities></gml:featureMember><gml:featureMember>
242
<cit:cities><cit:the_geom><gml:Point srsName='0'>
243
  <gml:coordinates>
244
-80.7300033569336,51.581194801136924 
245
  </gml:coordinates>
246
</gml:Point>
247
</cit:the_geom>
248
<cit:NAME>Moosonee</cit:NAME>
249
<cit:CAPITAL>N</cit:CAPITAL>
250
<cit:PROV_NAME>Ontario</cit:PROV_NAME>
251
<cit:POPULATION>-99.0</cit:POPULATION>
252
<cit:PK>20.0</cit:PK>
253
</cit:cities></gml:featureMember><gml:featureMember>
254
<cit:cities><cit:the_geom><gml:Point srsName='0'>
255
  <gml:coordinates>
256
-66.99620819091797,55.119238776967 
257
  </gml:coordinates>
258
</gml:Point>
259
</cit:the_geom>
260
<cit:NAME>Schefferville</cit:NAME>
261
<cit:CAPITAL>N</cit:CAPITAL>
262
<cit:PROV_NAME>Quebec</cit:PROV_NAME>
263
<cit:POPULATION>1997.0</cit:POPULATION>
264
<cit:PK>21.0</cit:PK>
265
</cit:cities></gml:featureMember><gml:featureMember>
266
<cit:cities><cit:the_geom><gml:Point srsName='0'>
267
  <gml:coordinates>
268
-60.54999923706055,53.56119434337325 
269
  </gml:coordinates>
270
</gml:Point>
271
</cit:the_geom>
272
<cit:NAME>Goose Bay</cit:NAME>
273
<cit:CAPITAL>N</cit:CAPITAL>
274
<cit:PROV_NAME>Newfoundland and Labrador</cit:PROV_NAME>
275
<cit:POPULATION>-99.0</cit:POPULATION>
276
<cit:PK>22.0</cit:PK>
277
</cit:cities></gml:featureMember><gml:featureMember>
278
<cit:cities><cit:the_geom><gml:Point srsName='0'>
279
  <gml:coordinates>
280
-66.40254211425781,50.53373996715255 
281
  </gml:coordinates>
282
</gml:Point>
283
</cit:the_geom>
284
<cit:NAME>Sept-Iles</cit:NAME>
285
<cit:CAPITAL>N</cit:CAPITAL>
286
<cit:PROV_NAME>Quebec</cit:PROV_NAME>
287
<cit:POPULATION>29262.0</cit:POPULATION>
288
<cit:PK>23.0</cit:PK>
289
</cit:cities></gml:featureMember><gml:featureMember>
290
<cit:cities><cit:the_geom><gml:Point srsName='0'>
291
  <gml:coordinates>
292
-65.64994812011719,45.589327735707236 
293
  </gml:coordinates>
294
</gml:Point>
295
</cit:the_geom>
296
<cit:NAME>Saint John</cit:NAME>
297
<cit:CAPITAL>N</cit:CAPITAL>
298
<cit:PROV_NAME>New Brunswick</cit:PROV_NAME>
299
<cit:POPULATION>121265.0</cit:POPULATION>
300
<cit:PK>24.0</cit:PK>
301
</cit:cities></gml:featureMember></gml:FeatureCollection>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/org.gvsig.gpe.app/org.gvsig.gpe.app.mainplugin/src/test/resources/testdata/GMLNomenclatorIdeeWithoutSchema.gml
1
<?xml version="1.0" encoding="ISO-8859-1"?><ResultCollection xmlns="http://www.idee.es/mne" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.idee.es/mne noSchema.xsd">
2
	<gml:boundedBy>
3
		<gml:Box>
4
			<gml:coord>
5
				<gml:X>-1.13</gml:X>
6
				<gml:Y>42.12</gml:Y>
7
			</gml:coord>
8
			<gml:coord>
9
				<gml:X>-1.13</gml:X>
10
				<gml:Y>42.12</gml:Y>
11
			</gml:coord>
12
		</gml:Box>
13
	</gml:boundedBy>
14
	<gml:featureMember>
15
		<Entidad fid="Entidad.382806">
16
			<nombreEntidad>
17
				<nombre>Ejea de los Caballeros</nombre>
18
				<idioma>und</idioma>
19
				<claseNombre>Preferente</claseNombre>
20
				<estatus>No disponible</estatus>
21
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
22
			</nombreEntidad>
23
			<nombreEntidad>
24
				<nombre>La Capital de Cinco Villas</nombre>
25
				<idioma>und</idioma>
26
				<claseNombre>No disponible</claseNombre>
27
				<estatus>No disponible</estatus>
28
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
29
			</nombreEntidad>
30
			<nombreEntidad>
31
				<nombre>Segeda</nombre>
32
				<idioma>und</idioma>
33
				<claseNombre>No disponible</claseNombre>
34
				<estatus>No disponible</estatus>
35
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
36
			</nombreEntidad>
37
			<nombreEntidad>
38
				<nombre>Segia</nombre>
39
				<idioma>und</idioma>
40
				<claseNombre>No disponible</claseNombre>
41
				<estatus>No disponible</estatus>
42
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
43
			</nombreEntidad>
44
			<nombreEntidad>
45
				<nombre>Setia</nombre>
46
				<idioma>und</idioma>
47
				<claseNombre>No disponible</claseNombre>
48
				<estatus>No disponible</estatus>
49
				<fuente>Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</fuente>
50
			</nombreEntidad>
51
			<tipoEntidad>
52
				<tipo>Poblaci๏ฟฝ</tipo>
53
				<catalogoEntidades>Entidades del Nomencl๏ฟฝor Geogr๏ฟฝico Versi๏ฟฝ 16.06, Instituto Geogr๏ฟฝico Nacional (Espa๏ฟฝ)</catalogoEntidades>
54
			</tipoEntidad>
55
			<posicionEspacial>
56
				<gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
57
					<gml:coordinates cs="," decimal="." ts=" ">-1.13,42.12</gml:coordinates>
58
				</gml:Point>
59
			</posicionEspacial>
60
			<entidadLocal>
61
				<provincia>Zaragoza</provincia>
62
			</entidadLocal>
63
			<entidadLocal>
64
				<municipio>Ejea de los Caballeros</municipio>
65
			</entidadLocal>
66
			<mapa>
67
				<serie>MTN25</serie>
68
				<hoja>0284-1</hoja>
69
			</mapa>
70
		</Entidad>
71
	</gml:featureMember>
72
</ResultCollection>
org.gvsig.gpe/library/tags/org.gvsig.gpe-2.1.26/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
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff