How to run OSGeo Planet ======================= * checkout with svn the source code: svn co https://svn.osgeo.org/osgeo/planet/ * edit the configuration file: vi planet_osgeo.config * update the cache_directory and output_dir parameters * run the planet: python planet.py planet_osgeo.config * the run should be scheduled on the crontab server How to add a new user to the Planet =================================== * Just add the configuration to the config file and commit your changes to OSGeo svn server. Notes ===== Sometimes it is necessary to remove all the .pyc and .tmplc files: $ find . -name "*.tmplc" -exec rm '{}' ';' $ find . -name "*.pyc" -exec rm '{}' ';'