Data mapping visualisation

+1 vote
asked Mar 7, 2021 in Wanted features by onlyonce

I would like to create/visualise data mapping structures "similar" like Altova MapForce with PlantUML features like coloring, style and others within cells.

Simple GraphViz example without PlantUML features:

@startuml
digraph G {
nodesep=1;
rankdir=LR;


dataX [shape=record,width=2,height=.1, label = "Data Structure 1|
<xfield1> Xfield1|
<xfield2> Xfield2|
<xfield3> Xfield3"];

dataY [shape=record,width=2,height=.1, label = "Data Structure 2|
<yfield1> Yfield1|
<yfield2> Yfield2|
<yfield3> Yfield3"];

dataZ [shape=record,width=2,height=.1, label = "Data Structure 3|
<zfield1> Zfield1|
<zfield2> Zfield2|
<zfield3> Zfield3"];

dataX:xfield1 -> dataY:yfield2
dataX:xfield2 -> dataY:yfield1

dataY:yfield1 -> dataZ:zfield2
dataY:yfield2 -> dataZ:zfield3

dataZ:zfield3 -> dataX:xfield3
}
@enduml
commented Mar 10, 2021 by chris (2,820 points)
edited Mar 10, 2021 by chris

Does this help?

You can use a class diagram with creole, and depending on your use case a map might come in handy too:

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...