1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<ProcessDescriptions xsi:schemaLocation="http://www.ogcnetwork.net/schemas/wps/1.0.0/wpsDescribeProcess.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ProcessDescription processVersion="none" statusSupported="False" storeSupported="True">
<ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">DoubleIt</ns1:Identifier>
<ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">Doubles the input number and returns value</ns1:Title>
<ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">This is test process used to demonstrate how the WPS and the WPS User Interface work. The process accepts an integer or floating point number and returns some XML containing the input number double.</ns1:Abstract>
<ns1:Metadata xlink:title="none" xmlns:ns1="http://www.opengeospatial.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" />
<ns1:Metadata xlink:title="none" xmlns:ns1="http://www.opengeospatial.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" />
<DataInputs>
<Input>
<ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Identifier>
<ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Title>
<ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Abstract>
<LiteralData>
<ns1:AnyValue xmlns:ns1="http://www.opengeospatial.net/ows">
</ns1:AnyValue>
</LiteralData>
<MinimumOccurs>1</MinimumOccurs>
</Input>
</DataInputs>
<ProcessOutputs>
<Output>
<ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Identifier>
<ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Title>
<ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Abstract>
<ComplexOutput defaultEncoding="UTF-8" defaultFormat="text/XML" defaultSchema="NONE">
<SupportedComplexData>
<Format>text/XML</Format>
<Encoding>UTF-8</Encoding>
<Schema>NONE</Schema>
</SupportedComplexData>
</ComplexOutput>
</Output>
</ProcessOutputs>
</ProcessDescription>
</ProcessDescriptions>
|