pict-section-form 1.0.15 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.vscode/settings.json +17 -1
  2. package/debug/Harness.js +0 -0
  3. package/debug/ParseCSV.js +114 -0
  4. package/debug/TabularManifestCSV.csv +89 -0
  5. package/example_applications/complex_table/.quackage.json +9 -0
  6. package/example_applications/complex_table/Complex-Tabular-Application.js +328 -198
  7. package/example_applications/complex_table/Complex-Tabular-CustomDataProvider.js +25 -0
  8. package/example_applications/manifest_testbed/Pict-Template-Metacontroller-TemplateWithGroupRow.js +139 -0
  9. package/example_applications/manyfest_editor/.quackage.json +9 -0
  10. package/example_applications/manyfest_editor/node_modules/.package-lock.json +18 -8
  11. package/example_applications/manyfest_editor/node_modules/crossroads/.jshintrc +69 -0
  12. package/example_applications/manyfest_editor/node_modules/crossroads/CHANGELOG.md +212 -0
  13. package/example_applications/manyfest_editor/node_modules/crossroads/README.md +105 -0
  14. package/example_applications/manyfest_editor/node_modules/crossroads/build.js +99 -0
  15. package/example_applications/manyfest_editor/node_modules/crossroads/package.json +37 -0
  16. package/example_applications/manyfest_editor/node_modules/crossroads/testacular.conf.js +69 -0
  17. package/example_applications/manyfest_editor/node_modules/navigo/.babelrc.es +19 -0
  18. package/example_applications/manyfest_editor/node_modules/navigo/.editorconfig +12 -0
  19. package/example_applications/manyfest_editor/node_modules/navigo/CHANGELOG.md +422 -0
  20. package/example_applications/manyfest_editor/node_modules/navigo/DOCUMENTATION.md +799 -0
  21. package/example_applications/manyfest_editor/node_modules/{@capitec/omni-router → navigo}/LICENSE +3 -2
  22. package/example_applications/manyfest_editor/node_modules/navigo/README.md +109 -0
  23. package/example_applications/manyfest_editor/node_modules/navigo/README_v7.md +342 -0
  24. package/example_applications/manyfest_editor/node_modules/navigo/index.d.ts +112 -0
  25. package/example_applications/manyfest_editor/node_modules/navigo/jsconfig.json +1 -0
  26. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/Q.js +36 -0
  27. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/constants.js +8 -0
  28. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/index.js +434 -0
  29. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/lifecycles.js +15 -0
  30. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/callHandler.js +9 -0
  31. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForAfterHook.js +10 -0
  32. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForAlreadyHook.js +20 -0
  33. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForBeforeHook.js +22 -0
  34. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForDeprecationMethods.js +13 -0
  35. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForForceOp.js +9 -0
  36. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForLeaveHook.js +54 -0
  37. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForNotFoundHandler.js +27 -0
  38. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/errorOut.js +4 -0
  39. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/flushCurrent.js +5 -0
  40. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/matchPathToRegisteredRoutes.js +19 -0
  41. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/processMatches.js +25 -0
  42. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/setLocationPath.js +9 -0
  43. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/updateBrowserURL.js +32 -0
  44. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/updateState.js +8 -0
  45. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/waitingList.js +3 -0
  46. package/example_applications/manyfest_editor/node_modules/navigo/lib/es/utils.js +180 -0
  47. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.js +1339 -0
  48. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.js.map +1 -0
  49. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.min.js +2 -0
  50. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.min.js.map +1 -0
  51. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.js +1350 -0
  52. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.js.map +1 -0
  53. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.min.js +2 -0
  54. package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.min.js.map +1 -0
  55. package/example_applications/manyfest_editor/node_modules/navigo/package.json +61 -0
  56. package/example_applications/manyfest_editor/node_modules/signals/.jshintrc +12 -0
  57. package/example_applications/manyfest_editor/node_modules/signals/.project +17 -0
  58. package/example_applications/manyfest_editor/node_modules/signals/CHANGELOG.markdown +294 -0
  59. package/example_applications/manyfest_editor/node_modules/signals/README.markdown +83 -0
  60. package/example_applications/manyfest_editor/node_modules/signals/package.json +28 -0
  61. package/example_applications/manyfest_editor/node_modules/signals/updateDocs.sh +12 -0
  62. package/example_applications/manyfest_editor/package.json +3 -2
  63. package/example_applications/manyfest_editor/providers/Manyfest-Router.js +14 -32
  64. package/example_applications/manyfest_editor/source/Manyfest-Editor.js +0 -2
  65. package/example_applications/simple_form/Simple-Form_Default_Manifest.json +2 -2
  66. package/package.json +4 -3
  67. package/source/Pict-Section-Form.js +4 -1
  68. package/source/providers/Pict-Provider-DynamicSolver.js +28 -1
  69. package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.js +311 -0
  70. package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates.js +72 -6
  71. package/source/providers/Pict-Provider-Informary.js +20 -1
  72. package/source/providers/Pict-Provider-InputExtension.js +158 -0
  73. package/source/providers/Pict-Provider-MetaLists.js +160 -0
  74. package/source/providers/Pict-Provider-MetatemplateGenerator.js +2 -2
  75. package/source/providers/Pict-Provider-MetatemplateMacros.js +26 -0
  76. package/source/providers/inputs/Pict-Provider-Input-DateTime.js +113 -0
  77. package/source/providers/inputs/Pict-Provider-Input-Select.js +189 -0
  78. package/source/services/ManifestFactory.js +287 -0
  79. package/source/views/Pict-View-DynamicForm-DefaultConfiguration.json +9 -1
  80. package/source/views/Pict-View-DynamicForm.js +331 -36
  81. package/source/views/Pict-View-Form-Metacontroller.js +4 -2
  82. package/types/Pict-Section-Form.d.ts +6 -0
  83. package/types/providers/Pict-Provider-DynamicSolver.d.ts.map +1 -1
  84. package/types/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.d.ts +5 -0
  85. package/types/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.d.ts.map +1 -0
  86. package/types/providers/Pict-Provider-Informary.d.ts +3 -1
  87. package/types/providers/Pict-Provider-Informary.d.ts.map +1 -1
  88. package/types/providers/Pict-Provider-InputExtension.d.ts +117 -0
  89. package/types/providers/Pict-Provider-InputExtension.d.ts.map +1 -0
  90. package/types/providers/Pict-Provider-MetaLists.d.ts +29 -0
  91. package/types/providers/Pict-Provider-MetaLists.d.ts.map +1 -0
  92. package/types/providers/Pict-Provider-MetatemplateGenerator.d.ts +3 -3
  93. package/types/providers/Pict-Provider-MetatemplateMacros.d.ts +14 -0
  94. package/types/providers/Pict-Provider-MetatemplateMacros.d.ts.map +1 -0
  95. package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts +13 -0
  96. package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts.map +1 -0
  97. package/types/providers/inputs/Pict-Provider-Input-Select.d.ts +17 -0
  98. package/types/providers/inputs/Pict-Provider-Input-Select.d.ts.map +1 -0
  99. package/types/services/ManifestFactory.d.ts +48 -0
  100. package/types/services/ManifestFactory.d.ts.map +1 -0
  101. package/types/views/Pict-View-DynamicForm.d.ts +8 -2
  102. package/types/views/Pict-View-DynamicForm.d.ts.map +1 -1
  103. package/types/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
  104. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/README.md +0 -397
  105. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/package.json +0 -59
  106. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/Router.ts +0 -849
  107. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/RouterOutlet.ts +0 -472
  108. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/index.ts +0 -4
  109. package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/types.ts +0 -101
  110. package/example_applications/manyfest_editor/views/Manyfest-Summary-View.js +0 -41
