Advertisement
Guest User

van-steps.dot

a guest
Oct 25th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 3.91 KB | None | 0 0
  1. strict digraph {
  2.   label="Van steps";
  3.   labelloc=t;
  4.  
  5.   /*concentrate=true;*/
  6.   splines=spline;
  7.   overlap=false;
  8.   rankdir=TB;
  9.  
  10.   GutVan[label="Gut van interior"];
  11.   InstallSkylights[label="Install any skylights"];
  12.   InstallWindows[label="Install any windows"];
  13.   CoverWindows[label="Cover any windows\nyou wish to totally block"];
  14.   VentilationHoles[label="Cut holes in roof\nfor fans"];
  15.   SolarHoles[label="Cut holes in roof\nfor solar panel wiring"];
  16.   GasHoles[label="Cut holes in floor\nfor gas tank\nventilation"];
  17.   InstallPanels[label="Install solar panels"];
  18.   DecideFloorplan[label="Decide on basic floorplan"];
  19.   BatteryLocation[label="Decide on battery location"];
  20.   KitchenLocation[label="Decide on kitchen location"];
  21.   BedLocation[label="Decide on bed location"];
  22.   HeaterLocation[label="Decide on heater location"];
  23.   FridgeLocation[label="Decide on fridge location"];
  24.   StorageLocation[label="Decide on storage location"];
  25.   BatteryHoles[label="Cut holes in walls\nto ventilate batteries"];
  26.   OutletLocation[label="Decide on outlet locations"];
  27.   InstallWiring[label="Install wiring conduits\nand thread cables"]
  28.   FuelHoles[label="Create hole to lead\nextra fuel-line through"];
  29.   InstallFuel[label="Install extra fuel-line"]
  30.   HandleBulkhead[label="Install/uninstall bulkhead"];
  31.   BlockWork[label="Mount wooden block work\nto attach things through\nwalls later"];
  32.   InstallInsulation[label="Install insulation"];
  33.   InstallCeiling[label="Install ceiling"];
  34.   InstallWalls[label="Install walls"];
  35.   InstallFloor[label="Install floor"];
  36.   InstallFans[label="Install fans"];
  37.   InstallLights[label="Install light fixtures"];
  38.   InstallOutlets[label="Install outlets"];
  39.   InstallVents[label="Install gas vents"];
  40.   InstallFridge[label="Install fridge"];
  41.   InstallBlinds[label="Install curtains/blinds"]
  42.   BuildBattery[label="Build battery cabinet"];
  43.   BuildKitchen[label="Build kitchen cabinets"];
  44.   BuildBedframe[label="Build bed frame"];
  45.   BuildStorage[label="Build storage cabinets"];
  46.   SecurePropane[label="Secure propane gas tank(s)"];
  47.   InstallSink[label="Install sink"];
  48.   InstallStove[label="Install stove"];
  49.   ConnectStove[label="Connect stove\nto propane gas"];
  50.   PropaneHeater[label="Install propane heater"];
  51.   ElectricHeater[label="Install electric heater"];
  52.   FuelHeater[label="Install gasoline/diesel heater"];
  53.   SolarSystem[label="Install solar system"];
  54.   BatterySystem[label="Install battery system"];
  55.   WaterSystem[label="Install water system"];
  56.   ConnectSink[label="Connect sink\nto water system"];
  57.   ConnectFans[label="Connect fans\nto battery system"];
  58.   ConnectLights[label="Connect lights\nto battery system"];
  59.   ConnectOutlets[label="Connect outlets\nto battery system"];
  60.   ConnectSolar[label="Connect solar system\nto battery system"];
  61.   ConnectHeater[label="Connect electric heater\nto batterysystem"];
  62.   ConnectFridge[label="Connect fridge\nto required systems"];
  63.  
  64.   GutVan ->
  65.   VentilationHoles ->
  66.   InstallWindows ->
  67.   InstallSkylights ->
  68.   HandleBulkhead ->
  69.   DecideFloorplan ->
  70.   KitchenLocation ->
  71.   GasHoles ->
  72.   HeaterLocation ->
  73.   FuelHoles ->
  74.   InstallFuel ->
  75.   FridgeLocation ->
  76.   InstallFridge ->
  77.   CoverWindows ->
  78.   BatteryLocation ->
  79.   SolarHoles ->
  80.   InstallPanels ->
  81.   OutletLocation ->
  82.   InstallWiring ->
  83.   BedLocation ->
  84.   StorageLocation ->
  85.   BlockWork ->
  86.   InstallInsulation ->
  87.   InstallFloor ->
  88.   InstallVents ->
  89.   InstallCeiling ->
  90.   InstallLights ->
  91.   InstallFans ->
  92.   BatteryHoles ->
  93.   InstallWalls ->
  94.   InstallOutlets ->
  95.   InstallBlinds ->
  96.   FuelHeater ->
  97.   ElectricHeater ->
  98.   BuildStorage ->
  99.   BuildKitchen ->
  100.   WaterSystem ->
  101.   SecurePropane ->
  102.   PropaneHeater ->
  103.   InstallStove ->
  104.   ConnectStove ->
  105.   InstallSink ->
  106.   ConnectSink ->
  107.   BuildBedframe ->
  108.   BuildBattery ->
  109.   SolarSystem ->
  110.   BatterySystem ->
  111.   ConnectSolar ->
  112.   ConnectOutlets ->
  113.   ConnectLights ->
  114.   ConnectHeater ->
  115.   ConnectFridge ->
  116.   ConnectFans;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement