52North / WPS

**DEPRECATED** The 52°North Web Processing Service enables the deployment of geo-processes on the web in a standardized way.
GNU General Public License v2.0
63 stars 55 forks source link

Add support for multi-valued input in WPS4R #206

Open nuest opened 8 years ago

nuest commented 8 years ago

Feature

The WPS standard allows input values to occure multiple times with the same name (see also here), e.g.

[...]
        <wps:Input>
          <ows:Identifier>levels</ows:Identifier>
          <wps:Data>
                <wps:LiteralData>1200</wps:LiteralData>
          </wps:Data>
        </wps:Input>
        <wps:Input>
          <ows:Identifier>levels</ows:Identifier>
          <wps:Data>
                <wps:LiteralData>1400</wps:LiteralData>
          </wps:Data>
        </wps:Input>
        <wps:Input>
          <ows:Identifier>levels</ows:Identifier>
          <wps:Data>
                <wps:LiteralData>1600</wps:LiteralData>
          </wps:Data>
        </wps:Input>
[...]

Definition of done