[135] | 1 | .. _kernel-introduction: |
---|
| 2 | |
---|
[136] | 3 | Introduction |
---|
[271] | 4 | ============ |
---|
| 5 | |
---|
[323] | 6 | :Authors: Nicolas Bozon, Gérald Fenoy, Jeff McKenna |
---|
[314] | 7 | :Last Updated: $Date: 2011-12-07 13:19:47 +0000 (Wed, 07 Dec 2011) $ |
---|
[135] | 8 | |
---|
[207] | 9 | ZOO Kernel is the heart of the ZOO. It is a powerful server-side C Kernel which makes |
---|
[135] | 10 | it possible to manage and chain Web services, by loading dynamic libraries and handling |
---|
[207] | 11 | them as on-demand Web services. The ZOO Kernel is written in the C language, but supports |
---|
[135] | 12 | several common programming languages in order to connect to numerous libraries and models. |
---|
| 13 | |
---|
| 14 | Using ZOO Kernel as a Web Processing Platform |
---|
| 15 | --------------------------------------------- |
---|
| 16 | |
---|
| 17 | ZOO Kernel works with Apache and can communicate with cartographic engines and Web mapping |
---|
| 18 | clients. It simply adds the WPS support to your spatial data infrastructure and your |
---|
[207] | 19 | Web mapping application! |
---|
[135] | 20 | |
---|
[207] | 21 | .. note:: |
---|
| 22 | If you'd like some background on the WPS standard, head to: http://www.opengeospatial.org/standards/wps |
---|
| 23 | |
---|
[135] | 24 | Supported Languages |
---|
| 25 | ------------------- |
---|
| 26 | |
---|
[207] | 27 | ZOO Kernel supports the following programming languages, and let's you use them to create |
---|
| 28 | new ZOO Services from new or existing code: |
---|
[135] | 29 | |
---|
[137] | 30 | ============ =================== ========================= ============ |
---|
| 31 | **Language** **ServiceProvider** **DataStructure** **Return** |
---|
| 32 | ------------ ------------------- ------------------------- ------------ |
---|
| 33 | C / C++ Shared Library maps* M integer |
---|
| 34 | Fortran Shared Library CHARACTER*(1024) M(10,30) integer |
---|
[207] | 35 | Java Class File `HashMap`_ integer |
---|
| 36 | Python Module File `dictionary`_ integer |
---|
| 37 | PHP Script File `Array`_ integer |
---|
[137] | 38 | Perl Script File integer |
---|
[207] | 39 | JavaScript Script file `Object`_ or Array Array/Object |
---|
[137] | 40 | ============ =================== ========================= ============ |
---|
[135] | 41 | |
---|
[207] | 42 | .. _`HashMap`: http://download.oracle.com/javase/6/docs/api/java/util/HashMap.html |
---|
| 43 | .. _`dictionary`: http://docs.python.org/tutorial/datastructures.html#dictionaries |
---|
| 44 | .. _`Array`: http://php.net/manual/language.types.array.php |
---|
| 45 | .. _`Object`: http://www.json.org/ |
---|
| 46 | |
---|
[137] | 47 | ZOO Kernel is a WPS Espresso Machine |
---|
| 48 | ------------------------------------ |
---|
[135] | 49 | |
---|
[137] | 50 | .. image:: ../_static/images/zoo_kernel_scheme.png |
---|
| 51 | |
---|
| 52 | |
---|