-
Notifications
You must be signed in to change notification settings - Fork 0
/
Warnings.dyn
20893 lines (20893 loc) · 674 KB
/
Warnings.dyn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Uuid": "4ec82ba1-2668-4d5c-b656-54d6a0b862e5",
"IsCustomNode": false,
"Description": null,
"Name": "Warnings",
"ElementResolver": {
"ResolutionMap": {
"DSCore.String": {
"Key": "DSCore.String",
"Value": "DSCoreNodes.dll"
},
"DSCore.List": {
"Key": "DSCore.List",
"Value": "DSCoreNodes.dll"
},
"DesignScript.Dictionary": {
"Key": "DesignScript.Builtin.Dictionary",
"Value": "DesignScriptBuiltin.dll"
},
"DesignScript.Builtin.Dictionary": {
"Key": "DesignScript.Builtin.Dictionary",
"Value": "DesignScriptBuiltin.dll"
},
"ElementSelector.ByElementId": {
"Key": "Revit.Elements.ElementSelector",
"Value": "RevitNodes.dll"
},
"ElementSelector": {
"Key": "Revit.Elements.ElementSelector",
"Value": "RevitNodes.dll"
},
"Revit.Application": {
"Key": "Rhythm.Revit.Application.Application",
"Value": "Rhythm.dll"
},
"Rhythm.Revit.Application.Application.Document": {
"Key": "Rhythm.Revit.Application.Application",
"Value": "Rhythm.dll"
}
}
},
"Inputs": [
{
"Id": "e76de934437e478b90c16ad9f6a98ffd",
"Name": "Run New Room Numbers",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "2e6aa1c05aed4644b203033210f2f8f2",
"Name": "Give New Type Marks",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "1f2cf25db8bb4bda88156081b2f7cd77",
"Name": "Give New Type Marks",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "1f85c90f393a40bba89a6867774a66d6",
"Name": "Unjoin Elements",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "6f52ebb95d274d149a1d16befff77c04",
"Name": "Select DWGs with extents greater than 20 miles",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "8dee74f70f9445b5baee7330fa2e1e5a",
"Name": "Select Wall and room separation lines which overlap",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "0e663e71c78c42d1a249eba7f4cbd1dc",
"Name": "Select Walls off axis",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "842ac9fdc82a4167b7e0b559c469a1f3",
"Name": "Select Line in Sketch off axis",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "eceeb77b19d64bbca013aba376982ce5",
"Name": "Select Line is off axis",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "0b189833318d496d86a8427e06909f21",
"Name": "Select overlapping floors",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "63bb1f75acac4b4dbad1f341ca84e634",
"Name": "Select overlapping room separation lines",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "4bf4c83ee1434b0aa0b783a41a4908b3",
"Name": "Select overlapping walls",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "78ee9537e54246a6ae233c1a2246a2f9",
"Name": "Select insert conflicts with joined wall",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "79f50300a6b74bd79914dc75232e8fc3",
"Name": "Give new Mark values to windows and doors",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "da75b1eb2fa544f7a8ffdda869c376e3",
"Name": "Select multiple rooms in the same region",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "c6e3a175314c4d1f94698d9f9533b6d3",
"Name": "Select element is completely inside another",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "01a40ed6cd6e4ed78e01975d5c1f6aaa",
"Name": "Select ref plane is slightly off axis",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "dc5e1e4d2a8a434fb8d2118a629b88d3",
"Name": "Select rail is not continuous",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "02ebd91ac9144206a62491b6c0244368",
"Name": "Select identical instances in the same place",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "a046b538b25547bdbd2aaa786ac03e35",
"Name": "Select room is not in a properly enclosed region",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "d7d1e5029f764dbe92e24e49b8401904",
"Name": "Select stair ends elevation",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "370c63350fc7462ab2aa5b4896d16e00",
"Name": "Select two elements not joined automatically",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "2b40a70a37be45c8a5f18c0ae63df207",
"Name": "Isolate Refresh",
"Type": "boolean",
"Value": "false",
"Description": "Selection between a true and false."
},
{
"Id": "fea3a4b1ff6a43b8b5512b951db0e83f",
"Name": "Isolate Refresh",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
},
{
"Id": "c8c790d421ee4b27bef37e1e5145c2e3",
"Name": "Isolate Refresh",
"Type": "boolean",
"Value": "true",
"Description": "Selection between a true and false."
}
],
"Outputs": [
{
"Id": "25575679e8f844198b6e1aefad4d1ab4",
"Name": "Duplicate Type Mark",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "e6e08728e9c5405f92f74737f95ecc6c",
"Name": "Could not create Wall Sweep",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "e73a95105bd54adbb49889ea00605e60",
"Name": "Duplicate Room Numbers",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "d8950de866cb4ec98452e00c6f7ae879",
"Name": "Joined but don‘t intersect",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "6a5363804064404da68b9a19048a3df9",
"Name": "Extents greater than 20 miles",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "583886bfb2f54d56a9f4dad9dfeda8c2",
"Name": "Wall and room separation line overlap",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "bec496604b5f45ea821a0e9a042fd126",
"Name": "Wall is slightly off axis",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "d623caeb6808453696dcd2081b78c677",
"Name": "Line in sketch is slightly off axis",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "daa38e0d01e24f129437d358ea1a9581",
"Name": "Line is slightly off axis",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "a8b8b2b7ce6b48b688944377f4a67b3b",
"Name": "Highlighted floors overlap",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "c9bdab7694654153b98867562019e21e",
"Name": "Room separation lines overlap",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "41f3874429d24b6a80ef031adc441c82",
"Name": "Walls overlap",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "9db20e77591f42c781d948d937bc946c",
"Name": "Insert conflicts with joined wall",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "718d476f8abb414c9eb6eb709ecc2c40",
"Name": "Elements have duplicate Mark values",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "4889903859fe46d6a8223a37b34163b8",
"Name": "Multiple rooms are in the same enclosed region",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "b159c92032fc47d4901ac73cd79db4dd",
"Name": "One element is completely inside another",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "83a2559290d345d9bc896a37b8f1f95b",
"Name": "Ref plan is slightly off axis",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "5abb3b128de34a88a0f191b84c6575d3",
"Name": "The rail is not continuous",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "c8b13ff2971a49a0a0c4aa84f067686a",
"Name": "There are identical instances in the same place",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "5242e1c326644bba9310f785fb94bd6d",
"Name": "Room is not in a properly enclosed region",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "5cb3ce1774b4493998939c43975dc0ba",
"Name": "Stair end exceeds or cannot reach the elevation of the stair",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "050e88d7cb2c422695bb48dfa15193f2",
"Name": "Two elements were not automatically joined",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "4bbc4d7a8ccd4aa6817b39437d5b3abe",
"Name": "Remaining Warnings",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "021fabe2dba6462aafec52ccfac786cd",
"Name": "All Warnings",
"Type": "unknown",
"InitialValue": "",
"Description": "Visualize the output of node."
},
{
"Id": "e5a64f640db844e7a76cde5bad270ca1",
"Name": "Report File Name",
"Type": "unknown",
"InitialValue": "",
"Description": "Creates a string."
}
],
"Nodes": [
{
"ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore",
"FunctionSignature": "9c7d571d-14e2-4d8e-a38e-9d4678f56c60",
"FunctionType": "Graph",
"NodeType": "FunctionNode",
"Id": "beaa58986c714c4c91e2db19673cf387",
"Inputs": [
{
"Id": "e19cdd281b714ea5af3c9af9bb7850ef",
"Name": "firstElement",
"Description": "var",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "c6e650a7a7484cb88d281d7ef8124f92",
"Name": "secondElement",
"Description": "var[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "0d7f900628c649aa91e3ba0b0e8ec5d9",
"Name": "unjoinCount",
"Description": "return value",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Unjoins the element(s) in the second list from the primary input element."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.String.Contains@string,string,bool",
"Id": "f1d7e0b25f3e425383aded745d7c4e7d",
"Inputs": [
{
"Id": "700d57f1607241529bc60c46097f3b7d",
"Name": "str",
"Description": "String to search in.\n\nstring",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "7078edd29cfa4e1b94c60b430fe250a7",
"Name": "searchFor",
"Description": "Substring to search for.\n\nstring",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "d5b97eb7b8444330bfebd1590d444dcc",
"Name": "ignoreCase",
"Description": "Whether or not comparison takes case into account.\n\nbool\nDefault value : false",
"UsingDefaultValue": true,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "bf02907be5e64b7481340043fd00e1e5",
"Name": "bool",
"Description": "Whether the string contains the substring.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Determines if the given string contains the given substring.\n\nString.Contains (str: string, searchFor: string, ignoreCase: bool = false): bool"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "Bang.Revit.Elements.WarningTools.GetWarnings@bool",
"Id": "42f7488afc264394b79a720c43bd3737",
"Inputs": [
{
"Id": "1fed0ba175214242864719a18a24f221",
"Name": "toggle",
"Description": "Toggle to reset the collection.\n\nbool",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "e208884aaf234ee289d38bcd9915abf9",
"Name": "Warning Text",
"Description": "The description of the warning.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "268c0615dd69487bae44cb6e2b645a36",
"Name": "Failing Elements",
"Description": "The elements that are failing.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "This node will get the warnings for the current document. Revit 2018 and up only!\n\nWarningTools.GetWarnings (toggle: bool): var[]..[]"
},
{
"ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels",
"NodeType": "BooleanInputNode",
"InputValue": false,
"Id": "6ead4a48cefa49179dd6a46a3964a43c",
"Inputs": [],
"Outputs": [
{
"Id": "8cba9f64b7ce47e9a15987c9d380fd6f",
"Name": "",
"Description": "Boolean",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Selection between a true and false."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.FilterByBoolMask@var[]..[],var[]..[]",
"Id": "c97b2bc7c8cc41eeaeebf693a335aba4",
"Inputs": [
{
"Id": "bd181bd17025469989fd51d76444bf80",
"Name": "list",
"Description": "List to filter.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 1,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "7811615e4cdc4cf4914ce28ad8866051",
"Name": "mask",
"Description": "List of booleans representing a mask.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 1,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "c6dbad70e35b463591fb0b63a699d16d",
"Name": "in",
"Description": "Items whose mask index is true.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "8800448a71b64ecf84d9230fd949e010",
"Name": "out",
"Description": "Items whose mask index is false.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Filters a sequence by looking up corresponding indices in a separate list of booleans.\n\nList.FilterByBoolMask (list: var[]..[], mask: var[]..[]): var[]..[]"
},
{
"ConcreteType": "CoreNodeModels.Input.StringInput, CoreNodeModels",
"NodeType": "StringInputNode",
"InputValue": "duplicate \"Number\"",
"Id": "aeef659cf8394239a2d6294aecc54c18",
"Inputs": [],
"Outputs": [
{
"Id": "a2f89720098b412cbe40d8121a327004",
"Name": "",
"Description": "String",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Creates a string."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "Revit.Elements.Element.SetParameterByName@string,var",
"Id": "53531a496f734dc8aac12ffac7778f71",
"Inputs": [
{
"Id": "753ab2ca91ec4898b722125320c4da70",
"Name": "element",
"Description": "Revit.Elements.Element",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "ccfa5b9e98bf47d391038f5374fd4453",
"Name": "parameterName",
"Description": "The name of the parameter to set.\n\nstring",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "c90d3033ea7842c99d5ee988fae2b450",
"Name": "value",
"Description": "The value.\n\nvar",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "87c8bc5df0dd480d88b970e97455ed2b",
"Name": "Element",
"Description": "Element",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Set one of the element's parameters.\n\nElement.SetParameterByName (parameterName: string, value: var): Element"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore",
"NodeType": "CodeBlockNode",
"Code": "0;",
"Id": "c7adb2509ec94250aeddc7ded0bf0d03",
"Inputs": [],
"Outputs": [
{
"Id": "aa1d9b209ac04c03b5ce7e017911f6dd",
"Name": "",
"Description": "Value of expression at line 1",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Allows for DesignScript code to be authored directly"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.GetItemAtIndex@var[]..[],int",
"Id": "252109f4c171459eb317a6f629ada170",
"Inputs": [
{
"Id": "c1a4db5b868a43cc844e8603f56af979",
"Name": "list",
"Description": "List to fetch an item from.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": true,
"KeepListStructure": false
},
{
"Id": "911bdd69e87843b096dd2b4f7a4b2ef3",
"Name": "index",
"Description": "Index of the item to be fetched.\n\nint",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "cd1bfd706afd438788308d05ab36f6ab",
"Name": "item",
"Description": "Item in the list at the given index.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Returns an item from the given list that's located at the specified index.\n\nList.GetItemAtIndex (list: var[]..[], index: int): var[]..[]"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore",
"NodeType": "CodeBlockNode",
"Code": "\"Review \" + (1..x);",
"Id": "564a486fe35c43a1a49a779ad2866589",
"Inputs": [
{
"Id": "c4d98ba5178c46e1a0fb085a12398a6f",
"Name": "x",
"Description": "x",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "65445e391ec94514948f80bef0555464",
"Name": "",
"Description": "Value of expression at line 1",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Allows for DesignScript code to be authored directly"
},
{
"ConcreteType": "CoreNodeModels.Input.StringInput, CoreNodeModels",
"NodeType": "StringInputNode",
"InputValue": "Room Name",
"Id": "65913fd81a664582b78bbda77dd7ccec",
"Inputs": [],
"Outputs": [
{
"Id": "e2172aa5ef694861aaafc5c406bbae9b",
"Name": "",
"Description": "String",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Creates a string."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.AddItemToFront@var[]..[],var[]..[]",
"Id": "9030379fcfa14d1e8338b0b4ce0668f2",
"Inputs": [
{
"Id": "0eca37ecaeb647c4aefcdb0eb406dd4b",
"Name": "item",
"Description": "Item to be added. Item could be an object or a list.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": true,
"KeepListStructure": false
},
{
"Id": "f313b8c66b21457187c7d572f43b967f",
"Name": "list",
"Description": "List to add on to.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": true,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "e0966b96b75b4df38adacbf2e64c26ce",
"Name": "list",
"Description": "New list.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Adds an item to the beginning of a list.\n\nList.AddItemToFront (item: var[]..[], list: var[]..[]): var[]..[]"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.Chop@var[]..[],int[]",
"Id": "4e4679ff61fb414d85c9149c6102fcb4",
"Inputs": [
{
"Id": "c2cfcf88a8504e5bb5da4a12c3c0d420",
"Name": "list",
"Description": "List to chop into sublists\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "2e6e58f6b3644420b4077f5ba463a329",
"Name": "lengths",
"Description": "Lengths of consecutive sublists to be created from the input list\n\nint[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "311c31ab4c8347bb806ed7ceb9e6b95e",
"Name": "lists",
"Description": "Sublists created from the list",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Chop a list into a set of consecutive sublists with the specified lengths. List division begins at the top of the list.\n\nList.Chop (list: var[]..[], lengths: int[]): var[]..[]"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore",
"NodeType": "CodeBlockNode",
"Code": "1;",
"Id": "71c1eb2572bd4d7a85bf53bbf66913e1",
"Inputs": [],
"Outputs": [
{
"Id": "332c2c1479b04c7bb0d45583491e4f93",
"Name": "",
"Description": "Value of expression at line 1",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Allows for DesignScript code to be authored directly"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.Flatten@var[]..[],int",
"Id": "e9dffa7d607442e6b84e6935b9bd5468",
"Inputs": [
{
"Id": "8d67f5d46f30492aafa0b14c5fce18e5",
"Name": "list",
"Description": "List to flatten.\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "8bb27ccf7ae4482d96182ae139206af1",
"Name": "amt",
"Description": "Layers of nesting to remove.\n\nint\nDefault value : -1",
"UsingDefaultValue": true,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "c3d1021b6530438b8ffaca8cd39042c2",
"Name": "var[]..[]",
"Description": "var[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Auto",
"Description": "Flattens a nested list of lists by a certain amount.\n\nList.Flatten (list: var[]..[], amt: int = -1): var[]..[]"
},
{
"ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore",
"NodeType": "CodeBlockNode",
"Code": "1;",
"Id": "e50769ab4a2c43fba1c554c81926885e",
"Inputs": [],
"Outputs": [
{
"Id": "40ce8a4cee2a4efa976443cf2229f27b",
"Name": "",
"Description": "Value of expression at line 1",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Allows for DesignScript code to be authored directly"
},
{
"ConcreteType": "CoreNodeModels.HigherOrder.Map, CoreNodeModels",
"NodeType": "ExtensionNode",
"Id": "c3e6ea63d9e64e1e834e1f0acea726d2",
"Inputs": [
{
"Id": "292950a537cf490baacf0cfb15d35c74",
"Name": "list",
"Description": "The list to map over.",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "501bde7fcf764b738c4cbc3e279400d6",
"Name": "f(x)",
"Description": "The procedure used to map element",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "8b1ecc646dd94803abd131f7d3fb6a73",
"Name": "mapped",
"Description": "Mapped list",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Replication": "Disabled",
"Description": "Applies a function over all elements of a list, generating a new list from the results."
},
{
"ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore",
"NodeType": "FunctionNode",
"FunctionSignature": "DSCore.List.GroupByKey@var[]..[],var[]..[]",
"Id": "318ad53c92df434d8cf7f41a486f68ed",
"Inputs": [
{
"Id": "b2c03ab4ec4448fe8375deb6decdac76",
"Name": "list",
"Description": "List of items to group as sublists\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "c146b0ac6035499c9f4f010d53e6106c",
"Name": "keys",
"Description": "Key values, one per item in the input list, used for grouping the items\n\nvar[]..[]",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
}
],
"Outputs": [
{
"Id": "ec0391c8171c4bc8abfc723eaa4208ba",
"Name": "groups",
"Description": "list of sublists, with items grouped by like key values",
"UsingDefaultValue": false,
"Level": 2,
"UseLevels": false,
"KeepListStructure": false
},
{
"Id": "de0477bcab4f48c9880d1b0a0a6984d7",