Correct multiple roughness errors for new bridges
Fix validation errors for multiple bridges using SQL.
Tutorial resources
These downloadable resources will be used to complete this tutorial:
Step-by-step guide
Fix validation errors for multiple bridges using SQL.
Once bridges have been added to a network model in ICM, there may be validation errors that need to be fixed. To complete this exercise, copy the data from the transportable database .icmt file for this tutorial.
- From the Database, double-click the 1D River Model to open it on the GeoPlan.
Two bridges have just been added to this model. To fix the remaining roughness validation errors for both bridges:
- Click Validate to validate the network.
- In the Network Validation dialog box, click OK.
In the Output window, notice the illegal or missing roughness value errors against all the bridge section data.
- From the Database, double-click the Bridge roughness_N SQL to open the SQL dialog box.
- In the text box, inspect the query built to populate the missing roughness values for the sections:
SET us_link_section.roughness_N =0.05;
SET us_bridge_section.roughness_N =0.03;
SET bridge_deck.roughness_N =0.01;
SET ds_bridge_section.roughness_N =0.03;
SET ds_link_section.roughness_N =0.05;
- Click Test to validate the query.
- Click OK.
- If it is valid, click Run to run the query.
- Check the Properties window for the two bridges.
There should be no more errors.
- Validate the model.
Only the connectivity errors should remain.
Â
Note that the use of an SQL only allows the assignment of a single value to the entire section. If more detail is required, this should be updated manually, or it could have been included in the original survey data import.