Skip to content

Commit

Permalink
Graphical Modeler: add support for space-time datasets (#3400)
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Feb 4, 2024
1 parent 89cf288 commit 76c1ac5
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 24 deletions.
21 changes: 19 additions & 2 deletions gui/wxpython/gmodeler/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,10 @@ def GetOptData(self, dcmd, layer, params, propwin):
"vector",
"raster_3d",
"dbtable",
"stds",
"strds",
"stvds",
"str3ds",
):
continue

Expand Down Expand Up @@ -1005,7 +1009,12 @@ def GetOptData(self, dcmd, layer, params, propwin):
data.Update()
continue

data = ModelData(
dataClass = (
ModelDataSeries
if p.get("prompt", "").startswith("st")
else ModelDataSingle
)
data = dataClass(
self,
value=p.get("value", ""),
prompt=p.get("prompt", ""),
Expand Down Expand Up @@ -1444,7 +1453,15 @@ def OnProperties(self, event=None):
)

elif isinstance(shape, ModelData):
if shape.GetPrompt() in ("raster", "vector", "raster_3d"):
if shape.GetPrompt() in (
"raster",
"vector",
"raster_3d",
"stds",
"strds",
"stvds",
"str3ds",
):
dlg = ModelDataDialog(parent=self.frame, shape=shape)
shape.SetPropDialog(dlg)
dlg.CentreOnParent()
Expand Down
126 changes: 104 additions & 22 deletions gui/wxpython/gmodeler/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- model::ModelObject
- model::ModelAction
- model::ModelData
- model::ModelDataSingle
- model::ModelDataSeries
- model::ModelRelation
- model::ModelItem
- model::ModelLoop
Expand Down Expand Up @@ -36,7 +38,6 @@
import time

import xml.etree.ElementTree as etree

import xml.sax.saxutils as saxutils

import wx
Expand Down Expand Up @@ -356,7 +357,10 @@ def LoadModel(self, filename):

# load data & relations
for data in gxmXml.data:
dataItem = ModelData(
dataClass = (
ModelDataSeries if data["prompt"].startswith("st") else ModelDataSingle
)
dataItem = dataClass(
parent=self,
x=data["pos"][0],
y=data["pos"][1],
Expand Down Expand Up @@ -1350,7 +1354,7 @@ def OnDraw(self, dc):
ogl.RectangleShape.OnDraw(self, dc)


class ModelData(ModelObject, ogl.EllipseShape):
class ModelData(ModelObject):
def __init__(self, parent, x, y, value="", prompt="", width=None, height=None):
"""Data item class
Expand Down Expand Up @@ -1378,15 +1382,20 @@ def __init__(self, parent, x, y, value="", prompt="", width=None, height=None):
group="modeler", key="data", subkey=("size", "height")
)

if self.parent.GetCanvas():
ogl.EllipseShape.__init__(self, width, height)
self._defineShape(width, height, x, y)

self.SetCanvas(self.parent)
self.SetX(x)
self.SetY(y)
self._setPen()
self._setBrush()
self.SetLabel()
self._setPen()
self._setBrush()
self.SetLabel()

@abstractmethod
def _defineShape(self, width, height, x, y):
"""Define data item
:param width, height: dimension of the shape
:param x, y: position of the shape
"""
pass

def IsIntermediate(self):
"""Checks if data item is intermediate"""
Expand All @@ -1407,7 +1416,7 @@ def SetHasDisplay(self, tbd):
def OnDraw(self, dc):
self._setPen()

ogl.EllipseShape.OnDraw(self, dc)
super().OnDraw(dc)

def GetLog(self, string=True):
"""Get logging info"""
Expand Down Expand Up @@ -1468,17 +1477,17 @@ def SetPropDialog(self, win):
"""Get properties dialog"""
self.propWin = win

def _setBrush(self):
"""Set brush"""
if self.prompt == "raster":
def _getBrush(self):
"""Get brush"""
if self.prompt in ("raster", "strds"):
color = UserSettings.Get(
group="modeler", key="data", subkey=("color", "raster")
)
elif self.prompt == "raster_3d":
elif self.prompt in ("raster_3d", "str3ds"):
color = UserSettings.Get(
group="modeler", key="data", subkey=("color", "raster3d")
)
elif self.prompt == "vector":
elif self.prompt in ("vector", "stvds"):
color = UserSettings.Get(
group="modeler", key="data", subkey=("color", "vector")
)
Expand All @@ -1491,10 +1500,15 @@ def _setBrush(self):
group="modeler", key="action", subkey=("color", "invalid")
)
wxColor = wx.Colour(color[0], color[1], color[2])
self.SetBrush(wx.Brush(wxColor))

def _setPen(self):
"""Set pen"""
return wx.Brush(wxColor)

def _setBrush(self):
"""Set brush"""
self.SetBrush(self._getBrush())

def _getPen(self):
"""Get pen"""
isParameterized = False
for rel in self.GetRelations("from"):
if rel.GetTo().IsParameterized():
Expand Down Expand Up @@ -1523,8 +1537,11 @@ def _setPen(self):
else:
style = wx.SOLID

pen = wx.Pen(wx.BLACK, width, style)
self.SetPen(pen)
return wx.Pen(wx.BLACK, width, style)

def _setPen(self):
"""Get pen"""
self.SetPen(self._getPen())

def SetLabel(self):
"""Update text"""
Expand Down Expand Up @@ -1559,6 +1576,71 @@ def GetDisplayCmd(self):
return cmd


class ModelDataSingle(ModelData, ogl.EllipseShape):
def _defineShape(self, width, height, x, y):
"""Define single data item (raster, raster_3d, vector)
:param width, height: dimension of the shape
:param x, y: position of the shape
"""
ogl.EllipseShape.__init__(self, width, height)
if self.parent.GetCanvas():
self.SetCanvas(self.parent.GetCanvas())

self.SetX(x)
self.SetY(y)


class ModelDataSeries(ModelData, ogl.CompositeShape):
def _defineShape(self, width, height, x, y):
"""Define single data item (raster, raster_3d, vector)
:param width, height: dimension of the shape
:param x, y: position of the shape
"""
ogl.CompositeShape.__init__(self)
if self.parent.GetCanvas():
self.SetCanvas(self.parent.GetCanvas())

self.constraining_shape = ogl.EllipseShape(width, height)
self.constrained_shape = ogl.EllipseShape(width - 20, height)
self.AddChild(self.constraining_shape)
self.AddChild(self.constrained_shape)

constraint = ogl.Constraint(
ogl.CONSTRAINT_CENTRED_BOTH,
self.constraining_shape,
[self.constrained_shape],
)
self.AddConstraint(constraint)
self.Recompute()

self.constraining_shape.SetDraggable(False)
self.constrained_shape.SetDraggable(False)
self.constrained_shape.SetSensitivityFilter(ogl.OP_CLICK_LEFT)

canvas = self.parent.GetCanvas()
if canvas:
dc = wx.ClientDC(canvas)
canvas.PrepareDC(dc)
self.Move(dc, x, y)

self.SetX(x)
self.SetY(y)

def _setBrush(self):
"""Set brush"""
brush = self._getBrush()
self.constraining_shape.SetBrush(brush)
self.constrained_shape.SetBrush(brush)

def _setPen(self):
"""Set brush"""
brush = self._getPen()
self.constraining_shape.SetPen(brush)
self.constrained_shape.SetPen(brush)


class ModelRelation(ogl.LineShape):
"""Data - action relation"""

Expand Down

0 comments on commit 76c1ac5

Please sign in to comment.