Version 17 (modified by trac, 9 years ago) |
---|
ZOO-Services
500+ Ready to use WPS services
ZOO-Services is a growing collection of ready to use Web Processing Services built on top of reliable open source libraries such as GDAL, CGAL, GRASS GIS, OrfeoToolbox, SAGA GIS and more. It aims at using existing geospatial algorithms through standard WPS, and provides a number of significant examples to build your own.
Create your own
Hello world
JavaScript
function hellojs(conf,inputs,outputs){
outputs["result"]["value"]="Hello "+inputs["S"]["value"]+" from the JS World !";
//SERVICE_SUCEEDED
return Array(3,outputs);
}
Python
import zoo
def HelloPy(conf,inputs,outputs):
outputs["Result"]["value"]="Hello "+inputs["a"]["value"]+" from Python World !"
return zoo.SERVICE_SUCCEEDED
C
printf