SlideShare una empresa de Scribd logo
1 de 27
Descargar para leer sin conexión
Mr. Gérald FENOY, GeoLabs
Dr. Nicolas BOZON, 3LIZ
Pr. Venkatesh RAGHAVAN, OCU
THE POWERFUL WPS PLATFORM
CUMTB 2010 Beijing, China
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
WHAT IS WPS ?
What does WPS means ?
Why Pay for Software ?
Not really ....
but it is something similar to that if you think twice after the end of
my talk !!!
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
WHAT IS WPS ?
Web Processing Service is designed to standardize the way that
GIS algorithms are made available on the Internet.
WPS specifies a mean for a client to request the execution of a spatial
calculation from a service.
WPS intends to automate geoprocessing by employing geospatial
semantics in a service-oriented architecture (SOA).
Open Geospatial Consortium interoperability
standards since 2005
WPS Standard was published and accepted
as Standard in 2007
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
Short WPS Overview
Web Processing Service defines three requests :
•
GetCapabilities (as almost all the OWS Standards)
Provides a full overview of all the processes available on the the
requested server.
•
DescribeProcess
•
Provides for a uniq/a set of services Identifiers the specific
description of a/a set of Service.
•
Execute
•
Provides a way to run the Service and ask for the
ResponseDocument or RawdataOutput.
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
WHY USING WPS ?
Web Processing Service allows to deploy and to orchestrate
advanced GIS processes on the server-side.
WPS can connect to any cartographic engine and spatial databases
and thus drive complex spatial data infrastructures (SDI).
WPS is a generic and standardized way to use GIS on the Cloud.
WPS can run FOSS4G and OSGeo tools !
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
WHAT IS ZOO ?
ZOO is a WPS (Web Processing Service) compliant server-side
platform based on OGC's WPS 1.0.0
ZOO is open source software
ZOO is designed to create and chain web processing services easily,
using FOSS4G libs or existing code.
ZOO is based on a C Kernel (ZOO Kernel) able to load dynamic
libraries and to orchestrate Webservices coded in several
programming languages.
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
ZOO PROJECT GOALS
Make FOSS4G libs communicate in a standardized way using WPS
Make GIS-based Web Services deployment and chaining easier and
faster
Create a ready-to-use Webservices suite based on stable libs
Enable advanced Web GIS functionalities such as:
- Conversion, reprojection and processing of data
- Advanced GIS algorithms
- External spatial-based scientific models
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
ZOO-Project SPONSORS & Knoledge Partners
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
ZOO-Project PSC Members
● Nicolas BOZON ( 3LIZ), FR
● Maria BROVELLI ( Politecnico di Milano), IT
● Massimiliano CANNATA ( SUPSI), CH
● Gerald FENOY ( GeoLabs), FR (Chair)
● Hirofumi HAYASHI ( AppTech), JP
● Daniel KASTL ( Georepublic), DE/JP
● Jeff McKENNA ( Gateway Geomatics), CA
● Markus NETELER ( Fondazione Edmund Mach), IT
● Venkatesh RAGHAVAN ( Osaka City University), JP
● Satoshi SEKIGUCHI ( AIST GEO Grid), JP
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
HOW DOES ZOO WORK ? (1)
ZOO Kernel handles and chains ZOO Services
A ZOO service is composed of:
A metadata file .zcfg (Title, Metadata, Inputs,Output...)
A Service Provider: « Service Shared Object » (SSO)
( Dynamic library, Python modules, JAVA Class, PHP script ...)
WPS GetCapabilities and DescribeProcess requests requires only
to parse .zcfg file using Flex and Bison
ZOO Kernel is able to load SSO dynamically, to extract specific
functions and to execute them, answering the WPS Execute
requests
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform
ZOO PROJECT Overview
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
HOW DOES ZOO WORK ? (2)
Execute request parsing ( XML / KVP ) to fill internal data structure
- Xlink:href checking , conditional data download to provide input
data value
- Dynamic loading of the Service Provider Shared Objects
- Specific service function call, passing internal data structure by
reference
- ResponseDocument / Raw data output, using the previous data
structure (modified by the service itself)
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
SUPPORTED LANGUAGES
ZOO Kernel supports several programming languages
- C / C++ Native support
- Python Native support (Python interpreter)
- Fortran Optionnal support (F77, F90)
- PHP Optionnal support (PHP embedded)
- Java Optionnal support (Java SDK)
- Javascript Optionnal support (SpiderMonkey)
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
Does this look like mess to you ?
Please Take a l00k
HelloWorld.py
def HelloPy(conf,inputs,outputs):
outputs["output1"]={"value": "helloworld"+inputs['Name']['value'],"datatype": "string"}
return SERVICE_SUCCEEDED
HelloWorld.zcfg
[HelloWorld]
Title = Get the HelloWorld string.
serviceProvider = test_service
serviceType = Python
<DataInputs>
[Name]
Title = HelloString
<LiteralData>
DataType = string
</LiteralData>
</DataInputs>
<DataOutputs>
[output1]
Title = HelloString
<LiteralData>
DataType = string
</LiteralData>
</DataOutputs>
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
SUPPORTED NATURAL LANGUAGES
ZOO Kernel supports several natural languages :
- English
- French
- Japanese
Workshop Material available on the
ZOO-Project web site in English and in Japanese
http://www.zoo-project.org/trac/
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT STATUS(1)
ZOO 1.0 released under MIT/X-11 license since April 2010:
ZOO Kernel ( C )
ZOO Services ( C and Python)
ZOO API ( Javascript )
svn checkout http://svn.zoo-project.org/svn/trunk zoo
ZOO 1.O documentation and packaging in progress
Install guide and ZOO Workshop available on the wiki
ZOO 1.0 available on OSGeo-Live since version 4.0
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT STATUS(2)
ZOO Services
Ogr2Ogr ( C )
GEOS/OGR ( C)
GdalTranslate (C)
GdalGrid (C)
OpenOffice Document Text Converter (Python)
http://zoo-project.org/trac/browser/trunk/zoo-services/
ZOO API
Based on SpiderMonkey and ZOO's optional JavaScript support
Uses server-side JavaScript and a Proj4js adaptation
Add Logic in WPS chaining
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT PLATFORM
Mapserver
(WMS, WFS,WCS,SOS)
+
Apache Server
(HTTP)
+ ZOO OWS Platform
Open Office Server
(ODF)
+
ZOO Kernel
(WPS)
O
G
C®
O
G
C®
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT STATUS
Simple Vector Features operations OGR Based
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT STATUS
Simple Voronoi trianulation CGAL Based
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT EXPERIMENTS(1)
WFS-T support implementation (Fenoy,G.)
MapServer 5.6.5
ZOO 1.0
WFS-T proxy
Provides a Transactional support to MapServer WFS
Edits the input data source geometry and attributes
Allows any data source input supported by OGR
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT EXPERIMENTS(2)
GRASS GIS implementation (Gebbert, S.)
GRASS GIS 7
ZOO 1.0
ZOOGrassModuleStarter.py
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT EXPERIMENTS(3)
OSM import (ZOOSM) (Delluchi, L.)
PythonOSMApi
OGR python
ZOO 1.0
ZOOSM.py
Provides a new way to import data into OSM using WPS
Could be used for massive imports and updates in OSM
Could be extended to Export from OSM in OGR supported formats
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT EXPERIMENTS(4)
Drift-X WPS (Bozon, N. and Fenoy, G)
ZOO 1.0
driftx.f
GdalTranslate
Services.py
Provides a webmapping application
for Pesticide atmopsheric
dispersion calculation.
WPS for scientific computing
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT EXPERIMENTS(5)
GoGPS (Realini, Yoshida, Hayashi and Venka )
GPS Data processing to obtain accurate positioning from raw
GPS observations.
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
ZOO PROJECT NEXT STEPS
Supported languages :
●
C# (.NET)
●
Ruby
What about using ZOO-Project without Web Server ?
●
Mozilla XPCOM Technology
Making Documentation better :
●
Publishing the Workshop Material
Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform'
THANKS FOR YOUR TIME
zoo-discuss@gisws.media.osaka-cu.ac.jp
ありがとうございましたありがとうございました
Merci beaucoup pour votre temps
Many thanks to Venka to make al this story
happening !!!!

