Revision 43186

View differences:

tags/org.gvsig.desktop-2.0.175/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.175</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.175/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.175/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.175/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/wms/wms.xml
1
<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?>
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
<!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd"
28
 [
29
 <!ELEMENT VendorSpecificCapabilities EMPTY>
30
 ]>  <!-- end of DOCTYPE declaration -->
31

  
32
<WMT_MS_Capabilities version="1.3.0">
33

  
34
<!-- MapServer version 4.10.1 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG OUTPUT=WBMP OUTPUT=PDF OUTPUT=SWF OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=FREETYPE SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUPPORTS=GEOS INPUT=JPEG INPUT=SDE INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE DEBUG=MSDEBUG -->
35

  
36
<Service>
37
  <Name>OGC:WMS</Name>
38
  <Title>WMS Server</Title>
39
  <Abstract>CHG WMS Server</Abstract>
40
        <KeywordList>
41
          <Keyword>WMS</Keyword>
42
          <Keyword> Servidor de mapas en red</Keyword>
43
        </KeywordList>
44
  <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/>
45
  <ContactInformation>
46
    <ContactAddress>
47
<!-- WARNING: Mandatory metadata '..._addresstype' was missing in this context. -->
48
        <Address>Avda. de Portugal s/n</Address>
49
        <City>Sevilla</City>
50
        <StateOrProvince>Sevilla</StateOrProvince>
51
        <PostCode>41004</PostCode>
52
        <Country>Spain</Country>
53
    </ContactAddress>
54
  </ContactInformation>
55
</Service>
56

  
57
<Capability>
58
  <Request>
59
    <GetCapabilities>
60
      <Format>application/vnd.ogc.wms_xml</Format>
61
      <DCPType>
62
        <HTTP>
63
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
64
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
65
        </HTTP>
66
      </DCPType>
67
    </GetCapabilities>
68
    <GetMap>
69
      <Format>image/jpeg</Format>
70
      <Format>image/gif</Format>
71
      <Format>image/png</Format>
72
      <Format>image/png; mode=24bit</Format>
73
      <Format>image/wbmp</Format>
74
      <Format>image/tiff</Format>
75
      <DCPType>
76
        <HTTP>
77
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
78
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
79
        </HTTP>
80
      </DCPType>
81
    </GetMap>
82
    <GetFeatureInfo>
83
      <Format>text/plain</Format>
84
      <Format>application/vnd.ogc.gml</Format>
85
      <DCPType>
86
        <HTTP>
87
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
88
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
89
        </HTTP>
90
      </DCPType>
91
    </GetFeatureInfo>
92
    <DescribeLayer>
93
      <Format>text/xml</Format>
94
      <DCPType>
95
        <HTTP>
96
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
97
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
98
        </HTTP>
99
      </DCPType>
100
    </DescribeLayer>
101
    <GetLegendGraphic>
102
      <Format>image/jpeg</Format>
103
      <Format>image/gif</Format>
104
      <Format>image/png</Format>
105
      <Format>image/png; mode=24bit</Format>
106
      <Format>image/wbmp</Format>
107
      <DCPType>
108
        <HTTP>
109
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
110
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
111
        </HTTP>
112
      </DCPType>
113
    </GetLegendGraphic>
114
    <GetStyles>
115
      <Format>text/xml</Format>
116
      <DCPType>
117
        <HTTP>
118
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
119
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
120
        </HTTP>
121
      </DCPType>
122
    </GetStyles>
123
  </Request>
124
  <Exception>
125
    <Format>application/vnd.ogc.se_xml</Format>
126
    <Format>application/vnd.ogc.se_inimage</Format>
127
    <Format>application/vnd.ogc.se_blank</Format>
128
  </Exception>
129
  <VendorSpecificCapabilities />
130
  <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/>
131
  <Layer>
132
    <Name>CHG</Name>
133
    <Title>WMS Server</Title>
134
    <SRS>epsg:23030</SRS>
135
    <LatLonBoundingBox minx="-6.84474" miny="36.6506" maxx="-2.09263" maxy="38.5449" />
136
    <BoundingBox SRS="EPSG:23030"
137
                minx="164590" miny="4.06274e+006" maxx="579080" maxy="4.26635e+006" />
138
    <Layer queryable="0" opaque="0" cascaded="0">
139
        <Name>time_idx</Name>
140
        <Title>TIME INDEX</Title>
141
        <SRS>EPSG:23030</SRS>
142
        <LatLonBoundingBox minx="-6.8471" miny="36.682" maxx="-2.16907" maxy="38.75" />
143
        <BoundingBox SRS="EPSG:23030"
144
                    minx="165338" miny="4.0662e+006" maxx="572211" maxy="4.2891e+006" />
145
        <Dimension name="time" units="ISO8601"/>
146
        <Extent name="time" nearestValue="0">2004-01-01/2004-12-1/15D</Extent>
147
    </Layer>
148
    <Layer>
149
      <Name>NDVI</Name>
150
      <Title>NDVI</Title>
151
      <Abstract>NDVI</Abstract>
152
      <Layer queryable="0" opaque="0" cascaded="0">
153
        <Name>NDVI</Name>
154
        <Title>NDVI</Title>
155
        <SRS>EPSG:23030</SRS>
156
        <LatLonBoundingBox minx="-6.8471" miny="36.682" maxx="-2.16907" maxy="38.75" />
157
        <BoundingBox SRS="EPSG:23030"
158
                    minx="165338" miny="4.0662e+006" maxx="572211" maxy="4.2891e+006" />
159
        <Dimension name="time" units="ISO8601"/>
160
        <Extent name="time" default="2004-01-01" nearestValue="0">2004-01-01/2004-12-1/15D</Extent>
161
      </Layer>
162
    </Layer>
163
  </Layer>
164
</Capability>
165
</WMT_MS_Capabilities>
0 166

  
tags/org.gvsig.desktop-2.0.175/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/wms/wms
1
<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?>
2
<!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd"
3
 [
4
 <!ELEMENT VendorSpecificCapabilities EMPTY>
5
 ]>  <!-- end of DOCTYPE declaration -->
6

  
7
<WMT_MS_Capabilities version="1.1.1">
8

  
9
<!-- MapServer version 4.10.1 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG OUTPUT=WBMP OUTPUT=PDF OUTPUT=SWF OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=FREETYPE SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUPPORTS=GEOS INPUT=JPEG INPUT=SDE INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE DEBUG=MSDEBUG -->
10

  
11
<Service>
12
  <Name>OGC:WMS</Name>
13
  <Title>WMS Server</Title>
14
  <Abstract>CHG WMS Server</Abstract>
15
        <KeywordList>
16
          <Keyword>WMS</Keyword>
17
          <Keyword> Servidor de mapas en red</Keyword>
18
        </KeywordList>
19
  <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/>
20
  <ContactInformation>
21
    <ContactAddress>
22
<!-- WARNING: Mandatory metadata '..._addresstype' was missing in this context. -->
23
        <Address>Avda. de Portugal s/n</Address>
24
        <City>Sevilla</City>
25
        <StateOrProvince>Sevilla</StateOrProvince>
26
        <PostCode>41004</PostCode>
27
        <Country>Spain</Country>
28
    </ContactAddress>
29
  </ContactInformation>
30
</Service>
31

  
32
<Capability>
33
  <Request>
34
    <GetCapabilities>
35
      <Format>application/vnd.ogc.wms_xml</Format>
36
      <DCPType>
37
        <HTTP>
38
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
39
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
40
        </HTTP>
41
      </DCPType>
42
    </GetCapabilities>
43
    <GetMap>
44
      <Format>image/jpeg</Format>
45
      <Format>image/gif</Format>
46
      <Format>image/png</Format>
47
      <Format>image/png; mode=24bit</Format>
48
      <Format>image/wbmp</Format>
49
      <Format>image/tiff</Format>
50
      <DCPType>
51
        <HTTP>
52
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
53
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
54
        </HTTP>
55
      </DCPType>
56
    </GetMap>
57
    <GetFeatureInfo>
58
      <Format>text/plain</Format>
59
      <Format>application/vnd.ogc.gml</Format>
60
      <DCPType>
61
        <HTTP>
62
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
63
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
64
        </HTTP>
65
      </DCPType>
66
    </GetFeatureInfo>
67
    <DescribeLayer>
68
      <Format>text/xml</Format>
69
      <DCPType>
70
        <HTTP>
71
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
72
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
73
        </HTTP>
74
      </DCPType>
75
    </DescribeLayer>
76
    <GetLegendGraphic>
77
      <Format>image/jpeg</Format>
78
      <Format>image/gif</Format>
79
      <Format>image/png</Format>
80
      <Format>image/png; mode=24bit</Format>
81
      <Format>image/wbmp</Format>
82
      <DCPType>
83
        <HTTP>
84
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
85
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
86
        </HTTP>
87
      </DCPType>
88
    </GetLegendGraphic>
89
    <GetStyles>
90
      <Format>text/xml</Format>
91
      <DCPType>
92
        <HTTP>
93
          <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Get>
94
          <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://sanlucar:81/cgi-bin/wms?"/></Post>
95
        </HTTP>
96
      </DCPType>
97
    </GetStyles>
98
  </Request>
99
  <Exception>
100
    <Format>application/vnd.ogc.se_xml</Format>
101
    <Format>application/vnd.ogc.se_inimage</Format>
102
    <Format>application/vnd.ogc.se_blank</Format>
103
  </Exception>
104
  <VendorSpecificCapabilities />
105
  <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/>
106
  <Layer>
107
    <Name>CHG</Name>
108
    <Title>WMS Server</Title>
109
    <SRS>epsg:23030</SRS>
110
    <LatLonBoundingBox minx="-6.84474" miny="36.6506" maxx="-2.09263" maxy="38.5449" />
111
    <BoundingBox SRS="EPSG:23030"
112
                minx="164590" miny="4.06274e+006" maxx="579080" maxy="4.26635e+006" />
113
    <Layer queryable="0" opaque="0" cascaded="0">
114
        <Name>time_idx</Name>
115
        <Title>TIME INDEX</Title>
116
        <SRS>EPSG:23030</SRS>
117
        <LatLonBoundingBox minx="-6.8471" miny="36.682" maxx="-2.16907" maxy="38.75" />
118
        <BoundingBox SRS="EPSG:23030"
119
                    minx="165338" miny="4.0662e+006" maxx="572211" maxy="4.2891e+006" />
120
        <Dimension name="time" units="ISO8601"/>
121
        <Extent name="time" nearestValue="0">2004-01-01/2004-12-1/15D</Extent>
122
    </Layer>
123
    <Layer>
124
      <Name>NDVI</Name>
125
      <Title>NDVI</Title>
126
      <Abstract>NDVI</Abstract>
127
      <Layer queryable="0" opaque="0" cascaded="0">
128
        <Name>NDVI</Name>
129
        <Title>NDVI</Title>
130
        <SRS>EPSG:23030</SRS>
131
        <LatLonBoundingBox minx="-6.8471" miny="36.682" maxx="-2.16907" maxy="38.75" />
132
        <BoundingBox SRS="EPSG:23030"
133
                    minx="165338" miny="4.0662e+006" maxx="572211" maxy="4.2891e+006" />
134
        <Dimension name="time" units="ISO8601"/>
135
        <Extent name="time" default="2004-01-01" nearestValue="0">2004-01-01/2004-12-1/15D</Extent>
136
      </Layer>
137
    </Layer>
138
  </Layer>
139
</Capability>
140
</WMT_MS_Capabilities>
tags/org.gvsig.desktop-2.0.175/org.gvsig.desktop.compat.cdc/org.gvsig.remoteclient/src/test/resources/wcs/WCS-simonCITSpotGetCapabilities.xml
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
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
<WCS_Capabilities 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/wcsCapabilities.xsd">
28
<Service>
29
  <name>MapServer WCS</name>
30
  <label>Servidor wcs simon</label>
31
  <keywords>
32
    <keyword>WCS</keyword>
33
  </keywords>
34
  <fees>NONE</fees>
35
  <accessConstraints>
36
    NONE
37
  </accessConstraints>
38
</Service>
39
<Capability>
40
  <Request>
41
    <GetCapabilities>
42
      <DCPType>
43
        <HTTP>
44
          <Get><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Get>
45
        </HTTP>
46
      </DCPType>
47
      <DCPType>
48
        <HTTP>
49
          <Post><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Post>
50
        </HTTP>
51
      </DCPType>
52
    </GetCapabilities>
53
    <DescribeCoverage>
54
      <DCPType>
55
        <HTTP>
56
          <Get><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Get>
57
        </HTTP>
58
      </DCPType>
59
      <DCPType>
60
        <HTTP>
61
          <Post><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Post>
62
        </HTTP>
63
      </DCPType>
64
    </DescribeCoverage>
65
    <GetCoverage>
66
      <DCPType>
67
        <HTTP>
68
          <Get><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Get>
69
        </HTTP>
70
      </DCPType>
71
      <DCPType>
72
        <HTTP>
73
          <Post><OnlineResource xlink:type="simple" xlink:href="http://simon:2000/cgi-bin/mapserv?map=/etc/mapserver/inestable/spot.map&amp;"/></Post>
74
        </HTTP>
75
      </DCPType>
76
    </GetCoverage>
77
  </Request>
78
  <Exception>
79
    <Format>application/vnd.ogc.se_xml</Format>
80
  </Exception>
81
  <VendorSpecificCapabilities/>
82
</Capability>
83
<ContentMetadata>
84
  <CoverageOfferingBrief>
85
  <description>Spot 5</description>
86
  <name>Spot</name>
87
  <label>Spot</label>
88
    <lonLatEnvelope srsName="WGS84(DD)">
89
      <gml:pos>-1.86475368381057 37.7142167257884</gml:pos>
90
      <gml:pos>0.677809422798979 40.9142896237773</gml:pos>
91
    </lonLatEnvelope>
92
  </CoverageOfferingBrief>
93
  <CoverageOfferingBrief>
94
  <name>./039_269/043_269_mer_orto.img</name>
95
  <label>039_269</label>
96
    <lonLatEnvelope srsName="WGS84(DD)">
97
      <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
98
      <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
99
    </lonLatEnvelope>
100
  </CoverageOfferingBrief>
101
  <CoverageOfferingBrief>
102
  <name>./039_270/039_270_mer_orto.img</name>
103
  <label>039_270</label>
104
    <lonLatEnvelope srsName="WGS84(DD)">
105
      <gml:pos>-1.54676197706921 39.4606972490718</gml:pos>
106
      <gml:pos>-0.868435651917331 40.1294628581342</gml:pos>
107
    </lonLatEnvelope>
108
  </CoverageOfferingBrief>
109
  <CoverageOfferingBrief>
110
  <name>./039_271/orto_merge_039_271.img</name>
111
  <label>039_271</label>
112
    <lonLatEnvelope srsName="WGS84(DD)">
113
      <gml:pos>-1.55664772339341 38.9844120265197</gml:pos>
114
      <gml:pos>-1.00604599751678 39.6311355126439</gml:pos>
115
    </lonLatEnvelope>
116
  </CoverageOfferingBrief>
117
  <CoverageOfferingBrief>
118
  <name>./040_268/orto_040_268_merge.img</name>
119
  <label>040_268</label>
120
    <lonLatEnvelope srsName="WGS84(DD)">
121
      <gml:pos>-0.882933131536222 40.4206286697068</gml:pos>
122
      <gml:pos>0.042917112220084 40.8557286661707</gml:pos>
123
    </lonLatEnvelope>
124
  </CoverageOfferingBrief>
125
  <CoverageOfferingBrief>
126
  <name>./040_269/040_269_mer_orto.img</name>
127
  <label>040_269</label>
128
    <lonLatEnvelope srsName="WGS84(DD)">
129
      <gml:pos>-1.06017669544974 39.9335886073308</gml:pos>
130
      <gml:pos>-0.134746821581555 40.6209906108597</gml:pos>
131
    </lonLatEnvelope>
132
  </CoverageOfferingBrief>
133
  <CoverageOfferingBrief>
134
  <name>./040_270/ortho40_270_merged.img</name>
135
  <label>040_270</label>
136
    <lonLatEnvelope srsName="WGS84(DD)">
137
      <gml:pos>-1.23314927175127 39.4500113294251</gml:pos>
138
      <gml:pos>-0.316543057947295 40.1334195871412</gml:pos>
139
    </lonLatEnvelope>
140
  </CoverageOfferingBrief>
141
  <CoverageOfferingBrief>
142
  <name>./040_271/040_271_mer_orto.img</name>
143
  <label>040_271</label>
144
    <lonLatEnvelope srsName="WGS84(DD)">
145
      <gml:pos>-1.40711287394984 38.9630942019202</gml:pos>
146
      <gml:pos>-0.498591247901213 39.6452000314982</gml:pos>
147
    </lonLatEnvelope>
148
  </CoverageOfferingBrief>
149
  <CoverageOfferingBrief>
150
  <name>./040_272/ortho040_272_pc.img</name>
151
  <label>040_272</label>
152
    <lonLatEnvelope srsName="WGS84(DD)">
153
      <gml:pos>-1.50661519738613 38.4858384680425</gml:pos>
154
      <gml:pos>-0.660854303698855 39.1453819916464</gml:pos>
155
    </lonLatEnvelope>
156
  </CoverageOfferingBrief>
157
  <CoverageOfferingBrief>
158
  <name>./040_273/ortho040_273.img</name>
159
  <label>040_273</label>
160
    <lonLatEnvelope srsName="WGS84(DD)">
161
      <gml:pos>-1.78560250629897 37.9946383011098</gml:pos>
162
      <gml:pos>-0.890457811165821 38.6569004835813</gml:pos>
163
    </lonLatEnvelope>
164
  </CoverageOfferingBrief>
165
  <CoverageOfferingBrief>
166
  <name>./041_268/ortho041_268.img</name>
167
  <label>041_268</label>
168
    <lonLatEnvelope srsName="WGS84(DD)">
169
      <gml:pos>-0.356449851947824 40.3956240488913</gml:pos>
170
      <gml:pos>0.615718364079852 41.1332339337031</gml:pos>
171
    </lonLatEnvelope>
172
  </CoverageOfferingBrief>
173
  <CoverageOfferingBrief>
174
  <name>./041_269/ortho041_269_pc.img</name>
175
  <label>041_269</label>
176
    <lonLatEnvelope srsName="WGS84(DD)">
177
      <gml:pos>-0.479653469782083 39.9492494682236</gml:pos>
178
      <gml:pos>0.445247142510061 40.6096049622214</gml:pos>
179
    </lonLatEnvelope>
180
  </CoverageOfferingBrief>
181
  <CoverageOfferingBrief>
182
  <name>./041_270/ortho041_270.img</name>
183
  <label>041_270</label>
184
    <lonLatEnvelope srsName="WGS84(DD)">
185
      <gml:pos>-0.662681099922943 39.4610007000431</gml:pos>
186
      <gml:pos>0.202247054039875 40.1227571570735</gml:pos>
187
    </lonLatEnvelope>
188
  </CoverageOfferingBrief>
189
  <CoverageOfferingBrief>
190
  <name>./041_272/orto_041_272_merge.img</name>
191
  <label>041_272</label>
192
    <lonLatEnvelope srsName="WGS84(DD)">
193
      <gml:pos>-0.93884828048088 38.4867392539068</gml:pos>
194
      <gml:pos>-0.0710677786125404 39.1455128669135</gml:pos>
195
    </lonLatEnvelope>
196
  </CoverageOfferingBrief>
197
  <CoverageOfferingBrief>
198
  <name>./041_273/ortho041_273_merged.img</name>
199
  <label>041_273</label>
200
    <lonLatEnvelope srsName="WGS84(DD)">
201
      <gml:pos>-1.13731938812606 37.9970045311446</gml:pos>
202
      <gml:pos>-0.183220235614133 38.6589793948757</gml:pos>
203
    </lonLatEnvelope>
204
  </CoverageOfferingBrief>
205
  <CoverageOfferingBrief>
206
  <name>./041_274/041_274_mer_orto.img</name>
207
  <label>041_274</label>
208
    <lonLatEnvelope srsName="WGS84(DD)">
209
      <gml:pos>-1.25887586160928 37.6979338310255</gml:pos>
210
      <gml:pos>-0.622777299800351 38.1698074145459</gml:pos>
211
    </lonLatEnvelope>
212
  </CoverageOfferingBrief>
213
  <CoverageOfferingBrief>
214
  <name>./042_271/orto_merge_042_271.img</name>
215
  <label>042_271</label>
216
    <lonLatEnvelope srsName="WGS84(DD)">
217
      <gml:pos>-0.804013057066019 38.9718975937575</gml:pos>
218
      <gml:pos>0.218694462599702 39.6378615837972</gml:pos>
219
    </lonLatEnvelope>
220
  </CoverageOfferingBrief>
221
  <CoverageOfferingBrief>
222
  <name>./043_268/043_268_ortho_merged.img</name>
223
  <label>043_268</label>
224
    <lonLatEnvelope srsName="WGS84(DD)">
225
      <gml:pos>0.242968471591328 40.4967322631042</gml:pos>
226
      <gml:pos>1.00471450204767 41.1066346476233</gml:pos>
227
    </lonLatEnvelope>
228
  </CoverageOfferingBrief>
229
  <CoverageOfferingBrief>
230
  <name>./043_269/043_269_mer_orto.img</name>
231
  <label>043_269</label>
232
    <lonLatEnvelope srsName="WGS84(DD)">
233
      <gml:pos>-0.00322152239155749 40.0508119236423</gml:pos>
234
      <gml:pos>0.546336923922881 40.6327661615988</gml:pos>
235
    </lonLatEnvelope>
236
  </CoverageOfferingBrief>
237
  <CoverageOfferingBrief>
238
  <name>./043_272/merge_3_043_272.img</name>
239
  <label>043_272</label>
240
    <lonLatEnvelope srsName="WGS84(DD)">
241
      <gml:pos>-0.448386272181648 38.4482532754791</gml:pos>
242
      <gml:pos>0.472227389196073 39.1897082589744</gml:pos>
243
    </lonLatEnvelope>
244
  </CoverageOfferingBrief>
245
  <CoverageOfferingBrief>
246
  <name>./043_273/ortho_043_273_merged.img</name>
247
  <label>043_273</label>
248
    <lonLatEnvelope srsName="WGS84(DD)">
249
      <gml:pos>-0.414198033729193 38.3348922719083</gml:pos>
250
      <gml:pos>-0.0239423986897304 38.6577076893867</gml:pos>
251
    </lonLatEnvelope>
252
  </CoverageOfferingBrief>
253
</ContentMetadata>
254
</WCS_Capabilities>
0 255

  
tags/org.gvsig.desktop-2.0.175/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>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff