Revision 43856

View differences:

tags/org.gvsig.desktop-2.0.224/org.gvsig.desktop.compat.cdc/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3

  
4
  <modelVersion>4.0.0</modelVersion>
5
  <artifactId>org.gvsig.desktop.compat.cdc</artifactId>
6
  <packaging>pom</packaging>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.desktop</artifactId>
11
      <version>2.0.224</version>
12
  </parent>
13

  
14
  <build>
15
      <plugins>
16
    
17
      </plugins>
18
  </build>
19

  
20
  <modules>
21
      <module>org.gvsig.i18n</module>
22
      <module>org.gvsig.compat</module>
23
      <module>org.gvsig.projection</module>
24
      <module>org.gvsig.fmap.geometry</module>
25
      <module>org.gvsig.remoteclient</module>
26
      <module>org.gvsig.fmap.dal</module>
27
      <module>org.gvsig.fmap.mapcontext</module>
28
      <module>org.gvsig.metadata.basic</module>
29
  </modules>
30

  
31
  <description>This project group the gvSIG libraries that haven java 1.4 compatibility.</description>
32
</project>
0 33

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

  
26
import java.io.File;
27

  
28
import junit.framework.TestCase;
29

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

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

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

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

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

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

  
29
public class AllTests {
30

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

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

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

  
44
}
0 45

  
tags/org.gvsig.desktop-2.0.224/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/wcs/WCS-simonCITSpotDescribeCoverage.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

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

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

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

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

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

  
26
-->
27
<CoverageDescription version="1.0.0" updateSequence="0" xmlns="http://www.opengis.net/wcs" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengeospatial.net/wcs/1.0.0/describeCoverage.xsd">
28
  <CoverageOffering>
29
  <description>Spot 5</description>
30
  <name>Spot</name>
31
  <label>Spot</label>
32
    <lonLatEnvelope srsName="WGS84(DD)">
33
      <gml:pos>-1.86475368381057 37.7142167257884</gml:pos>
34
      <gml:pos>0.677809422798979 40.9142896237773</gml:pos>
35
    </lonLatEnvelope>
36
    <domainSet>
37
      <spatialDomain>
38
        <gml:Envelope srsName="WGS84(DD)">
39
          <gml:pos>-1.86475368381057 37.7142167257884</gml:pos>
40
          <gml:pos>0.677809422798979 40.9142896237773</gml:pos>
41
        </gml:Envelope>
42
        <gml:Envelope srsName="EPSG:23030">
43
          <gml:pos>600000 4180000</gml:pos>
44
          <gml:pos>810000 4530000</gml:pos>
45
        </gml:Envelope>
46
        <gml:RectifiedGrid dimension="2">
47
          <gml:limits>
48
            <gml:GridEnvelope>
49
              <gml:low>0 0</gml:low>
50
              <gml:high>299999 499998</gml:high>
51
            </gml:GridEnvelope>
52
          </gml:limits>
53
          <gml:axisName>x</gml:axisName>
54
          <gml:axisName>y</gml:axisName>
55
          <gml:origin>
56
            <gml:pos>600000 4530000</gml:pos>
57
          </gml:origin>
58
          <gml:offsetVector>0.7 0</gml:offsetVector>
59
          <gml:offsetVector>0 -0.7</gml:offsetVector>
60
        </gml:RectifiedGrid>
61
      </spatialDomain>
62
    </domainSet>
63
    <rangeSet>
64
      <RangeSet>
65
<!-- WARNING: Mandatory metadata '..._rangeset_name' was missing in this context. -->
66
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
67
      </RangeSet>
68
    </rangeSet>
69
    <supportedCRSs>
70
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
71
      <nativeCRSs>EPSG:23030</nativeCRSs>
72
    </supportedCRSs>
73
    <supportedFormats>
74
      <formats>IMG</formats>
75
    </supportedFormats>
76
  </CoverageOffering>
77
  <CoverageOffering>
78
  <name>./039_269/043_269_mer_orto.img</name>
79
  <label>039_269</label>
80
    <lonLatEnvelope srsName="WGS84(DD)">
81
      <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
82
      <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
83
    </lonLatEnvelope>
84
    <domainSet>
85
      <spatialDomain>
86
        <gml:Envelope srsName="WGS84(DD)">
87
          <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
88
          <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
89
        </gml:Envelope>
90
        <gml:Envelope srsName="EPSG:23030">
91
          <gml:pos>755591.5 4439401.5</gml:pos>
92
          <gml:pos>800011.5 4502461.5</gml:pos>
93
        </gml:Envelope>
94
        <gml:RectifiedGrid dimension="2">
95
          <gml:limits>
96
            <gml:GridEnvelope>
97
              <gml:low>0 0</gml:low>
98
              <gml:high>8883 12610</gml:high>
99
            </gml:GridEnvelope>
100
          </gml:limits>
101
          <gml:axisName>x</gml:axisName>
102
          <gml:axisName>y</gml:axisName>
103
          <gml:origin>
104
            <gml:pos>755591.5 4502461.5</gml:pos>
105
          </gml:origin>
106
          <gml:offsetVector>5 0</gml:offsetVector>
107
          <gml:offsetVector>0 -5</gml:offsetVector>
108
        </gml:RectifiedGrid>
109
      </spatialDomain>
110
    </domainSet>
111
    <rangeSet>
112
      <RangeSet>
113
        <name>bands</name>
114
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
115
        <axisDescription>
116
          <AxisDescription>
117
            <name>bands</name>
118
            <label>Bands/Channels/Samples</label>
119
            <values>
120
              <singleValue>1</singleValue>
121
              <singleValue>2</singleValue>
122
              <singleValue>3</singleValue>
123
              <singleValue>4</singleValue>
124
            </values>
125
          </AxisDescription>
126
        </axisDescription>
127
      </RangeSet>
128
    </rangeSet>
129
    <supportedCRSs>
130
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
131
      <nativeCRSs>EPSG:23030</nativeCRSs>
132
    </supportedCRSs>
133
    <supportedFormats nativeFormat="IMG">
134
      <formats>IMG</formats>
135
    </supportedFormats>
136
  </CoverageOffering>
137
  <CoverageOffering>
