Project

General

Profile

1 3032 perry
<?xml version="1.0" encoding="UTF-8"?>
2
3
<ProcessDescription
4
5
    xmlns="http://www.pengis.net/wps"
6
7
    xmlns:ows="http://www.opengis.net/ows"
8
9
    xmlns:xlink="http://www.w3.org/1999/xlink"
10
11
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12
13
    xsi:schemaLocation="http://www.opengis.net/wps file:///C:/Docume~1/adair/MYDOCU~1/wpsIE/schemas/0.2.4/wpsDescribeProcess.xsd"
14
15
    version="0.2.4">
16
17
	<ProcessMember>
18
19
		<Process store="false">
20
21
			<Name>minValue</Name>
22
23
			<Label>Minimum value</Label>
24
25
			<Description>Identifies the minimum value of a given grid coverage</Description>
26
27
			<Version>0.2.3</Version>
28
29
			<Application>
30
31
				<ows:Keywords>
32
33
					<ows:Keyword>Grid processing</ows:Keyword>
34
35
				</ows:Keywords>
36
37
			</Application>
38
39
			<Category>
40
41
				<ows:Keywords>
42
43
					<ows:Keyword>Statistics</ows:Keyword>
44
45
				</ows:Keywords>
46
47
			</Category>
48
49
			<Input>
50
51
				<Parameter>
52
53
					<Name>inputGridCoverage</Name>
54
55
					<Label>Input Grid Coverage</Label>
56
57
					<Description>Coverage that will be processed. This can be a reference URI to a GeoTiff or a WCS request when returning a GeoTiff</Description>
58
59
					<MinimumOccurs>1</MinimumOccurs>
60
61
					<Datatype>
62
63
						<Reference xlink:href="anyURI">
64
65
							<ows:Format>image/GeoTiff</ows:Format>
66
67
						</Reference>
68
69
					</Datatype>
70
71
				</Parameter>
72
73
			</Input>
74
75
			<Input>
76
77
				<Parameter>
78
79
					<Name>bbox</Name>
80
81
					<Label>Bounding Box</Label>
82
83
					<Description>bounding box to be processed</Description>
84
85
					<MinimumOccurs>1</MinimumOccurs>
86
87
					<Datatype>
88
89
						<BoundingBox crs="EPSG:4326">
90
91
							<ows:LowerCorner>-71.10285218349743 42.261800717452054</ows:LowerCorner>
92
93
							<ows:UpperCorner>-71.04767081931412 42.29490953596204</ows:UpperCorner>
94
95
						</BoundingBox>
96
97
					</Datatype>
98
99
				</Parameter>
100
101
			</Input>
102
103
			<Input>
104
105
				<Parameter>
106
107
					<Name>image</Name>
108
109
					<Label>image of interest</Label>
110
111
					<Description>number of image of interest, needed in case more than one image is encoded in a GeoTIFF: initial value is 1</Description>
112
113
					<MinimumOccurs>0</MinimumOccurs>
114
115
					<Datatype>
116
117
						<LiteralValue ows:type="integer"/>
118
119
					</Datatype>
120
121
				</Parameter>
122
123
			</Input>
124
125
			<Input>
126
127
				<Parameter>
128
129
					<Name>band</Name>
130
131
					<Label>band of interest</Label>
132
133
					<Description>and for which the statistics shall be provided: initial value is 1</Description>
134
135
					<MinimumOccurs>0</MinimumOccurs>
136
137
					<Datatype>
138
139
						<LiteralValue ows:type="integer">
140
141
							<DefaultValue>1</DefaultValue>
142
143
						</LiteralValue>
144
145
					</Datatype>
146
147
				</Parameter>
148
149
			</Input>
150
151
			<Input>
152
153
				<Parameter>
154
155
					<Name>valueToIgnore</Name>
156
157
					<Label>Value to ignore</Label>
158
159
					<Description>Some values might be known to not be the minimum value. They should be ignored in output statistics (e.g. 0 or -9999), Example: valueToIgnore = -9999</Description>
160
161
					<MinimumOccurs>0</MinimumOccurs>
162
163
					<Datatype>
164
165
						<LiteralValue ows:type="decimal"/>
166
167
					</Datatype>
168
169
				</Parameter>
170
171
			</Input>
172
173
			<Output>
174
175
				<Parameter>
176
177
					<Name>minValueResult</Name>
178
179
					<Datatype>
180
181
						<LiteralValue ows:type="decimal"/>
182
183
					</Datatype>
184
185
				</Parameter>
186
187
			</Output>
188
189
		</Process>
190
191
	</ProcessMember>
192
193
</ProcessDescription>