DistributedPydap is a Python module that brings a WSGI middleware that aggregates datasets from several Pydap servers.
To install it, add the filter to your server.ini:
[app:main]
use = egg:pydap#server
root = %(here)s/data
templates = %(here)s/templates
x-wsgiorg.throw_errors = 0
filter-with = distributed
[filter:distributed]
use = egg:DistributedPydap
root = %(here)s/data
cache = %(here)s/cache.db
And then add the new index.html template:
paster create -t DistributedPydap server
Where server is your installation of Pydap. Then edit the index.html template adding the address of other Pydap servers configured with this middleware.
Product's homepage
Requirements:
· Python