138
  <name>./039_270/039_270_mer_orto.img</name>
139
  <label>039_270</label>
140
    <lonLatEnvelope srsName="WGS84(DD)">
141
      <gml:pos>-1.54676197706921 39.4606972490718</gml:pos>
142
      <gml:pos>-0.868435651917331 40.1294628581342</gml:pos>
143
    </lonLatEnvelope>
144
    <domainSet>
145
      <spatialDomain>
146
        <gml:Envelope srsName="WGS84(DD)">
147
          <gml:pos>-1.54676197706921 39.4606972490718</gml:pos>
148
          <gml:pos>-0.868435651917331 40.1294628581342</gml:pos>
149
        </gml:Envelope>
150
        <gml:Envelope srsName="EPSG:23030">
151
          <gml:pos>625008.5 4370104.5</gml:pos>
152
          <gml:pos>681648.5 4443234.5</gml:pos>
153
        </gml:Envelope>
154
        <gml:RectifiedGrid dimension="2">
155
          <gml:limits>
156
            <gml:GridEnvelope>
157
              <gml:low>0 0</gml:low>
158
              <gml:high>11327 14624</gml:high>
159
            </gml:GridEnvelope>
160
          </gml:limits>
161
          <gml:axisName>x</gml:axisName>
162
          <gml:axisName>y</gml:axisName>
163
          <gml:origin>
164
            <gml:pos>625008.5 4443234.5</gml:pos>
165
          </gml:origin>
166
          <gml:offsetVector>5 0</gml:offsetVector>
167
          <gml:offsetVector>0 -5</gml:offsetVector>
168
        </gml:RectifiedGrid>
169
      </spatialDomain>
170
    </domainSet>
171
    <rangeSet>
172
      <RangeSet>
173
        <name>bands</name>
174
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
175
        <axisDescription>
176
          <AxisDescription>
177
            <name>bands</name>
178
            <label>Bands/Channels/Samples</label>
179
            <values>
180
              <singleValue>1</singleValue>
181
              <singleValue>2</singleValue>
182
              <singleValue>3</singleValue>
183
              <singleValue>4</singleValue>
184
            </values>
185
          </AxisDescription>
186
        </axisDescription>
187
      </RangeSet>
188
    </rangeSet>
189
    <supportedCRSs>
190
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
191
      <nativeCRSs>EPSG:23030</nativeCRSs>
192
    </supportedCRSs>
193
    <supportedFormats nativeFormat="IMG">
194
      <formats>IMG</formats>
195
    </supportedFormats>
196
  </CoverageOffering>
197
  <CoverageOffering>
198
  <name>./039_271/orto_merge_039_271.img</name>
199
  <label>039_271</label>
200
    <lonLatEnvelope srsName="WGS84(DD)">
201
      <gml:pos>-1.55664772339341 38.9844120265197</gml:pos>
202
      <gml:pos>-1.00604599751678 39.6311355126439</gml:pos>
203
    </lonLatEnvelope>
204
    <domainSet>
205
      <spatialDomain>
206
        <gml:Envelope srsName="WGS84(DD)">
207
          <gml:pos>-1.55664772339341 38.9844120265197</gml:pos>
208
          <gml:pos>-1.00604599751678 39.6311355126439</gml:pos>
209
        </gml:Envelope>
210
        <gml:Envelope srsName="EPSG:23030">
211
          <gml:pos>625004.5 4316976.5</gml:pos>
212
          <gml:pos>671149.5 4387906.5</gml:pos>
213
        </gml:Envelope>
214
        <gml:RectifiedGrid dimension="2">
215
          <gml:limits>
216
            <gml:GridEnvelope>
217
              <gml:low>0 0</gml:low>
218
              <gml:high>9228 14184</gml:high>
219
            </gml:GridEnvelope>
220
          </gml:limits>
221
          <gml:axisName>x</gml:axisName>
222
          <gml:axisName>y</gml:axisName>
223
          <gml:origin>
224
            <gml:pos>625004.5 4387906.5</gml:pos>
225
          </gml:origin>
226
          <gml:offsetVector>5 0</gml:offsetVector>
227
          <gml:offsetVector>0 -5</gml:offsetVector>
228
        </gml:RectifiedGrid>
229
      </spatialDomain>
230
    </domainSet>
231
    <rangeSet>
232
      <RangeSet>
233
        <name>bands</name>
234
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
235
        <axisDescription>
236
          <AxisDescription>
237
            <name>bands</name>
238
            <label>Bands/Channels/Samples</label>
239
            <values>
240
              <singleValue>1</singleValue>
241
              <singleValue>2</singleValue>
242
              <singleValue>3</singleValue>
243
              <singleValue>4</singleValue>
244
            </values>
245
          </AxisDescription>
246
        </axisDescription>
247
      </RangeSet>
248
    </rangeSet>
249
    <supportedCRSs>
250
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
251
      <nativeCRSs>EPSG:23030</nativeCRSs>
252
    </supportedCRSs>
253
    <supportedFormats nativeFormat="IMG">
254
      <formats>IMG</formats>
255
    </supportedFormats>
256
  </CoverageOffering>
257
  <CoverageOffering>
258
  <name>./040_268/orto_040_268_merge.img</name>
259
  <label>040_268</label>
260
    <lonLatEnvelope srsName="WGS84(DD)">
261
      <gml:pos>-0.882933131536222 40.4206286697068</gml:pos>
262
      <gml:pos>0.042917112220084 40.8557286661707</gml:pos>
263
    </lonLatEnvelope>
264
    <domainSet>
265
      <spatialDomain>
266
        <gml:Envelope srsName="WGS84(DD)">
267
          <gml:pos>-0.882933131536222 40.4206286697068</gml:pos>
268
          <gml:pos>0.042917112220084 40.8557286661707</gml:pos>
269
        </gml:Envelope>
270
        <gml:Envelope srsName="EPSG:23030">
271
          <gml:pos>679559.5 4478914.5</gml:pos>
272
          <gml:pos>756579.5 4525004.5</gml:pos>
273
        </gml:Envelope>
274
        <gml:RectifiedGrid dimension="2">
275
          <gml:limits>
276
            <gml:GridEnvelope>
277
              <gml:low>0 0</gml:low>
278
              <gml:high>15403 9216</gml:high>
279
            </gml:GridEnvelope>
280
          </gml:limits>
281
          <gml:axisName>x</gml:axisName>
282
          <gml:axisName>y</gml:axisName>
283
          <gml:origin>
284
            <gml:pos>679559.5 4525004.5</gml:pos>
285
          </gml:origin>
286
          <gml:offsetVector>5 0</gml:offsetVector>
287
          <gml:offsetVector>0 -5</gml:offsetVector>
288
        </gml:RectifiedGrid>
289
      </spatialDomain>
290
    </domainSet>
291
    <rangeSet>
292
      <RangeSet>
293
        <name>bands</name>
294
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
295
        <axisDescription>
296
          <AxisDescription>
297
            <name>bands</name>
298
            <label>Bands/Channels/Samples</label>
299
            <values>
300
              <singleValue>1</singleValue>
301
              <singleValue>2</singleValue>
302
              <singleValue>3</singleValue>
303
              <singleValue>4</singleValue>
304
            </values>
305
          </AxisDescription>
306
        </axisDescription>
307
      </RangeSet>
308
    </rangeSet>
309
    <supportedCRSs>
310
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
311
      <nativeCRSs>EPSG:23030</nativeCRSs>
312
    </supportedCRSs>
313
    <supportedFormats nativeFormat="IMG">
314
      <formats>IMG</formats>
315
    </supportedFormats>
316
  </CoverageOffering>
317
  <CoverageOffering>
318
  <name>./040_269/040_269_mer_orto.img</name>
319
  <label>040_269</label>
320
    <lonLatEnvelope srsName="WGS84(DD)">
321
      <gml:pos>-1.06017669544974 39.9335886073308</gml:pos>
322
      <gml:pos>-0.134746821581555 40.6209906108597</gml:pos>
323
    </lonLatEnvelope>
324
    <domainSet>
325
      <spatialDomain>
326
        <gml:Envelope srsName="WGS84(DD)">
327
          <gml:pos>-1.06017669544974 39.9335886073308</gml:pos>
328
          <gml:pos>-0.134746821581555 40.6209906108597</gml:pos>
329
        </gml:Envelope>
330
        <gml:Envelope srsName="EPSG:23030">
331
          <gml:pos>665711.5 4424317.5</gml:pos>
332
          <gml:pos>742466.5 4498607.5</gml:pos>
333
        </gml:Envelope>
334
        <gml:RectifiedGrid dimension="2">
335
          <gml:limits>
336
            <gml:GridEnvelope>
337
              <gml:low>0 0</gml:low>
338
              <gml:high>15350 14856</gml:high>
339
            </gml:GridEnvelope>
340
          </gml:limits>
341
          <gml:axisName>x</gml:axisName>
342
          <gml:axisName>y</gml:axisName>
343
          <gml:origin>
344
            <gml:pos>665711.5 4498607.5</gml:pos>
345
          </gml:origin>
346
          <gml:offsetVector>5 0</gml:offsetVector>
347
          <gml:offsetVector>0 -5</gml:offsetVector>
348
        </gml:RectifiedGrid>
349
      </spatialDomain>
350
    </domainSet>
351
    <rangeSet>
352
      <RangeSet>
353
        <name>bands</name>
354
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
355
        <axisDescription>
356
          <AxisDescription>
357
            <name>bands</name>
358
            <label>Bands/Channels/Samples</label>
359
            <values>
360
              <singleValue>1</singleValue>
361
              <singleValue>2</singleValue>
362
              <singleValue>3</singleValue>
363
              <singleValue>4</singleValue>
364
            </values>
365
          </AxisDescription>
366
        </axisDescription>
367
      </RangeSet>
368
    </rangeSet>
369
    <supportedCRSs>
370
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
371
      <nativeCRSs>EPSG:23030</nativeCRSs>
372
    </supportedCRSs>
373
    <supportedFormats nativeFormat="IMG">
374
      <formats>IMG</formats>
375
    </supportedFormats>
376
  </CoverageOffering>
377
  <CoverageOffering>
378
  <name>./040_270/ortho40_270_merged.img</name>
379
  <label>040_270</label>
380
    <lonLatEnvelope srsName="WGS84(DD)">
381
      <gml:pos>-1.23314927175127 39.4500113294251</gml:pos>
382
      <gml:pos>-0.316543057947295 40.1334195871412</gml:pos>
383
    </lonLatEnvelope>
384
    <domainSet>
385
      <spatialDomain>
386
        <gml:Envelope srsName="WGS84(DD)">
387
          <gml:pos>-1.23314927175127 39.4500113294251</gml:pos>
388
          <gml:pos>-0.316543057947295 40.1334195871412</gml:pos>
389
        </gml:Envelope>
390
        <gml:Envelope srsName="EPSG:23030">
391
          <gml:pos>651995.5 4370162.5</gml:pos>
392
          <gml:pos>728695.5 4444167.5</gml:pos>
393
        </gml:Envelope>
394
        <gml:RectifiedGrid dimension="2">
395
          <gml:limits>
396
            <gml:GridEnvelope>
397
              <gml:low>0 0</gml:low>
398
              <gml:high>15339 14799</gml:high>
399
            </gml:GridEnvelope>
400
          </gml:limits>
401
          <gml:axisName>x</gml:axisName>
402
          <gml:axisName>y</gml:axisName>
403
          <gml:origin>
404
            <gml:pos>651995.5 4444167.5</gml:pos>
405
          </gml:origin>
406
          <gml:offsetVector>5 0</gml:offsetVector>
407
          <gml:offsetVector>0 -5</gml:offsetVector>
408
        </gml:RectifiedGrid>
409
      </spatialDomain>
410
    </domainSet>
411
    <rangeSet>
412
      <RangeSet>
413
        <name>bands</name>
414
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
415
        <axisDescription>
416
          <AxisDescription>
417
            <name>bands</name>
418
            <label>Bands/Channels/Samples</label>
419
            <values>
420
              <singleValue>1</singleValue>
421
              <singleValue>2</singleValue>
422
              <singleValue>3</singleValue>
423
              <singleValue>4</singleValue>
424
            </values>
425
          </AxisDescription>
426
        </axisDescription>
