WorldMap is a web mapping platform for publishing, sharing, and comparing geographic data layers.
318
GeoNode template project. Generates a django project with GeoNode support.
Available at::
http://geonode.org/dev-workshop
Note: You can call your geonode project whatever you like following the naming conventions for python packages (generally lower case with underscores (_). In the examples below, replace my_geonode with whatever you would like to name your project.
Using a Python virtual environment ++++++++++++++++++++++++++++++++++
To setup your project using a local python virtual environment, follow these instructions:
.. code:: bash
git clone https://github.com/GeoNode/geonode-project.git -b master
mkvirtualenv my_geonode
pip install Django==1.11.11
django-admin startproject --template=./geonode-project -e py,rst,json,yml,ini,env,sample -n Dockerfile my_geonode
cd my_geonode
2. Setup the Python Dependencies
.. code:: bash
pip install -r requirements.txt --upgrade
pip install -e . --upgrade
GDAL_VERSION=`gdal-config --version`
PYGDAL_VERSION="$(pip install pygdal==$GDAL_VERSION 2>&1 | grep -oP '(?<=: )(.*)(?=\))' | grep -oh $GDAL_VERSION\.[0-9])"
pip install pygdal==$PYGDAL_VERSION
# Using Default Settings
DJANGO_SETTINGS_MODULE=my_geonode.settings paver reset
DJANGO_SETTINGS_MODULE=my_geonode.settings paver setup
DJANGO_SETTINGS_MODULE=my_geonode.settings paver sync
DJANGO_SETTINGS_MODULE=my_geonode.settings paver start
# Using Custom Local Settings
cp my_geonode/local_settings.py.sample my_geonode/local_settings.py
vim my_geonode/wsgi.py
--> os.environ.setdefault("DJANGO_SETTINGS_MODULE", "my_geonode.local_settings")
DJANGO_SETTINGS_MODULE=my_geonode.local_settings paver reset
DJANGO_SETTINGS_MODULE=my_geonode.local_settings paver setup
DJANGO_SETTINGS_MODULE=my_geonode.local_settings paver sync
DJANGO_SETTINGS_MODULE=my_geonode.local_settings paver start
3. Access GeoNode from browser::
http://localhost:8000/
.. note:: default admin user is admin (with pw: admin)
You need Docker 1.12 or higher, get the latest stable official release for your platform.
.. code:: bash
git clone https://github.com/GeoNode/geonode-project.git -b master
mkvirtualenv my_geonode
pip install Django==1.11.11
django-admin startproject --template=./geonode-project -e py,rst,json,yml,ini,env,sample -n Dockerfile my_geonode
cd my_geonode
2. Run docker-compose to start it up (get a cup of coffee or tea while you wait)
Remember to update "wsgi.py" in case you are using "local_settings" vim my_geonode/wsgi.py --> os.environ.setdefault("DJANGO_SETTINGS_MODULE", "my_geonode.local_settings")
.. code:: bash
docker-compose build --no-cache
docker-compose up -d
NOTE for Windows users: In case you're using the native Docker for Windows (on Hyper-V) you will probably be affected by an error related to mounting the /var/run/docker.sock volume. It's due to a problem with the current version of Docker Compose <https://github.com/docker/for-win/issues/1829>_ for Windows.
In this case you need to set the COMPOSE_CONVERT_WINDOWS_PATHS environmental variable:
.. code-block:: none
set COMPOSE_CONVERT_WINDOWS_PATHS=1
before running docker-compose up
Preparation of the image (First time only) ++++++++++++++++++++++++++++++++++++++++++
.. note:: In this example we are going to publish to the public IP http://123.456.789.111
.. code:: bash
vim docker-compose.override.yml --> replace localhost with 123.456.789.111 everywhere
Startup the image +++++++++++++++++
.. code:: bash
docker-compose up --build -d
.. code:: bash
docker-compose stop
.. warning:: This will wipe out all the repositories created until now.
.. note:: The images must be stopped first
.. code:: bash
docker system prune -a
Step 1. Install Git (for Linux, Mac or Windows).
Step 2. Init git locally and do the first commit:
git init
git add *
git commit -m "Initial Commit"
Step 3. Set up a free account on github or bitbucket and make a copy of the repo there.
You may want to configure your requirements.txt, if you are using additional or custom versions of python packages. For example::
Django==1.11.11
six==1.10.0
django-cuser==2017.3.16
django-model-utils==3.1.1
pyshp==1.2.12
celery==4.1.0
Shapely>=1.5.13,<1.6.dev0
proj==0.1.0
pyproj==1.9.5.1
pygdal==2.2.1.3
inflection==0.3.1
git+git://github.com/<your organization>/geonode.git@<your branch>
You will need to use Ansible Role in order to run the playbook.
In order to install and setup Ansible, run the following commands::
sudo apt-get install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible
A sample Ansible Role can be found at https://github.com/GeoNode/ansible-geonode
To install the default one, run::
sudo ansible-galaxy install GeoNode.geonode
you will find the Ansible files into the ~/.ansible/roles folder. Those must be updated in order to match the GeoNode and GeoServer versions you will need to install.
To run the Ansible playbook use something like this::
ANSIBLE_ROLES_PATH=~.ansible/roles ansible-playbook -e "gs_root_password=<new gs root password>" -e "gs_admin_password=<new gs admin password>" -e "dj_superuser_password=<new django admin password>" -i inventory --limit all playbook.yml
Since this application uses geonode, base source of settings is geonode.settings module. It provides defaults for many items, which are used by geonode. This application has own settings module, worldmap.settings, which includes geonode.settings. It customizes few elements:
worldmap to installed applications, updates templates, staticfiles dirs, sets urlconf to worldmap.urls.Whether you deploy development or production environment, you should create additional settings file. Convention is to make worldmap.local_settings module. It is recommended to use worldmap/local_settings.py.. That file contains small subset of settings for edition. It should:
DATABASES, SECRET_KEY and SITEURL.You can add more settings there, note however, some settings (notably DEBUG_STATIC, EMAIL_ENABLE, *_ROOT, and few others) can be used by other settings, or as condition values, which change other settings. For example, EMAIL_ENABLE defined in geonode.settings enables whole email handling block, so if you disable it in your local_settings, derived settings will be preserved. You should carefully check if additional settings you change don't trigger other settings.
To illustrate whole concept of chained settings: :: +------------------------+-------------+-------------------------------+-------------+----------------------------------+ | GeoNode configuration | | Your application default | | (optionally) Your deployment(s) | | | | configuration | | | +========================|=============|===============================|=============|==================================+ | | included by | | included by | | | geonode.settings | -> | worldmap.settings | -> | worldmap.local_settings | +------------------------|-------------|-------------------------------|-------------|----------------------------------+
Content type
Image
Digest
Size
710 MB
Last updated
about 9 years ago
docker pull harvardcga/worldmap