Revision 720

View differences:

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

Also available in: Unified diff