Re: [Geoserver-users] WPS outputs

2021-11-26 Thread Manele Ait Habouche
I'll look into it, thanks a lot ! Le ven. 26 nov. 2021 à 13:07, Ian Turton a écrit : > I would recommend CSVPPIO > (./extension/wps/wps-core/src/main/java/org/geoserver/wps/ppio/CSVPPIO.java) > for a simple example of using a datastore to read and write CSV data. You > are looking for the

Re: [Geoserver-users] WPS outputs

2021-11-26 Thread Ian Turton
I would recommend CSVPPIO (./extension/wps/wps-core/src/main/java/org/geoserver/wps/ppio/CSVPPIO.java) for a simple example of using a datastore to read and write CSV data. You are looking for the decode and encode methods. There is also an associated test class that shows how to use them

Re: [Geoserver-users] WPS outputs

2021-11-26 Thread Andrea Aime
Hi, no, GeoServer has basically no programmer documentation, you will have to figure out how to write a PPIO by looking at the many examples available (and then register it in the Spring context for it to be picked up). That said, you are on the right track! Cheers Andrea On Fri, Nov 26, 2021

[Geoserver-users] WPS outputs

2021-11-26 Thread Manele Ait Habouche
Hello, I want to define custom outputs for a WPS. I searched through the source code and I found these classes (ProcessParameterIO, ComplexPPIO and other inherited classes), but I didn't find enough details (For example regarding the constructors parameters). Is there any documentation on that ?