refactor ETL graph

This commit is contained in:
ImreSamu
2016-11-11 17:26:53 +01:00
parent 34afba471f
commit d8cab7ad04
15 changed files with 68 additions and 273 deletions

23
sh/gen_doc.sh Executable file
View File

@@ -0,0 +1,23 @@
# Work in progress ...
#
# generate ETL graph from all layers
# start from the root :
# ./sh/gen_doc.sh
#
# outut -> ./doc/
mkdir -p ./doc/
rm -f ./doc/*
for f in ./layers/*
do
echo "Processing : $f"
layer_id=$(echo "$f" | rev | cut -d"/" -f1 | rev )
echo "layer_id = $layer_id"
./sh/gen_etl_graph.sh $layer_id
done