Skip to main content

Hello ,

How could i convert Geospatial Electrical Network Data (includes stations, cables , houses) are connecting to each other to convert these data as compact Block diagram .

it is not important the coordinates ,I need to create a simple block diagram  of electrical data .

I would like to adjust the positions of elements by bringing them closer together without overlapping and create the suitable connections between them .

Is there any idea that I should to test ?

FME 2021

thanks in advance .

Could you make a simple table example of your source data:

StationID | StationName

1 | Bla

HouseID | HouseName

1 | Bla

CableID | CableName | ConnectionFrom | ConnectionTo

1 | Bla | Station 1 | House 2

 

or something like that

 

And an example of what the result has to look like. Just a single block of a station with 100 houses connected by lines?

 

I have used this in the past:

https://www.drawio.com/blog/org-charts

Create an org chart from CSV data

This does the auto-layout that I wanted.

 


As far as I am aware, FME is not really aimed at rendering all the different varieties of block diagrams used by different industries.

What FME can do is create the Graph data (ie. An Attributed Nodes Table, and the Edges Table that connects nodes, with or without a direction attribute, and with or without extra Extra Attribution).

This can be used to create either raw CSV tables or Eg. GraphML files (a particular XML standard for containing graph/block diagram data),  and then this be used by a separate graph/network analyser and renderer, for which there a huge number of the market, anything from say Neo4J in the cloud, to maybe something more desktop oriented such as yED (which was one of the earliest to market and still one of the best for system graphing/functional block diagrams).  I suspect that the power industry itself may even have bespoke software and standards for creating specific power network diagrams.


Reply