427
      </RangeSet>
428
    </rangeSet>
429
    <supportedCRSs>
430
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
431
      <nativeCRSs>EPSG:23030</nativeCRSs>
432
    </supportedCRSs>
433
    <supportedFormats nativeFormat="IMG">
434
      <formats>IMG</formats>
435
    </supportedFormats>
436
  </CoverageOffering>
437
  <CoverageOffering>
438
  <name>./040_271/040_271_mer_orto.img</name>
439
  <label>040_271</label>
440
    <lonLatEnvelope srsName="WGS84(DD)">
441
      <gml:pos>-1.40711287394984 38.9630942019202</gml:pos>
442
      <gml:pos>-0.498591247901213 39.6452000314982</gml:pos>
443
    </lonLatEnvelope>
444
    <domainSet>
445
      <spatialDomain>
446
        <gml:Envelope srsName="WGS84(DD)">
447
          <gml:pos>-1.40711287394984 38.9630942019202</gml:pos>
448
          <gml:pos>-0.498591247901213 39.6452000314982</gml:pos>
449
        </gml:Envelope>
450
        <gml:Envelope srsName="EPSG:23030">
451
          <gml:pos>637982.5 4315674.5</gml:pos>
452
          <gml:pos>714712.5 4389689.5</gml:pos>
453
        </gml:Envelope>
454
        <gml:RectifiedGrid dimension="2">
455
          <gml:limits>
456
            <gml:GridEnvelope>
457
              <gml:low>0 0</gml:low>
458
              <gml:high>15345 14801</gml:high>
459
            </gml:GridEnvelope>
460
          </gml:limits>
461
          <gml:axisName>x</gml:axisName>
462
          <gml:axisName>y</gml:axisName>
463
          <gml:origin>
464
            <gml:pos>637982.5 4389689.5</gml:pos>
465
          </gml:origin>
466
          <gml:offsetVector>5 0</gml:offsetVector>
467
          <gml:offsetVector>0 -5</gml:offsetVector>
468
        </gml:RectifiedGrid>
469
      </spatialDomain>
470
    </domainSet>
471
    <rangeSet>
472
      <RangeSet>
473
        <name>bands</name>
474
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
475
        <axisDescription>
476
          <AxisDescription>
477
            <name>bands</name>
478
            <label>Bands/Channels/Samples</label>
479
            <values>
480
              <singleValue>1</singleValue>
481
              <singleValue>2</singleValue>
482
              <singleValue>3</singleValue>
483
              <singleValue>4</singleValue>
484
            </values>
485
          </AxisDescription>
486
        </axisDescription>
487
      </RangeSet>
488
    </rangeSet>
489
    <supportedCRSs>
490
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
491
      <nativeCRSs>EPSG:23030</nativeCRSs>
492
    </supportedCRSs>
493
    <supportedFormats nativeFormat="IMG">
494
      <formats>IMG</formats>
495
    </supportedFormats>
496
  </CoverageOffering>
497
  <CoverageOffering>
498
  <name>./040_272/ortho040_272_pc.img</name>
499
  <label>040_272</label>
500
    <lonLatEnvelope srsName="WGS84(DD)">
501
      <gml:pos>-1.50661519738613 38.4858384680425</gml:pos>
502
      <gml:pos>-0.660854303698855 39.1453819916464</gml:pos>
503
    </lonLatEnvelope>
504
    <domainSet>
505
      <spatialDomain>
506
        <gml:Envelope srsName="WGS84(DD)">
507
          <gml:pos>-1.50661519738613 38.4858384680425</gml:pos>
508
          <gml:pos>-0.660854303698855 39.1453819916464</gml:pos>
509
        </gml:Envelope>
510
        <gml:Envelope srsName="EPSG:23030">
511
          <gml:pos>630230.5 4262339.5</gml:pos>
512
          <gml:pos>702195.5 4334064.5</gml:pos>
513
        </gml:Envelope>
514
        <gml:RectifiedGrid dimension="2">
515
          <gml:limits>
516
            <gml:GridEnvelope>
517
              <gml:low>0 0</gml:low>
518
              <gml:high>14392 14343</gml:high>
519
            </gml:GridEnvelope>
520
          </gml:limits>
521
          <gml:axisName>x</gml:axisName>
522
          <gml:axisName>y</gml:axisName>
523
          <gml:origin>
524
            <gml:pos>630230.5 4334064.5</gml:pos>
525
          </gml:origin>
526
          <gml:offsetVector>5 0</gml:offsetVector>
527
          <gml:offsetVector>0 -5</gml:offsetVector>
528
        </gml:RectifiedGrid>
529
      </spatialDomain>
530
    </domainSet>
531
    <rangeSet>
532
      <RangeSet>
533
        <name>bands</name>
534
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
535
        <axisDescription>
536
          <AxisDescription>
537
            <name>bands</name>
538
            <label>Bands/Channels/Samples</label>
539
            <values>
540
              <singleValue>1</singleValue>
541
              <singleValue>2</singleValue>
542
              <singleValue>3</singleValue>
543
              <singleValue>4</singleValue>
544
            </values>
545
          </AxisDescription>
546
        </axisDescription>
547
      </RangeSet>
548
    </rangeSet>
549
    <supportedCRSs>
550
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
551
      <nativeCRSs>EPSG:23030</nativeCRSs>
552
    </supportedCRSs>
553
    <supportedFormats nativeFormat="IMG">
554
      <formats>IMG</formats>
555
    </supportedFormats>
556
  </CoverageOffering>
557
  <CoverageOffering>
558
  <name>./040_273/ortho040_273.img</name>
559
  <label>040_273</label>
560
    <lonLatEnvelope srsName="WGS84(DD)">
561
      <gml:pos>-1.78560250629897 37.9946383011098</gml:pos>
562
      <gml:pos>-0.890457811165821 38.6569004835813</gml:pos>
563
    </lonLatEnvelope>
564
    <domainSet>
565
      <spatialDomain>
566
        <gml:Envelope srsName="WGS84(DD)">
567
          <gml:pos>-1.78560250629897 37.9946383011098</gml:pos>
568
          <gml:pos>-0.890457811165821 38.6569004835813</gml:pos>
