papyrus_tilecache 0.1
papyrus_tilecache
papyrus_tilecache provides an easy and convenient method for embeding TileCache in Pyramid applications.
Install
papyrus_tilecache can be installed with easy_install:
$ easy_install papyrus_tilecache
Often you'll want to make papyrus_tilecache a dependency of your Pyramid application, which is done by adding papyrus_tilecache to the install_requires list defined in the Pyramid application's setup.py file.
Embed TileCache
Embeding TileCache in a Pyramid application is easy.
Edit the application's development.ini file and, in the main section ([app:]), set tilecache.cfg to the location of the TileCache config file. Example:
[app:MyApp] use = egg:MyApp ... tilecache.cfg = %(here)s/tilecache.cfg
In this example the TileCache config file is located at the same location as the development.ini file.
You can use the following TileCache config as an example:
[cache] type=Disk base=/tmp/tilecache [basic] type=WMS url=http://vmap0.tiles.osgeo.org/wms/vmap0 extension=png
Now, edit the application's main file, __init__.py, and register papyrus_tilecache using the Configurator.include method:
def main(global_config, **settings):
config = Configurator(settings=settings)
import papyrus_tilecache
config.include(papyrus_tilecache)
That's it! The Pyramid application now exposes a TileCache service at /tilecache.
0.1
- First version
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| papyrus_tilecache-0.1.tar.gz (md5) | Source | 2011-01-25 | 4KB | 422 | |
- Author: Eric Lemoine
- Home Page: http://github.com/elemoine/papyrus_tilecache
- Keywords: web geospatial papyrus tilecache pyramid pylons
- Categories
- Package Index Owner: erilem
- DOAP record: papyrus_tilecache-0.1.xml