@@ -1,3 +1,19 @@
1
1
  {
2
- "workbench.colorTheme": "FreshCut"
2
+ "workbench.colorTheme": "FreshCut",
3
+ "sqltools.connections": [
4
+ {
5
+ "mysqlOptions": {
6
+ "authProtocol": "default",
7
+ "enableSsl": "Disabled"
8
+ },
9
+ "previewLimit": 50,
10
+ "server": "mysql.qa.headlight.com",
11
+ "port": 3306,
12
+ "driver": "MySQL",
13
+ "name": "Headlight QA",
14
+ "group": "Headlight",
15
+ "database": "mpi",
16
+ "username": "steven.velozo"
17
+ }
18
+ ]
3
19
  }
File without changes
@@ -0,0 +1,114 @@
1
+ #!/usr/bin/env node
2
+ let libPictCommandLineUtility = require('pict-service-commandlineutility');
3
+
4
+ const libFS = require('fs');
5
+ const libPath = require('path');
6
+ const libReadline = require('readline');
7
+
8
+ class ImportCSVCommand extends libPictCommandLineUtility.ServiceCommandLineCommand
9
+ {
10
+ constructor(pFable, pSettings, pServiceHash)
11
+ {
12
+ super(pFable, pSettings, pServiceHash);
13
+
14
+ this.options.CommandKeyword = 'import';
15
+ this.options.Description = 'Importing the data.';
16
+
17
+ this.options.CommandOptions.push({ Name: '-f, --filename [filename]', Description: 'The tabular csv file to import.', Default: './TabularManifestCSV.csv'});
18
+ this.options.CommandOptions.push({ Name: '-o, --output [filename]', Description: 'The output file to write the manifest to.', Default: './PICTSection-TabularManifests.json'});
19
+ this.options.CommandOptions.push({ Name: '-d, --directory [directory]', Description: 'The manifest directory to output the manifests to individually.', Default: './data/'});
20
+
21
+ this.addCommand();
22
+ }
23
+
24
+ onRunAsync(fCallback)
25
+ {
26
+ let tmpFileName = this.CommandOptions.filename;
27
+ if ((!tmpFileName) || (typeof(tmpFileName) != 'string') || (tmpFileName.length === 0))
28
+ {
29
+ this.log.error('No valid filename provided.');
30
+ return fCallback();
31
+ }
32
+ let tmpOutputFileName = this.CommandOptions.output;
33
+ if ((!tmpOutputFileName) || (typeof(tmpOutputFileName) != 'string') || (tmpOutputFileName.length === 0))
34
+ {
35
+ this.log.error('No valid output filename provided.');
36
+ return fCallback();
37
+ }
38
+ let tmpManifestDirectory = this.CommandOptions.directory;
39
+ if ((!tmpManifestDirectory) || (typeof(tmpManifestDirectory) != 'string') || (tmpManifestDirectory.length === 0))
40
+ {
41
+ this.log.error('No valid manifest directory provided.');
42
+ return fCallback();
43
+ }
44
+
45
+ // The ManifestFactory gives us a programmatic way to manage Manifest config consistently
46
+ this.fable.addAndInstantiateServiceType('ManifestFactory', require('../source/services/ManifestFactory.js'));
47
+ // Initialize the CSV parser
48
+ this.fable.instantiateServiceProvider('CSVParser');
49
+ // Setup the formatter to clean nonalpha characters to underscores
50
+ this.fable.DataFormat._Value_Clean_formatterCleanNonAlpha = '_';
51
+
52
+ ///////////////////////////////////////////////////////////////////////////////
53
+ // Parse the CSV file
54
+ const tmpRecords = [];
55
+ this.fable.log.info(`Parsing CSV file [${tmpFileName}]...`);
56
+
57
+ const tmpReadline = libReadline.createInterface(
58
+ {
59
+ input: libFS.createReadStream(tmpFileName),
60
+ crlfDelay: Infinity,
61
+ });
62
+
63
+ tmpReadline.on('line',
64
+ (pLine) =>
65
+ {
66
+ const tmpRecord = this.fable.CSVParser.parseCSVLine(pLine);
67
+ if (tmpRecord)
68
+ {
69
+ tmpRecords.push(tmpRecord);
70
+ }
71
+ });
72
+
73
+ tmpReadline.on('close',
74
+ () =>
75
+ {
76
+ this.fable.log.info(`...CSV parser completed, pulled ${tmpRecords.length} rows.`);
77
+
78
+ const tmpManifests = this.fable.ManifestFactory.createManifestsFromTabularArray(tmpRecords);
79
+ libFS.writeFileSync(tmpOutputFileName, JSON.stringify(tmpManifests, null, 4), 'utf8');
80
+
81
+ const tmpManifestKeys = Object.keys(tmpManifests);
82
+ for (let i = 0; i < tmpManifestKeys.length; i++)
83
+ {
84
+ const tmpManifest = tmpManifests[tmpManifestKeys[i]];
85
+ this.fable.log.info(`Manifest: ${tmpManifestKeys[i]} has ${Object.keys(tmpManifest.Descriptors).length} descriptors.. writing it to ${tmpManifestKeys[i]}.json and to ${tmpManifestKeys[i]}.sql`);
86
+ libFS.writeFileSync(libPath.join(tmpManifestDirectory,`${tmpManifestKeys[i]}.json`), JSON.stringify(tmpManifest, null, 4), 'utf8');
87
+ }
88
+ });
89
+
90
+ return fCallback();
91
+ };
92
+ }
93
+
94
+ const _ProgramConfiguration = (
95
+ {
96
+ Product: 'PictSection-TabularCSV-Input',
97
+ Version: '0.0.2',
98
+
99
+ // The command is very similar to PTSD
100
+ Command: 'pstcsvi',
101
+ Description: 'Pict Section Tabular CSV Input',
102
+
103
+ ProgramConfigurationFileName: '.pict-cli-debugharness-config.json',
104
+
105
+ DefaultProgramConfiguration: { },
106
+
107
+ AutoGatherProgramConfiguration: true,
108
+ AutoAddConfigurationExplanationCommand: true
109
+ });
110
+
111
+ let _Program = new libPictCommandLineUtility(_ProgramConfiguration, [ ImportCSVCommand ]);
112
+ _Program.LogNoisiness = 4;
113
+
114
+ module.exports = _Program.run();
@@ -0,0 +1,89 @@
1
+ Form,Form Name,SubManifest,Section Name,Group Name,Row,Width,Input Address,Input Address Clean,Input Name,Input Hash,SelectOptions,Input Extra,Units,DataType,InputType,Equation,Default,Description,Tooltiup,Input Notes
2
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Report Identification,,,,,,,,,,,,,,,,,
3
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,Phase 1 Findings,,,ScourEvaluation.Phase2Analysis,ScourEvaluation.Phase2Analysis,Phase 2 Analysis,ScourEvaluationPhase2Analysis,"Yes,No","Yes,No",,String,SelectFixed,,No,,,
4
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Remarks,ScourEvaluation.Remarks,Remarks,ScourEvaluationRemarks,,,,String,,,,,,Alphanumeric entry
5
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Summary of Findings,ScourEvaluation.Summary of Findings,Summary of Findings,ScourEvaluationSummary of Findings,,,,String,,,,,,Alphanumeric entry
6
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Recommendations,ScourEvaluation.Recommendations,Recommendations,ScourEvaluationRecommendations,,,,String,,,,,,Alphanumeric entry
7
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Basis for Evaluation,ScourEvaluation.Basis for Evaluation,Basis for Evaluation,ScourEvaluationBasis for Evaluation,,,,String,,,,,,Alphanumeric entry
8
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Material and Documentation,ScourEvaluation.Material and Documentation,Material and Documentation,ScourEvaluationMaterial and Documentation,,,,String,,,,,,Alphanumeric entry
9
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Mode,ScourEvaluation.Scour Mode,Scour Mode,ScourEvaluationScour Mode,"Riverine,Tidal,Both","Riverine,Tidal,Both",,String,SelectFixed,,,,,
10
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Critical,ScourEvaluation.Scour Critical,Scour Critical,ScourEvaluationScour Critical,"Yes,No,TBD","Yes,No,TBD",,String,SelectFixed,,,,,
11
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Susceptible,ScourEvaluation.Scour Susceptible,Scour Susceptible,ScourEvaluationScour Susceptible,"Yes,No,Unknown","Yes,No,Unknown",,String,SelectFixed,,,,,
12
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Foundation,ScourEvaluation.Foundation,Foundation,ScourEvaluationFoundation,"Known,Unknown","Known,Unknown",,String,SelectFixed,,,,,
13
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Reasons for Rating,ScourEvaluation.Reasons for Rating,Reasons for Rating,ScourEvaluationReasons for Rating,,,,String,,,,,,Alphanumeric entry
14
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Last Recorded Value,ScourEvaluation.Last Recorded Value,Last Recorded Value,ScourEvaluationLast Recorded Value,,,,Number,,,,,,Mix Selector
15
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Date,ScourEvaluation.Date,Date,ScourEvaluationDate,,,,DateTime,Date,,,,,
16
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Recommended Value,ScourEvaluation.Recommended Value,Recommended Value,ScourEvaluationRecommended Value,,,,,,,,,,
17
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Phase 2 Analysis Recommendation,ScourEvaluation.Phase 2 Analysis Recommendation,Phase 2 Analysis Recommendation,ScourEvaluationPhase 2 Analysis Recommendation,"Yes,No","Yes,No",,String,SelectFixed,,No,,,
18
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Phase 2 Priority,ScourEvaluation.Phase 2 Priority,Phase 2 Priority,ScourEvaluationPhase 2 Priority,"High,Medium,Low","High,Medium,Low",,String,SelectFixed,,,,,
19
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Remarks,ScourEvaluation.Remarks,Remarks,ScourEvaluationRemarks,,,,,,,,,,
20
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Type,ScourEvaluation.Type,Type,ScourEvaluationType,"Bridge,Bridge Culvert","Bridge,Bridge Culvert",,,,,,,,
21
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Type,ScourEvaluation.Type,Type,ScourEvaluationType,"Vertical Walls Left,Vertical Walls Right,Sheet Piles Left,Sheet Piles Right,Spill Through Left,Spill Through Right,Wing Walls Left,Wing Walls Right","Vertical Walls Left,Vertical Walls Right,Sheet Piles Left,Sheet Piles Right,Spill Through Left,Spill Through Right,Wing Walls Left,Wing Walls Right",,String,SelectFixed,,,,,
22
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Foundation,ScourEvaluation.Foundation,Foundation,ScourEvaluationFoundation,,,,,,,,,,
23
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Spread Footing,ScourEvaluation.Spread Footing,Spread Footing,ScourEvaluationSpread Footing,"Left,Right","Left,Right",,,,,,,,
24
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Length,ScourEvaluation.Length,Length,ScourEvaluationLength,,,FT,Number,,,,,,
25
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Width,ScourEvaluation.Width,Width,ScourEvaluationWidth,,,FT,Number,,,,,,
26
+ ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Depth,ScourEvaluation.Depth,Depth,ScourEvaluationDepth,,,FT,Number,,,,,,
27
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Identification,,,DataItemsNBI.Bridge Number,DataItemsNBI.Bridge Number,Bridge Number,DataItemsNBIBridge Number,,,,String,,,,,,Alphanumeric entry
28
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Location,,,DataItemsNBI.Metropolitan Planning Organization,DataItemsNBI.Metropolitan Planning Organization,Metropolitan Planning Organization,DataItemsNBIMetropolitan Planning Organization,"Maui MPO,Oahu MPO,Not Applicable","Maui MPO,Oahu MPO,Not Applicable",,String,Select Fixed,,,,,B.L.12
29
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Classification,,,DataItemsNBI.Emergency Evacuation Designation,DataItemsNBI.Emergency Evacuation Designation,Emergency Evacuation Designation,DataItemsNBIEmergency Evacuation Designation,"No - Not an Emergency evacuation route,Yes - Emergency evacuation route","No - Not an Emergency evacuation route,Yes - Emergency evacuation route",,,,,,,,B.CL.06
30
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Number of Beam Lines,DataItemsNBI.Number of Beam Lines,Number of Beam Lines,DataItemsNBINumber of Beam Lines,"Max=999,Precision=1","Max=999,Precision=1",FT,Float,,,,,,
31
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Span Protective System,DataItemsNBI.Span Protective System,Span Protective System,DataItemsNBISpan Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – hot dip galvanizing,C04 Coating – metalizing/thermal spray,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,M01 Membrane – built-up,M02 Membrane – sheet,M03 Membrane – liquid applied,MU Membrane – unknown,MX Membrane – other,P01 Patina – uncoated weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – hot dip galvanizing,C04 Coating – metalizing/thermal spray,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,M01 Membrane – built-up,M02 Membrane – sheet,M03 Membrane – liquid applied,MU Membrane – unknown,MX Membrane – other,P01 Patina – uncoated weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other",,String,SelectFixed,,,,,
32
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Deck Interaction,DataItemsNBI.Deck Interaction,Deck Interaction,DataItemsNBIDeck Interaction,"CS Composite – shored construction,CU Composite – unshored construction,IM Integral or monolithic,NC Non-composite","CS Composite – shored construction,CU Composite – unshored construction,IM Integral or monolithic,NC Non-composite",,String,SelectFixed,,,,,
33
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Deck Stay-In-Place Forms,DataItemsNBI.Deck Stay-In-Place Forms,Deck Stay-In-Place Forms,DataItemsNBIDeck Stay-In-Place Forms,"0 None,C01 Concrete – reinforced,C02 Concrete – prestressed,F01 FRP composite,M01 Metal,T01 Timber,X Other","0 None,C01 Concrete – reinforced,C02 Concrete – prestressed,F01 FRP composite,M01 Metal,T01 Timber,X Other",,String,SelectFixed,,,,,
34
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Configuration Designation,DataItemsNBI.Substructure Configuration Designation,Substructure Configuration Designation,DataItemsNBISubstructure Configuration Designation,,,,String,,,,,,
35
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Number of Substructure Units,DataItemsNBI.Number of Substructure Units,Number of Substructure Units,DataItemsNBINumber of Substructure Units,,,,String,,,,,,
36
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Material,DataItemsNBI.Substructure Material,Substructure Material,DataItemsNBISubstructure Material,"0 None,A01 Aluminum,C01 Reinforced concrete – cast-in-place,C02 Reinforced concrete – precast,C03 Prestressed concrete – pre-tensioned,C04,Prestressed concrete – cast-in-place post-tensioned,C05 Prestressed concrete – precast post tensioned,CX Concrete – other,E01 Earth – reinforced soil,F01 FRP composite – aramid fiber,F02 FRP composite – carbon fiber,F03 FRP composite – glass fiber,FX FRP composite – other,I02 Iron – cast,I01 Iron – wrought,M01 Masonry – block,M02 Masonry – stone,P01 Plastic – Polyethylene,PX Plastic – other,S01 Steel – rolled shapes,S02 Steel – welded shapes,S03 Steel – bolted shapes,S04 Steel – riveted shapes,S05 Steel – bolted and riveted shapes,S06 Steel – pipe,SX Steel – other,T01 Timber – glue laminated,T02 Timber – nail laminated,T03 Timber – solid sawn,T04 Timber – stress laminated,TX Timber – other,X Other","0 None,A01 Aluminum,C01 Reinforced concrete – cast-in-place,C02 Reinforced concrete – precast,C03 Prestressed concrete – pre-tensioned,C04,Prestressed concrete – cast-in-place post-tensioned,C05 Prestressed concrete – precast post tensioned,CX Concrete – other,E01 Earth – reinforced soil,F01 FRP composite – aramid fiber,F02 FRP composite – carbon fiber,F03 FRP composite – glass fiber,FX FRP composite – other,I02 Iron – cast,I01 Iron – wrought,M01 Masonry – block,M02 Masonry – stone,P01 Plastic – Polyethylene,PX Plastic – other,S01 Steel – rolled shapes,S02 Steel – welded shapes,S03 Steel – bolted shapes,S04 Steel – riveted shapes,S05 Steel – bolted and riveted shapes,S06 Steel – pipe,SX Steel – other,T01 Timber – glue laminated,T02 Timber – nail laminated,T03 Timber – solid sawn,T04 Timber – stress laminated,TX Timber – other,X Other",,String,SelectFixed,,,,,
37
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Type,DataItemsNBI.Substructure Type,Substructure Type,DataItemsNBISubstructure Type,"0 None,A01 Abutment – cantilever/wall,A02 Abutment – stub,A03 Abutment – open/spill through,A04 Abutment – integral,A05 Abutment – semi-integral,A06 Abutment – gravity,A07 Abutment – counterfort,A08 Abutment – pile bent with lagging,A09 Abutment – crib,A10 Abutment – cellular/vaulted,A11 Abutment – reinforced soil,A12 Abutment – footing only,AX Abutment – other,B01 Bent – column or open,B02 Bent – column with web wall,B03 Bent – pile,B04 Bent – straddle or c-shaped,BX Bent – other,P01 Pier – wall,P02 Pier – single column,P03 Pier – multiple column,P04 Pier – multiple column with web wall,P05 Pier – straddle or c-shaped,P06 Pier – movable bridge,P07 Pier – tower,P08 Pier – footing only,PX Pier – other,U Unknown,X Other","0 None,A01 Abutment – cantilever/wall,A02 Abutment – stub,A03 Abutment – open/spill through,A04 Abutment – integral,A05 Abutment – semi-integral,A06 Abutment – gravity,A07 Abutment – counterfort,A08 Abutment – pile bent with lagging,A09 Abutment – crib,A10 Abutment – cellular/vaulted,A11 Abutment – reinforced soil,A12 Abutment – footing only,AX Abutment – other,B01 Bent – column or open,B02 Bent – column with web wall,B03 Bent – pile,B04 Bent – straddle or c-shaped,BX Bent – other,P01 Pier – wall,P02 Pier – single column,P03 Pier – multiple column,P04 Pier – multiple column with web wall,P05 Pier – straddle or c-shaped,P06 Pier – movable bridge,P07 Pier – tower,P08 Pier – footing only,PX Pier – other,U Unknown,X Other",,String,SelectFixed,,,,,
38
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Protective System,DataItemsNBI.Substructure Protective System,Substructure Protective System,DataItemsNBISubstructure Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,X Other",,String,SelectFixed,,,,,
39
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Foundation Type,DataItemsNBI.Foundation Type,Foundation Type,DataItemsNBIFoundation Type,"E01 Earth – reinforced soil,F01 Footing – not on rock,F02 Footing – on rock,F03 Footing – on reinforced soil,P01 Pile – steel H-shape,P02 Pile – steel pipe,P03 Pile – concrete, cast-in-place,P04 Pile – prestressed concrete,P05 Pile – timber,P06 Pile – auger cast,P07 Pile – micropile,P08 Pile – composite,P09 Pile – FRP composite,PX Pile – other,S01 Drilled shaft – single,S02 Drilled shafts – multiple,S03 Caisson,U Unknown,X Other","E01 Earth – reinforced soil,F01 Footing – not on rock,F02 Footing – on rock,F03 Footing – on reinforced soil,P01 Pile – steel H-shape,P02 Pile – steel pipe,P03 Pile – concrete, cast-in-place,P04 Pile – prestressed concrete,P05 Pile – timber,P06 Pile – auger cast,P07 Pile – micropile,P08 Pile – composite,P09 Pile – FRP composite,PX Pile – other,S01 Drilled shaft – single,S02 Drilled shafts – multiple,S03 Caisson,U Unknown,X Other",,String,SelectFixed,,,,,
40
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Foundation Protective System,DataItemsNBI.Foundation Protective System,Foundation Protective System,DataItemsNBIFoundation Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other",,String,SelectFixed,,,,,
41
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Curved Bridge,DataItemsNBI.Curved Bridge,Curved Bridge,DataItemsNBICurved Bridge,"CU Curved girder(s),CP Piecewise straight girders,CK Kinked girder(s),N Not curved",,,String,SelectFixed,,,,,
42
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Maximum Bridge Height,DataItemsNBI.Maximum Bridge Height,Maximum Bridge Height,DataItemsNBIMaximum Bridge Height,,ft and inches,,Number,,,,,,
43
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Sidehill Bridge,DataItemsNBI.Sidehill Bridge,Sidehill Bridge,DataItemsNBISidehill Bridge,"N Not a sidehill bridge,Y Is a sidehill bridge",,,,,,,,,
44
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Irregular Deck Area,DataItemsNBI.Irregular Deck Area,Irregular Deck Area,DataItemsNBIIrregular Deck Area,,"Floating point entry, 2 decimals",SQFT,Number,,,,,,
45
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Highways,,,DataItemsNBI.Crossing Bridge Number,DataItemsNBI.Crossing Bridge Number,Crossing Bridge Number,DataItemsNBICrossing Bridge Number,,Alphanumeric entry,,,,,,,,Alphanumeric entry or user can search from bridge inventory list by bridge number and add bridge number from there
46
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Railroads,,,DataItemsNBI.Railroad Service Type,DataItemsNBI.Railroad Service Type,Railroad Service Type,DataItemsNBIRailroad Service Type,"F Freight,FE Freight - electrified,P Passenger,PE Passenger - electrified,M Multiple services - not electrified,ME Multiple services - electrified,I Inactive
47
+ ",,,String,,,,,,"Single choice
48
+ "
49
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Navigable Waterways,,,DataItemsNBI.Navigation Channel Minimum Horizontal Clearance,DataItemsNBI.Navigation Channel Minimum Horizontal Clearance,Navigation Channel Minimum Horizontal Clearance,DataItemsNBINavigation Channel Minimum Horizontal Clearance,,,,Float,,,,,,"Only available to be completed when item B.N.01 (Navigable Waterway) is Y
50
+ Floating point entry, 1 decimal"
51
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Design Method,DataItemsNBI.Design Method,Design Method,DataItemsNBIDesign Method,"ASD Allowable Stress Design,LFD Load Factor Design,LRFD Load and Resistance Factor Design,U Unknown,X Other",,,DateTime,Date,,,,,
52
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Load Rating Date,DataItemsNBI.Load Rating Date,Load Rating Date,DataItemsNBILoad Rating Date,,,,,,,,,,
53
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Controlling Legal Load Rating Factor,DataItemsNBI.Controlling Legal Load Rating Factor,Controlling Legal Load Rating Factor,DataItemsNBIControlling Legal Load Rating Factor,,,,Number,,,,,,
54
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Routine Permit Loads,DataItemsNBI.Routine Permit Loads,Routine Permit Loads,DataItemsNBIRoutine Permit Loads,"A Bridge carries routine permit loads. Load capacity is adequate for all routine permit loads; no routine permit loads are restricted.,B Bridge carries routine permit loads. Load capacity is adequate for some routine permit loads but some routine permit loads are restricted.,C Bridge does not carry routine permit loads. Routine permit loads are restricted from the bridge.,N Bridge does not carry routine permit loads. Agency does not issue routine permits",,,,,,,,,
55
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Posting Status,,,DataItemsNBI.Posting Status Change Date,DataItemsNBI.Posting Status Change Date,Posting Status Change Date,DataItemsNBIPosting Status Change Date,,,,DateTime,Date,,,,,
56
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Legal Load Configuration,DataItemsNBI.Legal Load Configuration,Legal Load Configuration,DataItemsNBILegal Load Configuration,"3 Type 3,3S2 Type 3S2,3-3 Type 3-3,SU4 SU4 truck,SU5 SU5 truck,SU6 SU6 truck,SU7 SU7 truck,NRL Notional Rating Load,EV2 Type EV2 emergency vehicle,EV3 Type EV3 emergency vehicle",,,,,,,,,
57
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Legal Load Rating Factor,DataItemsNBI.Legal Load Rating Factor,Legal Load Rating Factor,DataItemsNBILegal Load Rating Factor,,,,Number,,,,,,
58
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Posting Type,DataItemsNBI.Posting Type,Posting Type,DataItemsNBIPosting Type,"G Gross Load,A Single Axle Load,D Tandem Axle Load,T Truck Load,C No commercial vehicles,S Speed reduction,L Number of lanes restricted,V Number of vehicles restricted,X Other",,,,,,,,,
59
+ DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Posting Value,DataItemsNBI.Posting Value,Posting Value,DataItemsNBIPosting Value,,,,Number,,,,,,
60
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Requirements,,,DataItemsNBI.Fatigue Details,DataItemsNBI.Fatigue Details,Fatigue Details,DataItemsNBIFatigue Details,"N No E/E’ details,Y E/E’ details are present",,,String,SelectFixed,,,,,"Do not report this item for bridges that do not
61
+ have steel members as indicated in Items
62
+ B.SP.04 (Span Material) and B.SB.03
63
+ (Substructure Material)."
64
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Requirements,,,DataItemsNBI.Complex Feature,DataItemsNBI.Complex Feature,Complex Feature,DataItemsNBIComplex Feature,"N Bridge does not have complex feature,Y Bridge has complex feature",,,String,SelectFixed,,,,,
65
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Completion Date,DataItemsNBI.Inspection Completion Date,Inspection Completion Date,DataItemsNBIInspection Completion Date,,,,DateTime,Date,,,,,Report the last site visit date
66
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Nationally Certified Bridge Inspector,DataItemsNBI.Nationally Certified Bridge Inspector,Nationally Certified Bridge Inspector,DataItemsNBINationally Certified Bridge Inspector,,Alphanumeric entry,,,,,,,,"Alphanumeric
67
+ This could be an entry in the first release and then change to pulling the unique identifier code of the team leader for the inspection from the list of inspectors and qualifications based on the inspectors name"
68
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Due Date,DataItemsNBI.Inspection Due Date,Inspection Due Date,DataItemsNBIInspection Due Date,,,,,,,,,,"HIBridge to calculate this and the ability to overwrite if inspection was late
69
+
70
+ This value is calculated by the FHWA based on Item B.IE.03 (Inspection Completion Date) plus the value of Item B.IE.05 (Inspection Interval)"
71
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Risk-Based Inspection Interval Method,DataItemsNBI.Risk-Based Inspection Interval Method,Risk-Based Inspection Interval Method,DataItemsNBIRisk-Based Inspection Interval Method,"Not applicable,Method 1,Method 2",,,,,,,,,
72
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Quality Control Date,DataItemsNBI.Inspection Quality Control Date,Inspection Quality Control Date,DataItemsNBIInspection Quality Control Date,,,,DateTime,Date,,,,,The date that the QC review was completed. This should be able to be left blank or select 'No QC review' if one was not perfo
73
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Quality Assurance Date,DataItemsNBI.Inspection Quality Assurance Date,Inspection Quality Assurance Date,DataItemsNBIInspection Quality Assurance Date,,,,DateTime,Date,,,,,"Date
74
+ The date that the QA review was
75
+ completed.
76
+ This should be able to be left blank or select 'No QC review' if one was not performed"
77
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Data Update Date,DataItemsNBI.Inspection Data Update Date,Inspection Data Update Date,DataItemsNBIInspection Data Update Date,,,,DateTime,Date,,,,,"Date
78
+ Date that the HDOT database was updated with the NBI inspection data.
79
+ For HIBridge to be confirmed with HDOT that this is the date the information is pushed to BrM"
80
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Note,DataItemsNBI.Inspection Note,Inspection Note,DataItemsNBIInspection Note,,,,,,,,,,"Alphanumeric
81
+ Limit to 300 characters.
82
+ This field may end up linking and taking data from a different note in the form at a later date"
83
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Equipment,DataItemsNBI.Inspection Equipment,Inspection Equipment,DataItemsNBIInspection Equipment,"Access,AN No access equipment used,A01 Ladder,A02 Bucket lift vehicle,A03 Under bridge inspection vehicle,A04 Rigging,A05 Waders,A06 Boat,A07 Snorkel,A08 SCUBA,A09 Surface supplied air,A10 Remotely Operated Vehicle (ROV),A11 Video pole,A12 Borescope,A13 Unmanned aerial systems (UAS),A14 Service Traveler,AX Other,Inspection,IN No inspection equipment used,I01 Ultrasonic,I02 Ground-penetrating radar,I03 Infrared thermography,I04 Radiographic testing,I05 Impact echo,I06 Electromagnetic methods,I07 Rebound & penetration methods,I08 Acoustic emissions testing,I09 Dye penetrant,I10 Magnetic particle,I11 Eddy current,I12 Boring or drilling,I13 Underwater imaging,I14 Depth finder/fathometer",,,,,,,,,"Dropdown with the following options, multiple choice: (titles in Bold cannot be selected but separate the lists)"
84
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Bridge Bearings Condition Rating,DataItemsNBI.Bridge Bearings Condition Rating,Bridge Bearings Condition Rating,DataItemsNBIBridge Bearings Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
85
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Bridge Joints Condition Rating,DataItemsNBI.Bridge Joints Condition Rating,Bridge Joints Condition Rating,DataItemsNBIBridge Joints Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
86
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Channel Protection Condition Rating,DataItemsNBI.Channel Protection Condition Rating,Channel Protection Condition Rating,DataItemsNBIChannel Protection Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
87
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.NSTM Inspection Condition,DataItemsNBI.NSTM Inspection Condition,NSTM Inspection Condition,DataItemsNBINSTM Inspection Condition,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,Grey out or show as not applicable when Item B.IR.01 (NSTM Inspection Required) is N
88
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Underwater Inspection Condition,DataItemsNBI.Underwater Inspection Condition,Underwater Inspection Condition,DataItemsNBIUnderwater Inspection Condition,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,Grey out or show as not applicable when Item B.IR.03 (NSTM Inspection Required) is N
89
+ DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Appraisal,,,DataItemsNBI.Seismic Vulnerability,DataItemsNBI.Seismic Vulnerability,Seismic Vulnerability,DataItemsNBISeismic Vulnerability,"0 Seismic evaluation not completed. ,N Bridge does not require seismic evaluation due to low anticipated ground motion or agency prioritization.,A Seismic evaluation completed. Bridge determined to meet the agency’s performance criteria established for the evaluation without need for retrofit.,B Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Retrofit is in place.,C Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Partial retrofit is in place.,D Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Retrofit is not in place.",,,,,,,,,
@@ -0,0 +1,9 @@
1
+ {
2
+ "GulpExecutions": [
3
+ {
4
+ "Hash": "default",
5
+ "Name": "Default standard build.",
6
+ "BuildFileLabel": "",
7
+ "BrowsersListRC": "since 2022"
8
+ }]
9
+ }