569
        </gml:Envelope>
570
        <gml:Envelope srsName="EPSG:23030">
571
          <gml:pos>606617.5 4207352.5</gml:pos>
572
          <gml:pos>683597.5 4279487.5</gml:pos>
573
        </gml:Envelope>
574
        <gml:RectifiedGrid dimension="2">
575
          <gml:limits>
576
            <gml:GridEnvelope>
577
              <gml:low>0 0</gml:low>
578
              <gml:high>15395 14425</gml:high>
579
            </gml:GridEnvelope>
580
          </gml:limits>
581
          <gml:axisName>x</gml:axisName>
582
          <gml:axisName>y</gml:axisName>
583
          <gml:origin>
584
            <gml:pos>606617.5 4279487.5</gml:pos>
585
          </gml:origin>
586
          <gml:offsetVector>5 0</gml:offsetVector>
587
          <gml:offsetVector>0 -5</gml:offsetVector>
588
        </gml:RectifiedGrid>
589
      </spatialDomain>
590
    </domainSet>
591
    <rangeSet>
592
      <RangeSet>
593
        <name>bands</name>
594
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
595
        <axisDescription>
596
          <AxisDescription>
597
            <name>bands</name>
598
            <label>Bands/Channels/Samples</label>
599
            <values>
600
              <singleValue>1</singleValue>
601
              <singleValue>2</singleValue>
602
              <singleValue>3</singleValue>
603
              <singleValue>4</singleValue>
604
            </values>
605
          </AxisDescription>
606
        </axisDescription>
607
      </RangeSet>
608
    </rangeSet>
609
    <supportedCRSs>
610
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
611
      <nativeCRSs>EPSG:23030</nativeCRSs>
612
    </supportedCRSs>
613
    <supportedFormats nativeFormat="IMG">
614
      <formats>IMG</formats>
615
    </supportedFormats>
616
  </CoverageOffering>
617
  <CoverageOffering>
618
  <name>./041_268/ortho041_268.img</name>
619
  <label>041_268</label>
620
    <lonLatEnvelope srsName="WGS84(DD)">
621
      <gml:pos>-0.356449851947824 40.3956240488913</gml:pos>
622
      <gml:pos>0.615718364079852 41.1332339337031</gml:pos>
623
    </lonLatEnvelope>
624
    <domainSet>
625
      <spatialDomain>
626
        <gml:Envelope srsName="WGS84(DD)">
627
          <gml:pos>-0.356449851947824 40.3956240488913</gml:pos>
628
          <gml:pos>0.615718364079852 41.1332339337031</gml:pos>
629
        </gml:Envelope>
630
        <gml:Envelope srsName="EPSG:23030">
631
          <gml:pos>724284.5 4477893.5</gml:pos>
632
          <gml:pos>803634.5 4557068.5</gml:pos>
633
        </gml:Envelope>
634
        <gml:RectifiedGrid dimension="2">
635
          <gml:limits>
636
            <gml:GridEnvelope>
637
              <gml:low>0 0</gml:low>
638
              <gml:high>15869 15833</gml:high>
639
            </gml:GridEnvelope>
640
          </gml:limits>
641
          <gml:axisName>x</gml:axisName>
642
          <gml:axisName>y</gml:axisName>
643
          <gml:origin>
644
            <gml:pos>724284.5 4557068.5</gml:pos>
645
          </gml:origin>
646
          <gml:offsetVector>5 0</gml:offsetVector>
647
          <gml:offsetVector>0 -5</gml:offsetVector>
648
        </gml:RectifiedGrid>
649
      </spatialDomain>
650
    </domainSet>
651
    <rangeSet>
652
      <RangeSet>
653
        <name>bands</name>
654
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
655
        <axisDescription>
656
          <AxisDescription>
657
            <name>bands</name>
658
            <label>Bands/Channels/Samples</label>
659
            <values>
660
              <singleValue>1</singleValue>
661
              <singleValue>2</singleValue>
662
              <singleValue>3</singleValue>
663
              <singleValue>4</singleValue>
664
            </values>
665
          </AxisDescription>
666
        </axisDescription>
667
      </RangeSet>
668
    </rangeSet>
669
    <supportedCRSs>
670
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
671
      <nativeCRSs>EPSG:23030</nativeCRSs>
672
    </supportedCRSs>
673
    <supportedFormats nativeFormat="IMG">
674
      <formats>IMG</formats>
675
    </supportedFormats>
676
  </CoverageOffering>
677
  <CoverageOffering>
678
  <name>./041_269/ortho041_269_pc.img</name>
679
  <label>041_269</label>
680
    <lonLatEnvelope srsName="WGS84(DD)">
681
      <gml:pos>-0.479653469782083 39.9492494682236</gml:pos>
682
      <gml:pos>0.445247142510061 40.6096049622214</gml:pos>
683
    </lonLatEnvelope>
684
    <domainSet>
685
      <spatialDomain>
686
        <gml:Envelope srsName="WGS84(DD)">
687
          <gml:pos>-0.479653469782083 39.9492494682236</gml:pos>
688
          <gml:pos>0.445247142510061 40.6096049622214</gml:pos>
689
        </gml:Envelope>
690
        <gml:Envelope srsName="EPSG:23030">
691
          <gml:pos>715245.5 4427780.5</gml:pos>
692
          <gml:pos>791595.5 4498610.5</gml:pos>
693
        </gml:Envelope>
694
        <gml:RectifiedGrid dimension="2">
695
          <gml:limits>
696
            <gml:GridEnvelope>
697
              <gml:low>0 0</gml:low>
698
              <gml:high>15269 14164</gml:high>
699
            </gml:GridEnvelope>
700
          </gml:limits>
701
          <gml:axisName>x</gml:axisName>
702
          <gml:axisName>y</gml:axisName>
703
          <gml:origin>
704
            <gml:pos>715245.5 4498610.5</gml:pos>
705
          </gml:origin>
706
          <gml:offsetVector>5 0</gml:offsetVector>
707
          <gml:offsetVector>0 -5</gml:offsetVector>
708
        </gml:RectifiedGrid>
709
      </spatialDomain>
710
    </domainSet>
711
    <rangeSet>
712
      <RangeSet>
713
        <name>bands</name>
714
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
715
        <axisDescription>
716
          <AxisDescription>
717
            <name>bands</name>
718
            <label>Bands/Channels/Samples</label>
719
            <values>
720
              <singleValue>1</singleValue>
721
              <singleValue>2</singleValue>
722
              <singleValue>3</singleValue>
723
              <singleValue>4</singleValue>
724
            </values>
725
          </AxisDescription>
726
        </axisDescription>
727
      </RangeSet>
728
    </rangeSet>
729
    <supportedCRSs>
730
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
731
      <nativeCRSs>EPSG:23030</nativeCRSs>
732
    </supportedCRSs>
733
    <supportedFormats nativeFormat="IMG">
734
      <formats>IMG</formats>
735
    </supportedFormats>
736
  </CoverageOffering>
737
  <CoverageOffering>
738
  <name>./041_270/ortho041_270.img</name>
739
  <label>041_270</label>
740
    <lonLatEnvelope srsName="WGS84(DD)">
741
      <gml:pos>-0.662681099922943 39.4610007000431</gml:pos>
742
      <gml:pos>0.202247054039875 40.1227571570735</gml:pos>
743
    </lonLatEnvelope>
744
    <domainSet>
745
      <spatialDomain>
746
        <gml:Envelope srsName="WGS84(DD)">
747
          <gml:pos>-0.662681099922943 39.4610007000431</gml:pos>
748
          <gml:pos>0.202247054039875 40.1227571570735</gml:pos>
749
        </gml:Envelope>
750
        <gml:Envelope srsName="EPSG:23030">
751
          <gml:pos>701035.5 4372816.5</gml:pos>
752
          <gml:pos>772970.5 4444126.5</gml:pos>
753
        </gml:Envelope>
754
        <gml:RectifiedGrid dimension="2">
755
          <gml:limits>
756
            <gml:GridEnvelope>
757
              <gml:low>0 0</gml:low>
758
              <gml:high>14386 14260</gml:high>
759
            </gml:GridEnvelope>
760
          </gml:limits>
761
          <gml:axisName>x</gml:axisName>
762
          <gml:axisName>y</gml:axisName>
763
          <gml:origin>
764
            <gml:pos>701035.5 4444126.5</gml:pos>
765
          </gml:origin>
766
          <gml:offsetVector>5 0</gml:offsetVector>
767
          <gml:offsetVector>0 -5</gml:offsetVector>
768
        </gml:RectifiedGrid>
769
      </spatialDomain>
770
    </domainSet>
771
    <rangeSet>
772
      <RangeSet>
773
        <name>bands</name>
774
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
775
        <axisDescription>
776
          <AxisDescription>
777
            <name>bands</name>
778
            <label>Bands/Channels/Samples</label>
779
            <values>
780
              <singleValue>1</singleValue>
781
              <singleValue>2</singleValue>
782
              <singleValue>3</singleValue>
783
              <singleValue>4</singleValue>
784
            </values>
785
          </AxisDescription>
786
        </axisDescription>
787
      </RangeSet>
788
    </rangeSet>
789
    <supportedCRSs>
790
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
791
      <nativeCRSs>EPSG:23030</nativeCRSs>
792
    </supportedCRSs>
793
    <supportedFormats nativeFormat="IMG">
794
      <formats>IMG</formats>
795
    </supportedFormats>
796
  </CoverageOffering>
797
  <CoverageOffering>
798
  <name>./041_272/orto_041_272_merge.img</name>
799
  <label>041_272</label>
800
    <lonLatEnvelope srsName="WGS84(DD)">
801
      <gml:pos>-0.93884828048088 38.4867392539068</gml:pos>
802
      <gml:pos>-0.0710677786125404 39.1455128669135</gml:pos>
803
    </lonLatEnvelope>
804
    <domainSet>
805
      <spatialDomain>
806
        <gml:Envelope srsName="WGS84(DD)">
807
          <gml:pos>-0.93884828048088 38.4867392539068</gml:pos>
808
          <gml:pos>-0.0710677786125404 39.1455128669135</gml:pos>
809
        </gml:Envelope>
810
        <gml:Envelope srsName="EPSG:23030">
811
          <gml:pos>679733.5 4263887.5</gml:pos>
812
          <gml:pos>753223.5 4335057.5</gml:pos>
813
        </gml:Envelope>
814
        <gml:RectifiedGrid dimension="2">
815
          <gml:limits>
816
            <gml:GridEnvelope>
817
              <gml:low>0 0</gml:low>
818
              <gml:high>14697 14232</gml:high>
819
            </gml:GridEnvelope>
820
          </gml:limits>
821
          <gml:axisName>x</gml:axisName>
822
          <gml:axisName>y</gml:axisName>
823
          <gml:origin>
824
            <gml:pos>679733.5 4335057.5</gml:pos>
825
          </gml:origin>
826
          <gml:offsetVector>5 0</gml:offsetVector>
827
          <gml:offsetVector>0 -5</gml:offsetVector>
828
        </gml:RectifiedGrid>
829
      </spatialDomain>
830
    </domainSet>
831
    <rangeSet>
832
      <RangeSet>
833
        <name>bands</name>
834
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
835
        <axisDescription>
836
          <AxisDescription>
837
            <name>bands</name>
838
            <label>Bands/Channels/Samples</label>
839
            <values>
840
              <singleValue>1</singleValue>
841
              <singleValue>2</singleValue>
842
              <singleValue>3</singleValue>
843
              <singleValue>4</singleValue>
844
            </values>
845
          </AxisDescription>
846
        </axisDescription>
847
      </RangeSet>
848
    </rangeSet>
849
    <supportedCRSs>
850
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
851
      <nativeCRSs>EPSG:23030</nativeCRSs>
852
    </supportedCRSs>
853
    <supportedFormats nativeFormat="IMG">
854
      <formats>IMG</formats>
855
    </supportedFormats>
856
  </CoverageOffering>
857
  <CoverageOffering>
858
  <name>./041_273/ortho041_273_merged.img</name>
859
  <label>041_273</label>
860
    <lonLatEnvelope srsName="WGS84(DD)">
861
      <gml:pos>-1.13731938812606 37.9970045311446</gml:pos>
862
      <gml:pos>-0.183220235614133 38.6589793948757</gml:pos>
863
    </lonLatEnvelope>
864
    <domainSet>
865
      <spatialDomain>
866
        <gml:Envelope srsName="WGS84(DD)">
867
          <gml:pos>-1.13731938812606 37.9970045311446</gml:pos>
868
          <gml:pos>-0.183220235614133 38.6589793948757</gml:pos>
869
        </gml:Envelope>
870
        <gml:Envelope srsName="EPSG:23030">
871
          <gml:pos>663518.5 4209231.5</gml:pos>
872
          <gml:pos>745173.5 4280681.5</gml:pos>
873
        </gml:Envelope>
874
        <gml:RectifiedGrid dimension="2">
875
          <gml:limits>
876
            <gml:GridEnvelope>
877
              <gml:low>0 0</gml:low>
878
              <gml:high>16330 14288</gml:high>
879
            </gml:GridEnvelope>
880
          </gml:limits>
881
          <gml:axisName>x</gml:axisName>
882
          <gml:axisName>y</gml:axisName>
883
          <gml:origin>
884
            <gml:pos>663518.5 4280681.5</gml:pos>
885
          </gml:origin>
886
          <gml:offsetVector>5 0</gml:offsetVector>
887
          <gml:offsetVector>0 -5</gml:offsetVector>
888
        </gml:RectifiedGrid>
889
      </spatialDomain>
890
    </domainSet>
891
    <rangeSet>
892
      <RangeSet>
893
        <name>bands</name>
894
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
895
        <axisDescription>
896
          <AxisDescription>
897
            <name>bands</name>
898
            <label>Bands/Channels/Samples</label>
899
            <values>
900
              <singleValue>1</singleValue>
901
              <singleValue>2</singleValue>
902
              <singleValue>3</singleValue>
903
              <singleValue>4</singleValue>
904
            </values>
905
          </AxisDescription>
906
        </axisDescription>
907
      </RangeSet>
908
    </rangeSet>
909
    <supportedCRSs>
910
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
911
      <nativeCRSs>EPSG:23030</nativeCRSs>
912
    </supportedCRSs>
913
    <supportedFormats nativeFormat="IMG">
914
      <formats>IMG</formats>
915
    </supportedFormats>
916
  </CoverageOffering>
917
  <CoverageOffering>
918
  <name>./041_274/041_274_mer_orto.img</name>
919
  <label>041_274</label>
920
    <lonLatEnvelope srsName="WGS84(DD)">
921
      <gml:pos>-1.25887586160928 37.6979338310255</gml:pos>
922
      <gml:pos>-0.622777299800351 38.1698074145459</gml:pos>
923
    </lonLatEnvelope>
924
    <domainSet>
925
      <spatialDomain>
926
        <gml:Envelope srsName="WGS84(DD)">
927
          <gml:pos>-1.25887586160928 37.6979338310255</gml:pos>
928
          <gml:pos>-0.622777299800351 38.1698074145459</gml:pos>
929
        </gml:Envelope>
930
        <gml:Envelope srsName="EPSG:23030">
931
          <gml:pos>653481.5 4174996.5</gml:pos>
932
          <gml:pos>708286.5 4226176.5</gml:pos>
933
        </gml:Envelope>
934
        <gml:RectifiedGrid dimension="2">
935
          <gml:limits>
936
            <gml:GridEnvelope>
937
              <gml:low>0 0</gml:low>
938
              <gml:high>10960 10234</gml:high>
939
            </gml:GridEnvelope>
940
          </gml:limits>
941
          <gml:axisName>x</gml:axisName>
942
          <gml:axisName>y</gml:axisName>
943
          <gml:origin>
944
            <gml:pos>653481.5 4226176.5</gml:pos>
945
          </gml:origin>
946
          <gml:offsetVector>5 0</gml:offsetVector>
947
          <gml:offsetVector>0 -5</gml:offsetVector>
948
        </gml:RectifiedGrid>
949
      </spatialDomain>
950
    </domainSet>
951
    <rangeSet>
952
      <RangeSet>
953
        <name>bands</name>
954
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
955
        <axisDescription>
956
          <AxisDescription>
957
            <name>bands</name>
958
            <label>Bands/Channels/Samples</label>
959
            <values>
960
              <singleValue>1</singleValue>
961
              <singleValue>2</singleValue>
962
              <singleValue>3</singleValue>
963
              <singleValue>4</singleValue>
964
            </values>
965
          </AxisDescription>
966
        </axisDescription>
967
      </RangeSet>
968
    </rangeSet>
969
    <supportedCRSs>
970
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
971
      <nativeCRSs>EPSG:23030</nativeCRSs>
972
    </supportedCRSs>
973
    <supportedFormats nativeFormat="IMG">
974
      <formats>IMG</formats>
975
    </supportedFormats>
976
  </CoverageOffering>
977
  <CoverageOffering>
978
  <name>./042_271/orto_merge_042_271.img</name>
979
  <label>042_271</label>
980
    <lonLatEnvelope srsName="WGS84(DD)">
981
      <gml:pos>-0.804013057066019 38.9718975937575</gml:pos>
982
      <gml:pos>0.218694462599702 39.6378615837972</gml:pos>
983
    </lonLatEnvelope>
984
    <domainSet>
985
      <spatialDomain>
986
        <gml:Envelope srsName="WGS84(DD)">
987
          <gml:pos>-0.804013057066019 38.9718975937575</gml:pos>
988
          <gml:pos>0.218694462599702 39.6378615837972</gml:pos>
989
        </gml:Envelope>
990
        <gml:Envelope srsName="EPSG:23030">
991
          <gml:pos>690186.5 4318571.5</gml:pos>
992
          <gml:pos>776351.5 4389986.5</gml:pos>
993
        </gml:Envelope>
994
        <gml:RectifiedGrid dimension="2">
995
          <gml:limits>
996
            <gml:GridEnvelope>
997
              <gml:low>0 0</gml:low>
998
              <gml:high>17232 14281</gml:high>
999
            </gml:GridEnvelope>
1000
          </gml:limits>
1001
          <gml:axisName>x</gml:axisName>
1002
          <gml:axisName>y</gml:axisName>
1003
          <gml:origin>
1004
            <gml:pos>690186.5 4389986.5</gml:pos>
1005
          </gml:origin>
1006
          <gml:offsetVector>5 0</gml:offsetVector>
1007
          <gml:offsetVector>0 -5</gml:offsetVector>
1008
        </gml:RectifiedGrid>
1009
      </spatialDomain>
1010
    </domainSet>
1011
    <rangeSet>
1012
      <RangeSet>
1013
        <name>bands</name>
1014
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
1015
        <axisDescription>
1016
          <AxisDescription>
1017
            <name>bands</name>
1018
            <label>Bands/Channels/Samples</label>
1019
            <values>
1020
              <singleValue>1</singleValue>
1021
              <singleValue>2</singleValue>
1022
              <singleValue>3</singleValue>
1023
              <singleValue>4</singleValue>
1024
            </values>
1025
          </AxisDescription>
1026
        </axisDescription>
1027
      </RangeSet>
1028
    </rangeSet>
1029
    <supportedCRSs>
1030
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
1031
      <nativeCRSs>EPSG:23030</nativeCRSs>
1032
    </supportedCRSs>
1033
    <supportedFormats nativeFormat="IMG">
1034
      <formats>IMG</formats>
1035
    </supportedFormats>
1036
  </CoverageOffering>
1037
  <CoverageOffering>
1038
  <name>./043_268/043_268_ortho_merged.img</name>
1039
  <label>043_268</label>
1040
    <lonLatEnvelope srsName="WGS84(DD)">
1041
      <gml:pos>0.242968471591328 40.4967322631042</gml:pos>
1042
      <gml:pos>1.00471450204767 41.1066346476233</gml:pos>
1043
    </lonLatEnvelope>
1044
    <domainSet>
1045
      <spatialDomain>
1046
        <gml:Envelope srsName="WGS84(DD)">
1047
          <gml:pos>0.242968471591328 40.4967322631042</gml:pos>
1048
          <gml:pos>1.00471450204767 41.1066346476233</gml:pos>
1049
        </gml:Envelope>
1050
        <gml:Envelope srsName="EPSG:23030">
1051
          <gml:pos>774745.475904 4490544.41566</gml:pos>
1052
          <gml:pos>836430.475904 4555834.41566</gml:pos>
1053
        </gml:Envelope>
1054
        <gml:RectifiedGrid dimension="2">
1055
          <gml:limits>
1056
            <gml:GridEnvelope>
1057
              <gml:low>0 0</gml:low>
1058
              <gml:high>12336 13056</gml:high>
1059
            </gml:GridEnvelope>
1060
          </gml:limits>
1061
          <gml:axisName>x</gml:axisName>
1062
          <gml:axisName>y</gml:axisName>
1063
          <gml:origin>
1064
            <gml:pos>774745.475904 4555834.41566</gml:pos>
1065
          </gml:origin>
1066
          <gml:offsetVector>5 0</gml:offsetVector>
1067
          <gml:offsetVector>0 -5</gml:offsetVector>
1068
        </gml:RectifiedGrid>
1069
      </spatialDomain>
1070
    </domainSet>
1071
    <rangeSet>
1072
      <RangeSet>
1073
        <name>bands</name>
1074
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
1075
        <axisDescription>
1076
          <AxisDescription>
1077
            <name>bands</name>
1078
            <label>Bands/Channels/Samples</label>
1079
            <values>
1080
              <singleValue>1</singleValue>
1081
              <singleValue>2</singleValue>
1082
              <singleValue>3</singleValue>
1083
              <singleValue>4</singleValue>
1084
            </values>
1085
          </AxisDescription>
1086
        </axisDescription>
1087
      </RangeSet>
1088
    </rangeSet>
1089
    <supportedCRSs>
1090
      <requestResponseCRSs>EPSG:23030</requestResponseCRSs>
1091
      <nativeCRSs>EPSG:23030</nativeCRSs>
1092
    </supportedCRSs>
1093
    <supportedFormats nativeFormat="IMG">
1094
      <formats>IMG</formats>
1095
    </supportedFormats>
1096
  </CoverageOffering>
1097
  <CoverageOffering>
1098
  <name>./043_269/043_269_mer_orto.img</name>
1099
  <label>043_269</label>
1100
    <lonLatEnvelope srsName="WGS84(DD)">
1101
      <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
1102
      <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
1103
    </lonLatEnvelope>
1104
    <domainSet>
1105
      <spatialDomain>
1106
        <gml:Envelope srsName="WGS84(DD)">
1107
          <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
1108
          <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
1109
        </gml:Envelope>
1110
        <gml:Envelope srsName="EPSG:23030">
1111
          <gml:pos>755591.5 4439401.5</gml:pos>
1112
          <gml:pos>800011.5 4502461.5</gml:pos>
1113
        </gml:Envelope>
1114
        <gml:RectifiedGrid dimension="2">
1115
          <gml:limits>
1116
            <gml:GridEnvelope>
1117
              <gml:low>0 0</gml:low>
1118
              <gml:high>8883 12610</gml:high>
1119
            </gml:GridEnvelope>
1120
          </gml:limits>
1121
          <gml:axisName>x</gml:axisName>
1122
          <gml:axisName>y</gml:axisName>
1123
          <gml:origin>
1124
            <gml:pos>755591.5 4502461.5</gml:pos>
1125
          </gml:origin>
1126
          <gml:offsetVector>5 0</gml:offsetVector>
1127
          <gml:offsetVector>0 -5</gml:offsetVector>
1128
        </gml:RectifiedGrid>
1129
      </spatialDomain>
1130
    </domainSet>
1131
    <rangeSet>
1132
      <RangeSet>
1133
        <name>bands</name>
1134
<!-- WARNING: Mandatory metadata '..._rangeset_label' was missing in this context. -->
1135
        <axisDescription>
1136
          <AxisDescription>
1137
            <name>bands</name>
1138
            <label>Bands/Channels/Samples</label>
1139
            <values>
1140
              <singleValue>1</singleValue>
1141
              <singleValue>2</singleValue>
1142
              <singleValue>3</singleValue>
1143
              <singleValue>4</singleValue>
1144
            </values>
1145
          </AxisDescription>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff