pre- & postprocessing in qgis basemesh 2

19
| | Pre- & Postprocessing in QGIS BASEmesh 2.0 Stephan Kammerer, Leonhard Seidelmann, VAW BASEMENT Users Meeting 28. Januar 2021

Upload: others

Post on 05-Apr-2022

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Pre- & Postprocessing in QGIS BASEmesh 2

||

Pre- & Postprocessing in QGIS

BASEmesh 2.0

Stephan Kammerer, Leonhard Seidelmann, VAW

BASEMENT Users Meeting

28. Januar 2021

Page 2: Pre- & Postprocessing in QGIS BASEmesh 2

||

Preprocessing (Leonhard)

Grid generation QGIS 3.x

BASEmesh 2.0

Update on resent developments (Stephan)

Postprocessing in QGIS 3.x

28-01-2021

Content

BASEMENT Users Meeting 2021 2

Page 3: Pre- & Postprocessing in QGIS BASEmesh 2

||

Mesh data stored via «_nodes» and «_elements» Shapefile

Separate workflows depending on BASEMENT version

Regular workflow for BASEMENT v2.8

Large Mesh Dialog for BASEMENT v3.x

Poor performance scaling for large meshes

Grown codebase

Tackling performance issues or adding features is non-trivial

28-01-2021

Grid generation QGIS 3.xIssues with BASEmesh v1.4.5

BASEMENT Users Meeting 2021 3

Page 4: Pre- & Postprocessing in QGIS BASEmesh 2

||

Major restructuring of the codebase required

BASEmesh v2.0 released August 2020

28-01-2021

Grid generation QGIS 3.xIssues with BASEmesh v1.4.5

BASEMENT Users Meeting 2021 4

Page 5: Pre- & Postprocessing in QGIS BASEmesh 2

||

Completely rewritten code base

Focus on modularity and ease-of-maintenance

Separation of core functionality and plugin frontend

Support for new QGIS features

New input formats (ShapeFile, AutoCAD DXF, GeoPackage, etc.)

2DM mesh format used for QM and EM

Optional C extensions for increased performance

Platform-specific reimplementation of expensive operations

Pure-Python alternative always available for portability

28-01-2021

BASEmesh 2Overview

BASEMENT Users Meeting 2021 5

Page 6: Pre- & Postprocessing in QGIS BASEmesh 2

||

Known workflow still valid

Support for QGIS 3D geometries

3D points/lines required for Elevation

Meshing

Converter for 2D geometries with

elevation attribute available in

processing toolbox

Convex hull option for model

boundary

Generated mesh output as 2DM

Mesh Layer

28-01-2021

BASEmesh 2

Mesh Generation

BASEMENT Users Meeting 2021 6

Page 7: Pre- & Postprocessing in QGIS BASEmesh 2

||

Significantly improved performance

for large meshes

Mesh format selection for

BASEMENT v2.8, v3.0, or both

Support for multiple elevation

sources (e.g. TIN and raster DEM)

28-01-2021

BASEmesh 2

Mesh Interpolation

BASEMENT Users Meeting 2021 7

Page 8: Pre- & Postprocessing in QGIS BASEmesh 2

|| 28-01-2021

BASEmesh 2

Mesh Interpolation – multiple elevation sources

BASEMENT Users Meeting 2021 8

Page 9: Pre- & Postprocessing in QGIS BASEmesh 2

||

Native 3D Visualisation Support

in QGIS 3.10

28-01-2021

BASEmesh 2

Visualisation

BASEMENT Users Meeting 2021 9

Page 10: Pre- & Postprocessing in QGIS BASEmesh 2

||

Support for MATID visualisation

layer in QGIS 3.16+

28-01-2021

BASEmesh 2

Visualisation

BASEMENT Users Meeting 2021 10

Page 11: Pre- & Postprocessing in QGIS BASEmesh 2

||

BASEmesh 2.0 is the default version

starting with QGIS v3.10 LTR

Migration Guide available in

Repository Wiki

28-01-2021

BASEmesh 2

Getting started with BASEmesh 2

BASEMENT Users Meeting 2021 11

Page 12: Pre- & Postprocessing in QGIS BASEmesh 2

||

BASEmesh 2 separates plugin-specific code from core implementation

BASEmesh back-end will be available as standalone Python package

Python v3.6+

Available via PyPI

Provides command line versions of plugin utilities

Includes additional features not available in QGIS

(e.g. 1D channel generator)

28-01-2021

BASEmesh 2 – Outlook Python Module

BASEMENT Users Meeting 2021 12

Page 13: Pre- & Postprocessing in QGIS BASEmesh 2

||

Python API allows interfacing with BASEmesh components directly

Enables development of custom workflows and utilities using BASEmesh

functionality

API scope and documentation are still being finalised

Completion expected for end of Q1 2021

API specification will be released on BASEmesh repository

28-01-2021

BASEmesh 2 – Outlook Module API

BASEMENT Users Meeting 2021 13

Page 14: Pre- & Postprocessing in QGIS BASEmesh 2

||

Preprocessing (Leonhard)

Grid generation QGIS 3.x

BASEmesh 2.0

Update on resent developments (Stephan)

Postprocessing in QGIS 3.x

28-01-2021

Content

BASEMENT Users Meeting 2021 14

Page 15: Pre- & Postprocessing in QGIS BASEmesh 2

|| 28-01-2021BASEMENT Users Meeting 2021 15

Postprocessing in QGIS

QGIS 3.x BASEMENT 2.8 & BASEMENT 3.x

QGIS Enhancement:

Unstructured Mesh Layer

• 2dm files

• simulation results *Mesh Data Abstraction Library

Crayfish 3.x

QGIS 3.x & Crayfish 3.x, C++ library replaced by MDAL*

Crayfish simple python plugin (no platform specific libraries)

Make use of QGIS Unstructured Mesh Layer

QGIS 3.x

plot/animation

export mesh elements,

vertices and edges

(vector)

export contours

rasterize

2dm (Bed elevation)

els/nds results

• *.xdmf

• *.sol

mesh calculator

3D view

Page 16: Pre- & Postprocessing in QGIS BASEmesh 2

||

3D visualisation of simulation results

28-01-2021BASEMENT Users Meeting 2021 16

Postprocessing in QGIS

QGIS 3.x BASEMENT 2.8 & BASEMENT 3.x

source: www.lutraconsulting.co.uk/blog/2020/06/17/crayfish-3-4-4/

Page 17: Pre- & Postprocessing in QGIS BASEmesh 2

||

Some documentation available

from the QGIS 3.x User Guide

Access Crayfish funktions via:

Processing Toolbox

Menu Toolbar → Mesh

28-01-2021BASEMENT Users Meeting 2021 17

Postprocessing in QGISQGIS 3.x BASEMENT 2.8 & BASEMENT 3.x

Page 18: Pre- & Postprocessing in QGIS BASEmesh 2

||

Preprocessing

BASEmesh version 2.0

Significantly improved performance for large meshes

Enhance interpolation feature

Making use of native OGIS functionalities (Mesh layer)

Postprocessing

Result visualization for BASEMENT 2.8 and 3.x

All functionalities known of v2.18 available

Additional features and further development

28-01-2021BASEMENT Users Meeting 2021 18

Summary

source: www.lutraconsulting.co.uk/blog/2020/06/17/crayfish-3-4-4/

Page 19: Pre- & Postprocessing in QGIS BASEmesh 2

|| 28-01-2021BASEMENT Users Meeting 2021 19

Contact information

ETH Zürich

Stephan Kammerer

Leonhard Seidelmann

Versuchsanstalt für Wasserbau, Hydrologie und

Glaziologie (VAW)

Abteilung Numerische Modellierung

Hönggerbergring 26

8093 Zürich

E-Mail: [email protected]

[email protected]© Trueffelpix