معرفی شرکت ها


birdhousebuilder.recipe.adagucserver-0.3.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Buildout recipe to install and configure Adaguc Web Map Service with Anaconda.
ویژگی مقدار
سیستم عامل -
نام فایل birdhousebuilder.recipe.adagucserver-0.3.4
نام birdhousebuilder.recipe.adagucserver
نسخه کتابخانه 0.3.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Birdhouse
ایمیل نویسنده UNKNOWN
آدرس صفحه اصلی https://github.com/bird-house/birdhousebuilder.recipe.adagucserver
آدرس اینترنتی https://pypi.org/project/birdhousebuilder.recipe.adagucserver/
مجوز BSD
************************************ birdhousebuilder.recipe.adagucserver ************************************ .. contents:: Introduction ************ ``birdhousebuilder.recipe.adagucserver`` is a `Buildout`_ recipe to install and configure `Adagucserver`_ with `Anaconda`_. **Adagucserver** is an implementation of a `Web Map Service`_ (WMS). **Adagucserver** will be deployed as a `Supervisor`_ service and is available on a `Nginx`_ web server. This recipe is used by the `Birdhouse`_ project. .. _`Buildout`: http://buildout.org/ .. _`Anaconda`: http://continuum.io/ .. _`Supervisor`: http://supervisord.org/ .. _`Nginx`: http://nginx.org/ .. _`Adagucserver`: https://dev.knmi.nl/projects/adagucserver/wiki .. _`Birdhouse`: http://bird-house.github.io/ .. _`Web Map Service`: https://en.wikipedia.org/wiki/Web_Map_Service Usage ***** The recipe requires that **Anaconda** is already installed. It assumes that the default Anaconda location is in your home directory ``~/anaconda``. Otherwise you need to set the ``ANACONDA_HOME`` environment variable or the Buildout option ``anaconda-home``. It installs the ``adagucserver`` package from a conda channel in a conda environment named ``birdhouse``. The location of the birdhouse environment is ``.conda/envs/birdhouse``. It deploys a `Supervisor`_ configuration for ``Adagucserver`` in ``~/.conda/envs/birdhouse/etc/supervisor/conf.d/adagucserver.conf``. Supervisor can be started with ``~/.conda/envs/birdhouse/etc/init.d/supervisor start``. The recipe will install the ``nginx`` package from a conda channel and deploys a Nginx site configuration for ``Adagucserver``. The configuration will be deployed in ``~/.conda/envs/birdhouse/etc/nginx/conf.d/adagucserver.conf``. Nginx can be started with ``~/.conda/envs/birdhouse/etc/init.d/nginx start``. By default ``Adagucserver`` will be available on http://localhost:9002?service=WMS&version=1.3.0&request=GetCapabilities. The recipe depends on: * ``birdhousebuilder.recipe.conda`` * ``birdhousebuilder.recipe.supervisor`` * ``birdhousebuilder.recipe.nginx`` Supported options ================= The recipe supports the following options: **anaconda-home** Buildout option with the root folder of the Anaconda installation. Default: ``$HOME/anaconda``. The default location can also be set with the environment variable ``ANACONDA_HOME``. Example:: export ANACONDA_HOME=/opt/anaconda Search priority is: 1. ``anaconda-home`` in ``buildout.cfg`` 2. ``$ANACONDA_HOME`` 3. ``$HOME/anaconda`` **title** Title of the Web Map Service. Default: Birdhouse ADAGUC WMS **abstract** Description of the Web Map Service. Default: ADAGUC Web Map Service used in Birdhouse **port** Port used by the Adaguc WMS service. Default: 9002 **data_dir** Path to the data directory with NetCDF files. Default: ``~/.conda/envs/birdhouse/var/lib/pywps/outputs`` **enablecache** Enabled caching of WMS requests. Default: false Example usage ============= The following example ``buildout.cfg`` installs ``Adagucserver`` with Anaconda:: [buildout] parts = adaguc anaconda-home = /home/myself/anaconda [adaguc] recipe = birdhousebuilder.recipe.adagucserver port = 9002 After installing with Buildout start the **Adagucserver** WMS service with:: $ cd /home/myself/.conda/envs/birdhouse $ etc/init.d/supervisord start # start|stop|restart $ etc/init.d/nginx start # start|stop|restart $ bin/supervisorctl status # check that adagucserver is running $ less var/log/adaguc.log # check log file Open your browser with the following URL:: http://localhost:9002?service=WMS&version=1.3.0&request=GetCapabilities Run a GetCapabilites with an OpenDAP source:: http://localhost:9002/?service=WMS&version=1.3.0&request=GetCapabilities&source=http://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.reanalysis2.dailyavgs/surface/mslp.1979.nc Authors ******* Carsten Ehbrecht ehbrecht at dkrz.de Change History ************** 0.3.4 (2015-12-07) ================== * using latest supervisor recipe. 0.3.3 (2015-11-12) ================== * fixed output parsing in wsgi wrapper. 0.3.2 (2015-11-12) ================== * updated to adagucserver 1.9.6. * renamed template autowms.xml to adaguc.autoresource.xml. * disabled cascaded base wms layers in template. 0.3.1 (2015-10-21) ================== * added more options: title, abstract, enablecache * fixed handling of xml output of adagucserver in wsgi appliation * cleaned up configs * updated readme 0.3.0 (2015-10-20) ================== * updated to adagucserver 1.9.3 with sqlite 0.2.1 (2015-03-31) ================== * Fixed update mode. 0.2.0 (2015-03-31) ================== * using https://github.com/bird-house/birdhousebuilder.recipe.postgres * update readme. 0.1.0 (2015-03-30) ================== Initial Release.


نحوه نصب


نصب پکیج whl birdhousebuilder.recipe.adagucserver-0.3.4:

    pip install birdhousebuilder.recipe.adagucserver-0.3.4.whl


نصب پکیج tar.gz birdhousebuilder.recipe.adagucserver-0.3.4:

    pip install birdhousebuilder.recipe.adagucserver-0.3.4.tar.gz