Más contenido relacionado

Similar a Zoo Presentation Cumtb 2010

Zoo presentation foss4g.jp-2011
Zoo presentation foss4g.jp-2011Zoo presentation foss4g.jp-2011
Zoo presentation foss4g.jp-2011
masarunarazaki
 
PyWPS at COST WPS Workshop
PyWPS at COST WPS WorkshopPyWPS at COST WPS Workshop
PyWPS at COST WPS Workshop
Jachym Cepicky
 
Deploying your application on open stack using bosh presentation
Deploying your application on open stack using bosh presentationDeploying your application on open stack using bosh presentation
Deploying your application on open stack using bosh presentation
capouch
 
Introduction to OSGi (Tokyo JUG)
Introduction to OSGi (Tokyo JUG)Introduction to OSGi (Tokyo JUG)
Introduction to OSGi (Tokyo JUG)
njbartlett
 
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPSONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
otb
 
Os Henrikson
Os HenriksonOs Henrikson
Os Henrikson
oscon2007
 

Similar a Zoo Presentation Cumtb 2010 (20)

Zoo First Presentation
Zoo First PresentationZoo First Presentation
Zoo First Presentation
 
Foss4g2009tokyo Gerald Zoo
Foss4g2009tokyo Gerald ZooFoss4g2009tokyo Gerald Zoo
Foss4g2009tokyo Gerald Zoo
 
