Skip to main content

Wagtail based Geospatial Data Manager

Project description

GeoManager

Wagtail based Geospatial Data Manager and backend CMS for geomapviewer

Geomanager Admin Screenshot

Background

Most national/regional institutions working in weather/climate/DRM sectors regularly produce and disseminate data and information that is Geo-referenced. This can range from forecast model outputs, earth observation data, stations observation, periodic bulletins and advisories and so on. Usually these are shared on their websites and social media pages in static formats, mostly as PNGs or PDFS.

This is an effort to develop an interactive system for managing and publishing Geo-referenced (GIS) datasets. As the institutions produce and share their products in static formats, they can also use packages like this, to make their data interactive.

The package is developed primarily for use by NMHSs at national levels, but can be adapted in other institutions or places that need to visualize their geospatial data.

Features

All the raster and vector datasets uploaded must have time associated with each file.

For netCDF files with time dimension, time is automatically extracted from the file. For Geotiff, each uploaded file must be manually assigned time.

Data management and visualization

  • Uploading and visualization of gridded data
    • netCDF
    • Geotiff
  • Uploading and visualization of vector data
    • Shapefiles
    • Geojson
  • Raster Tile serving of raster data using django-large-image. All django-large-imagefeatures are available
  • Vector tile serving using PostGIS MVT Tiles

MapViewer Management

  • Management of layers visualized on the geomapviewer
    • Control on visibility (public or private) of layers on the MapViewer

Installation

Prerequisite

Before installing this package, you should make sure you have GDAL installed in your system.

TIP: Installing GDAL can be notoriously difficult. You can use pre-built Python wheels with the GDAL binary bundled, provided by KitWare, for easy installation in production linux environments.

To install GDAL using KitWare GDAL wheel, use:

  pip install --find-links https://girder.github.io/large_image_wheels GDAL

Other required packages that you will need to install, if not installed already in your Wagtail Project

  • psycopg2 - for postgres/postgis database connection

Installation

You can install the package using pip:

pip install geomanager

Install this version of wagtail-admin-sortable from Github. This has some updates to the original packages.

pip install https://github.com/wmo-raf/wagtail-admin-sortable/archive/33bf22f290e7a4210b44667e9ff56e4b35ad309e.zip

Usage

Make sure the following are all added to your INSTALLED_APPS in your Wagtail settings

INSTALLED_APPS = [
    ...
    
    "geomanager",
    "adminboundarymanager",
    "django_large_image",
    'django_json_widget',
    'django_nextjs',
    "django_filters",
    "wagtail_color_panel",
    "wagtail_adminsortable",
    "wagtailhumanitarianicons",
    "wagtailiconchooser",
    "django_extensions",
    "wagtailfontawesomesvg"
    "allauth",
    "allauth.account",
    "wagtailcache",
    "wagtail_modeladmin"
    
    "wagtail.contrib.settings",
    "rest_framework",
    "django.contrib.gis",
    
    ...
]

Run migrations

python manage.py migrate geomanager

Add the following to your project's urls.py

urlpatterns = [
    ...
    path("", include("geomanager.urls")),
    ...
]

Wagtail Cache Setup

Geomanager depends on the wagtail-cache package for caching requests. Please have a look at the wagtail-cache documentation for setup instructions

Including the Map Viewer

This package is the backend component to the frontend geomapviewer.

Testing local changes in ClimWeb

If you are developing geomanager and want to test your changes inside a running ClimWeb instance, follow the steps below.

Prerequisites

Both repos should be cloned side by side:

wmo/
  climweb/
  geomanager/

Setup

1. Start ClimWeb with the geomanager volume mount

From the climweb directory, use the dev compose file (it already mounts ../geomanager into the containers):

In docker-compose.dev.yml

  cimweb_dev:
    volumes:
      - ../geomanager:/geomanager

Then run ClimWeb as usual:

docker compose -f docker-compose.yml -f docker-compose.dev.yml build
docker compose -f docker-compose.yml -f docker-compose.dev.yml up

2. Install geomanager in editable mode

Inside the running ClimWeb container, replace the pinned geomanager with your local copy:

docker exec climweb_dev pip install -e /geomanager

This must be re-run each time the container is recreated (e.g. after docker compose build).

If your changes also affect Celery tasks, install it in the worker too:

docker exec climweb_celery_worker_dev pip install -e /geomanager

3. Apply database migrations (if needed)

If your geomanager changes include model modifications:

docker exec climweb_dev cd src/climweb && python manage.py makemigrations geomanager
docker exec climweb_dev cd src/climweb && python manage.py migrate

Development workflow

  1. Edit code in the geomanager repo as normal.
  2. Python file changes are picked up automatically (Django dev server reloads).
  3. If you modify models, run makemigrations + migrate again.
  4. When done, commit your migrations in the geomanager repo.

Reverting to the released version

Rebuild the container to go back to the pinned version:

docker compose -f docker-compose.yml -f docker-compose.dev.yml build

Or reinstall the pinned version manually:

docker exec climweb_dev pip install geomanager==<version>

Documentation

TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geomanager-0.6.1.tar.gz (701.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geomanager-0.6.1-py3-none-any.whl (793.6 kB view details)

Uploaded Python 3

File details

Details for the file geomanager-0.6.1.tar.gz.

File metadata

  • Download URL: geomanager-0.6.1.tar.gz
  • Upload date:
  • Size: 701.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for geomanager-0.6.1.tar.gz
Algorithm Hash digest
SHA256 3207fd8ae40919418698bb04f9dec0e2e16ab01609fd99d64019c197a4e2b6a2
MD5 9df0e93e9d67cb63080367b5002b304b
BLAKE2b-256 d716b253bd969c637a0bb959fb42a1b6f241119237a4f3c83e96cb029241a13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for geomanager-0.6.1.tar.gz:

Publisher: publish.yml on wmo-raf/geomanager

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file geomanager-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: geomanager-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 793.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for geomanager-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5ceb2537526872d3ef628f2fa7bfccb97c22ca02a1297ee498282a3e8d0a69de
MD5 22c9447fd8ef10f7a28ae7d079a22d8e
BLAKE2b-256 ed9e84b33c9c0da924b60df235645bfcb75248cec368a00190e03575c1b8a072

See more details on using hashes here.

Provenance

The following attestation bundles were made for geomanager-0.6.1-py3-none-any.whl:

Publisher: publish.yml on wmo-raf/geomanager

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page