File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ Request and response objects
9595 A MultiDict object containing input values sent by the client.
9696
9797
98- .. autoclass :: pywps.response.WPSResponse
98+ .. autoclass :: pywps.response.basic. WPSResponse
9999 :members:
100100
101101 .. attribute :: status
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ The instance of a *Process* needs following attributes to be configured:
5353:outputs:
5454 list of process outputs
5555:handler:
56- method which recieves :class: `pywps.app.WPSRequest ` and :class: `pywps.response.WPSResponse ` as inputs.
56+ method which recieves :class: `pywps.app.WPSRequest ` and :class: `pywps.response.basic. WPSResponse ` as inputs.
5757
5858Example vector buffer process
5959=============================
@@ -118,12 +118,12 @@ Next we create a new list variables for inputs and outputs.
118118
119119Next we define the *handler * method. In it, *geospatial analysis
120120may happen *. The method gets a :class: `pywps.app.WPSRequest ` and a
121- :class: `pywps.response.WPSResponse ` object as parameters. In our case, we
121+ :class: `pywps.response.basic. WPSResponse ` object as parameters. In our case, we
122122calculate the buffer around each vector feature using
123123`GDAL/OGR library <https://gdal.org >`_. We will not got much into the details,
124124what you should note is how to get input data from the
125125:class: `pywps.app.WPSRequest ` object and how to set data as outputs in the
126- :class: `pywps.response.WPSResponse ` object.
126+ :class: `pywps.response.basic. WPSResponse ` object.
127127
128128.. literalinclude :: demobuffer.py
129129 :language: python
You can’t perform that action at this time.
0 commit comments