Zoo Overview
Zoo OverviewZoo Overview
Zoo Overview
 
Zoo presentation foss4g.jp-2011
Zoo presentation foss4g.jp-2011Zoo presentation foss4g.jp-2011
Zoo presentation foss4g.jp-2011
 
PyWPS at COST WPS Workshop
PyWPS at COST WPS WorkshopPyWPS at COST WPS Workshop
PyWPS at COST WPS Workshop
 
Running High-Speed Serverless with nuclio
Running High-Speed Serverless with nuclioRunning High-Speed Serverless with nuclio
Running High-Speed Serverless with nuclio
 
Raster data in GeoServer and GeoTools: Achievements, issues and future devel...
Raster data in GeoServer and GeoTools:  Achievements, issues and future devel...Raster data in GeoServer and GeoTools:  Achievements, issues and future devel...
Raster data in GeoServer and GeoTools: Achievements, issues and future devel...
 
OSGeo Live Lightening Overview
OSGeo Live Lightening OverviewOSGeo Live Lightening Overview
OSGeo Live Lightening Overview
 
Big Data Hadoop Training
Big Data Hadoop TrainingBig Data Hadoop Training
Big Data Hadoop Training
 
Web Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHPWeb Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHP
 
Deploying your application on open stack using bosh presentation
Deploying your application on open stack using bosh presentationDeploying your application on open stack using bosh presentation
Deploying your application on open stack using bosh presentation
 
Srinivasan Rajappa
Srinivasan RajappaSrinivasan Rajappa
Srinivasan Rajappa
 
Cloud computing and web processing services
Cloud computing and web processing servicesCloud computing and web processing services
Cloud computing and web processing services
 
Seattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js WorkshopSeattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js Workshop
 
Introduction to OSGi (Tokyo JUG)
Introduction to OSGi (Tokyo JUG)Introduction to OSGi (Tokyo JUG)
Introduction to OSGi (Tokyo JUG)
 
JSON Part 2: Working with Ajax
JSON Part 2: Working with AjaxJSON Part 2: Working with Ajax
JSON Part 2: Working with Ajax
 
The Nuxeo RCP platform
The Nuxeo RCP platformThe Nuxeo RCP platform
The Nuxeo RCP platform
 
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPSONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
 
Os Henrikson
Os HenriksonOs Henrikson
Os Henrikson
 
node.js: Javascript's in your backend
node.js: Javascript's in your backendnode.js: Javascript's in your backend
node.js: Javascript's in your backend
 

Zoo Presentation Cumtb 2010

  • 1. Mr. Gérald FENOY, GeoLabs Dr. Nicolas BOZON, 3LIZ Pr. Venkatesh RAGHAVAN, OCU THE POWERFUL WPS PLATFORM CUMTB 2010 Beijing, China
  • 2. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform WHAT IS WPS ? What does WPS means ? Why Pay for Software ? Not really .... but it is something similar to that if you think twice after the end of my talk !!!
  • 3. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform WHAT IS WPS ? Web Processing Service is designed to standardize the way that GIS algorithms are made available on the Internet. WPS specifies a mean for a client to request the execution of a spatial calculation from a service. WPS intends to automate geoprocessing by employing geospatial semantics in a service-oriented architecture (SOA). Open Geospatial Consortium interoperability standards since 2005 WPS Standard was published and accepted as Standard in 2007
  • 4. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform Short WPS Overview Web Processing Service defines three requests : • GetCapabilities (as almost all the OWS Standards) Provides a full overview of all the processes available on the the requested server. • DescribeProcess • Provides for a uniq/a set of services Identifiers the specific description of a/a set of Service. • Execute • Provides a way to run the Service and ask for the ResponseDocument or RawdataOutput.
  • 5. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform WHY USING WPS ? Web Processing Service allows to deploy and to orchestrate advanced GIS processes on the server-side. WPS can connect to any cartographic engine and spatial databases and thus drive complex spatial data infrastructures (SDI). WPS is a generic and standardized way to use GIS on the Cloud. WPS can run FOSS4G and OSGeo tools !
  • 6. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform WHAT IS ZOO ? ZOO is a WPS (Web Processing Service) compliant server-side platform based on OGC's WPS 1.0.0 ZOO is open source software ZOO is designed to create and chain web processing services easily, using FOSS4G libs or existing code. ZOO is based on a C Kernel (ZOO Kernel) able to load dynamic libraries and to orchestrate Webservices coded in several programming languages.
  • 7. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform ZOO PROJECT GOALS Make FOSS4G libs communicate in a standardized way using WPS Make GIS-based Web Services deployment and chaining easier and faster Create a ready-to-use Webservices suite based on stable libs Enable advanced Web GIS functionalities such as: - Conversion, reprojection and processing of data - Advanced GIS algorithms - External spatial-based scientific models
  • 8. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform ZOO-Project SPONSORS & Knoledge Partners
  • 9. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform ZOO-Project PSC Members ● Nicolas BOZON ( 3LIZ), FR ● Maria BROVELLI ( Politecnico di Milano), IT ● Massimiliano CANNATA ( SUPSI), CH ● Gerald FENOY ( GeoLabs), FR (Chair) ● Hirofumi HAYASHI ( AppTech), JP ● Daniel KASTL ( Georepublic), DE/JP ● Jeff McKENNA ( Gateway Geomatics), CA ● Markus NETELER ( Fondazione Edmund Mach), IT ● Venkatesh RAGHAVAN ( Osaka City University), JP ● Satoshi SEKIGUCHI ( AIST GEO Grid), JP
  • 10. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' HOW DOES ZOO WORK ? (1) ZOO Kernel handles and chains ZOO Services A ZOO service is composed of: A metadata file .zcfg (Title, Metadata, Inputs,Output...) A Service Provider: « Service Shared Object » (SSO) ( Dynamic library, Python modules, JAVA Class, PHP script ...) WPS GetCapabilities and DescribeProcess requests requires only to parse .zcfg file using Flex and Bison ZOO Kernel is able to load SSO dynamically, to extract specific functions and to execute them, answering the WPS Execute requests
  • 11. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform ZOO PROJECT Overview
  • 12. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' HOW DOES ZOO WORK ? (2) Execute request parsing ( XML / KVP ) to fill internal data structure - Xlink:href checking , conditional data download to provide input data value - Dynamic loading of the Service Provider Shared Objects - Specific service function call, passing internal data structure by reference - ResponseDocument / Raw data output, using the previous data structure (modified by the service itself)
  • 13. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' SUPPORTED LANGUAGES ZOO Kernel supports several programming languages - C / C++ Native support - Python Native support (Python interpreter) - Fortran Optionnal support (F77, F90) - PHP Optionnal support (PHP embedded) - Java Optionnal support (Java SDK) - Javascript Optionnal support (SpiderMonkey)
  • 14. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' Does this look like mess to you ? Please Take a l00k HelloWorld.py def HelloPy(conf,inputs,outputs): outputs["output1"]={"value": "helloworld"+inputs['Name']['value'],"datatype": "string"} return SERVICE_SUCCEEDED HelloWorld.zcfg [HelloWorld] Title = Get the HelloWorld string. serviceProvider = test_service serviceType = Python <DataInputs> [Name] Title = HelloString <LiteralData> DataType = string </LiteralData> </DataInputs> <DataOutputs> [output1] Title = HelloString <LiteralData> DataType = string </LiteralData> </DataOutputs>
  • 15. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' SUPPORTED NATURAL LANGUAGES ZOO Kernel supports several natural languages : - English - French - Japanese Workshop Material available on the ZOO-Project web site in English and in Japanese http://www.zoo-project.org/trac/
  • 16. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT STATUS(1) ZOO 1.0 released under MIT/X-11 license since April 2010: ZOO Kernel ( C ) ZOO Services ( C and Python) ZOO API ( Javascript ) svn checkout http://svn.zoo-project.org/svn/trunk zoo ZOO 1.O documentation and packaging in progress Install guide and ZOO Workshop available on the wiki ZOO 1.0 available on OSGeo-Live since version 4.0
  • 17. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT STATUS(2) ZOO Services Ogr2Ogr ( C ) GEOS/OGR ( C) GdalTranslate (C) GdalGrid (C) OpenOffice Document Text Converter (Python) http://zoo-project.org/trac/browser/trunk/zoo-services/ ZOO API Based on SpiderMonkey and ZOO's optional JavaScript support Uses server-side JavaScript and a Proj4js adaptation Add Logic in WPS chaining
  • 18. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT PLATFORM Mapserver (WMS, WFS,WCS,SOS) + Apache Server (HTTP) + ZOO OWS Platform Open Office Server (ODF) + ZOO Kernel (WPS) O G C® O G C®
  • 19. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT STATUS Simple Vector Features operations OGR Based
  • 20. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT STATUS Simple Voronoi trianulation CGAL Based
  • 21. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT EXPERIMENTS(1) WFS-T support implementation (Fenoy,G.) MapServer 5.6.5 ZOO 1.0 WFS-T proxy Provides a Transactional support to MapServer WFS Edits the input data source geometry and attributes Allows any data source input supported by OGR
  • 22. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT EXPERIMENTS(2) GRASS GIS implementation (Gebbert, S.) GRASS GIS 7 ZOO 1.0 ZOOGrassModuleStarter.py
  • 23. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT EXPERIMENTS(3) OSM import (ZOOSM) (Delluchi, L.) PythonOSMApi OGR python ZOO 1.0 ZOOSM.py Provides a new way to import data into OSM using WPS Could be used for massive imports and updates in OSM Could be extended to Export from OSM in OGR supported formats
  • 24. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT EXPERIMENTS(4) Drift-X WPS (Bozon, N. and Fenoy, G) ZOO 1.0 driftx.f GdalTranslate Services.py Provides a webmapping application for Pesticide atmopsheric dispersion calculation. WPS for scientific computing
  • 25. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT EXPERIMENTS(5) GoGPS (Realini, Yoshida, Hayashi and Venka ) GPS Data processing to obtain accurate positioning from raw GPS observations.
  • 26. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' ZOO PROJECT NEXT STEPS Supported languages : ● C# (.NET) ● Ruby What about using ZOO-Project without Web Server ? ● Mozilla XPCOM Technology Making Documentation better : ● Publishing the Workshop Material
  • 27. Fenoy, Bozon, Raghavan, 2010. 'ZOO: The powerful WPS platform' THANKS FOR YOUR TIME zoo-discuss@gisws.media.osaka-cu.ac.jp ありがとうございましたありがとうございました Merci beaucoup pour votre temps Many thanks to Venka to make al this story happening !!!!