├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── imgs ├── CustomerAllocation.png ├── DownloadZip.png ├── GBElevation.png ├── ODIC.png ├── create_selection_lists_from_areas.png ├── demand_allocation_exchange.png ├── exchange_e2e_demo.gif ├── exchange_e2e_ground_grid.PNG ├── exchange_e2e_inference.PNG ├── expand_short_links.gif ├── modify_network_data.gif ├── set_materials.gif ├── to_geojson.gif ├── trace_network.png └── validate_network.png ├── model-build ├── README.md ├── build_model.rb ├── lib │ ├── iwp_build.rb │ └── iwp_build │ │ ├── control_file.rb │ │ ├── expand_nodes.rb │ │ ├── expand_nodes │ │ ├── node_to_be_expanded.rb │ │ └── trim_link.rb │ │ ├── importer.rb │ │ ├── node_rename.rb │ │ ├── os_ntf_elevations.rb │ │ ├── os_ntf_elevations │ │ ├── BilinearInterpolation.rb │ │ ├── OSGroundGrid.rb │ │ ├── OSGroundGridCalculator.rb │ │ └── OSTileLocator.rb │ │ ├── rename_nodes.rb │ │ ├── rename_nodes │ │ ├── renamer.rb │ │ └── xy.rb │ │ ├── roughness.rb │ │ ├── spatial.rb │ │ ├── spatial │ │ ├── bearing.rb │ │ ├── destination.rb │ │ ├── distance.rb │ │ ├── intersects.rb │ │ ├── nearest_point_on_line.rb │ │ └── point_along_line.rb │ │ ├── split_links.rb │ │ └── version.rb └── script_inc │ ├── callback │ ├── hydrant_cb.bas │ ├── meter_node_cb.bas │ ├── pipe_cb.bas │ ├── polygon_cb.bas │ ├── prv_node_cb.bas │ ├── reservoir_cb.bas │ ├── twp_node_cb.bas │ ├── valve_node_cb.bas │ └── wtw_cb.bas │ └── cfg │ ├── hydrant.cfg │ ├── meter_node.cfg │ ├── pipe.cfg │ ├── polygon.cfg │ ├── prv_node.cfg │ ├── reservoir.cfg │ ├── twp_node.cfg │ ├── valve_node.cfg │ └── wtw.cfg └── scripts ├── create_network_objects └── create_objects.rb ├── create_selection_lists_from_areas ├── README.md └── create_selection_lists_from_areas.rb ├── demand_allocation ├── README.md ├── demand_allocation.rb └── lib │ ├── customer_allocation.rb │ └── customer_allocation │ ├── allocator.rb │ ├── spatial.rb │ └── version.rb ├── elevations_gb_os_ntf ├── README.md ├── lib │ ├── os_ntf_elevations.rb │ └── os_ntf_elevations │ │ ├── BilinearInterpolation.rb │ │ ├── OSGroundGrid.rb │ │ ├── OSGroundGridCalculator.rb │ │ └── OSTileLocator.rb └── set_elevations.rb ├── exchange_demand_allocation ├── README.md ├── example_demands.ddg ├── example_network.csv ├── run_demand_allocation.rb └── run_exchange.cmd ├── exchange_full_example ├── README.md ├── build_model.rb ├── cfg │ ├── customer.cfg │ ├── fixed_head.cfg │ ├── hydrant.cfg │ ├── hydrant_lead.cfg │ ├── meter.cfg │ ├── odic_script.bas │ ├── pipe.cfg │ └── valve.cfg ├── lib │ ├── model_builder.rb │ └── model_builder │ │ ├── expand_links.rb │ │ ├── odic.rb │ │ ├── set_controls.rb │ │ ├── set_elevations.rb │ │ ├── set_live_data.rb │ │ └── version.rb ├── run_exchange.cmd └── source_data │ ├── addresses.cpg │ ├── addresses.dbf │ ├── addresses.prj │ ├── addresses.qpj │ ├── addresses.shp │ ├── addresses.shx │ ├── demand_diagram │ └── Demand Diagram.ddg │ ├── ground │ ├── 10m_spacing.ASC.xml │ ├── 10m_spacing.asc │ └── 10m_spacing.prj │ ├── scada │ └── BulkMeterOne.sli │ ├── water_hydrant.cpg │ ├── water_hydrant.dbf │ ├── water_hydrant.prj │ ├── water_hydrant.qpj │ ├── water_hydrant.shp │ ├── water_hydrant.shx │ ├── water_hydrant_leads.cpg │ ├── water_hydrant_leads.dbf │ ├── water_hydrant_leads.prj │ ├── water_hydrant_leads.qpj │ ├── water_hydrant_leads.shp │ ├── water_hydrant_leads.shx │ ├── water_mains.cpg │ ├── water_mains.dbf │ ├── water_mains.prj │ ├── water_mains.qpj │ ├── water_mains.shp │ ├── water_mains.shx │ ├── water_mains_presplit.cpg │ ├── water_mains_presplit.dbf │ ├── water_mains_presplit.prj │ ├── water_mains_presplit.shp │ ├── water_mains_presplit.shx │ ├── water_meter.cpg │ ├── water_meter.dbf │ ├── water_meter.prj │ ├── water_meter.qpj │ ├── water_meter.shp │ ├── water_meter.shx │ ├── water_treatment_works.cpg │ ├── water_treatment_works.dbf │ ├── water_treatment_works.prj │ ├── water_treatment_works.qpj │ ├── water_treatment_works.shp │ ├── water_treatment_works.shx │ ├── water_valve.cpg │ ├── water_valve.dbf │ ├── water_valve.prj │ ├── water_valve.qpj │ ├── water_valve.shp │ └── water_valve.shx ├── expand_short_links ├── README.md └── expand_short_links.rb ├── icm_scenario_generator ├── scenario_generator.rb └── scenario_generator_runoff.rb ├── material_lookup ├── README.md ├── example_network.csv └── set_materials.rb ├── modify_network_data ├── README.md ├── example_network.csv └── modify_network_data.rb ├── modify_structured_data └── modify_structured_data.rb ├── network_validations ├── README.md └── validate_network.rb ├── open_data_import_centre ├── README.md ├── import_model.rb └── odic_script.bas ├── split_links ├── README.md ├── libs │ └── split_links.rb └── split.rb ├── to_geojson ├── README.md └── to_geojson.rb └── trace_network ├── README.md └── trace_network.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/README.md -------------------------------------------------------------------------------- /imgs/CustomerAllocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/CustomerAllocation.png -------------------------------------------------------------------------------- /imgs/DownloadZip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/DownloadZip.png -------------------------------------------------------------------------------- /imgs/GBElevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/GBElevation.png -------------------------------------------------------------------------------- /imgs/ODIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/ODIC.png -------------------------------------------------------------------------------- /imgs/create_selection_lists_from_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/create_selection_lists_from_areas.png -------------------------------------------------------------------------------- /imgs/demand_allocation_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/demand_allocation_exchange.png -------------------------------------------------------------------------------- /imgs/exchange_e2e_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/exchange_e2e_demo.gif -------------------------------------------------------------------------------- /imgs/exchange_e2e_ground_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/exchange_e2e_ground_grid.PNG -------------------------------------------------------------------------------- /imgs/exchange_e2e_inference.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/exchange_e2e_inference.PNG -------------------------------------------------------------------------------- /imgs/expand_short_links.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/expand_short_links.gif -------------------------------------------------------------------------------- /imgs/modify_network_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/modify_network_data.gif -------------------------------------------------------------------------------- /imgs/set_materials.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/set_materials.gif -------------------------------------------------------------------------------- /imgs/to_geojson.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/to_geojson.gif -------------------------------------------------------------------------------- /imgs/trace_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/trace_network.png -------------------------------------------------------------------------------- /imgs/validate_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/imgs/validate_network.png -------------------------------------------------------------------------------- /model-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/README.md -------------------------------------------------------------------------------- /model-build/build_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/build_model.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/control_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/control_file.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/expand_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/expand_nodes.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/expand_nodes/node_to_be_expanded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/expand_nodes/node_to_be_expanded.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/expand_nodes/trim_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/expand_nodes/trim_link.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/importer.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/node_rename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/node_rename.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/os_ntf_elevations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/os_ntf_elevations.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/os_ntf_elevations/BilinearInterpolation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/os_ntf_elevations/BilinearInterpolation.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/os_ntf_elevations/OSGroundGrid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/os_ntf_elevations/OSGroundGrid.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/os_ntf_elevations/OSGroundGridCalculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/os_ntf_elevations/OSGroundGridCalculator.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/os_ntf_elevations/OSTileLocator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/os_ntf_elevations/OSTileLocator.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/rename_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/rename_nodes.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/rename_nodes/renamer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/rename_nodes/renamer.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/rename_nodes/xy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/rename_nodes/xy.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/roughness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/roughness.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/bearing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/bearing.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/destination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/destination.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/distance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/distance.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/intersects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/intersects.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/nearest_point_on_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/nearest_point_on_line.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/spatial/point_along_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/spatial/point_along_line.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/split_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/lib/iwp_build/split_links.rb -------------------------------------------------------------------------------- /model-build/lib/iwp_build/version.rb: -------------------------------------------------------------------------------- 1 | module IwpBuild 2 | VERSION = '0.0.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /model-build/script_inc/callback/hydrant_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/hydrant_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/meter_node_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/meter_node_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/pipe_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/pipe_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/polygon_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/polygon_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/prv_node_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/prv_node_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/reservoir_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/reservoir_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/twp_node_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/twp_node_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/valve_node_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/valve_node_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/callback/wtw_cb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/callback/wtw_cb.bas -------------------------------------------------------------------------------- /model-build/script_inc/cfg/hydrant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/hydrant.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/meter_node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/meter_node.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/pipe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/pipe.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/polygon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/polygon.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/prv_node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/prv_node.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/reservoir.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/reservoir.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/twp_node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/twp_node.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/valve_node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/valve_node.cfg -------------------------------------------------------------------------------- /model-build/script_inc/cfg/wtw.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/model-build/script_inc/cfg/wtw.cfg -------------------------------------------------------------------------------- /scripts/create_network_objects/create_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/create_network_objects/create_objects.rb -------------------------------------------------------------------------------- /scripts/create_selection_lists_from_areas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/create_selection_lists_from_areas/README.md -------------------------------------------------------------------------------- /scripts/create_selection_lists_from_areas/create_selection_lists_from_areas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/create_selection_lists_from_areas/create_selection_lists_from_areas.rb -------------------------------------------------------------------------------- /scripts/demand_allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/demand_allocation/README.md -------------------------------------------------------------------------------- /scripts/demand_allocation/demand_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/demand_allocation/demand_allocation.rb -------------------------------------------------------------------------------- /scripts/demand_allocation/lib/customer_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/demand_allocation/lib/customer_allocation.rb -------------------------------------------------------------------------------- /scripts/demand_allocation/lib/customer_allocation/allocator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/demand_allocation/lib/customer_allocation/allocator.rb -------------------------------------------------------------------------------- /scripts/demand_allocation/lib/customer_allocation/spatial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/demand_allocation/lib/customer_allocation/spatial.rb -------------------------------------------------------------------------------- /scripts/demand_allocation/lib/customer_allocation/version.rb: -------------------------------------------------------------------------------- 1 | module CustomerAllocation 2 | VERSION = '0.0.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/README.md -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/lib/os_ntf_elevations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/lib/os_ntf_elevations.rb -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/BilinearInterpolation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/BilinearInterpolation.rb -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSGroundGrid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSGroundGrid.rb -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSGroundGridCalculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSGroundGridCalculator.rb -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSTileLocator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/lib/os_ntf_elevations/OSTileLocator.rb -------------------------------------------------------------------------------- /scripts/elevations_gb_os_ntf/set_elevations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/elevations_gb_os_ntf/set_elevations.rb -------------------------------------------------------------------------------- /scripts/exchange_demand_allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_demand_allocation/README.md -------------------------------------------------------------------------------- /scripts/exchange_demand_allocation/example_demands.ddg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_demand_allocation/example_demands.ddg -------------------------------------------------------------------------------- /scripts/exchange_demand_allocation/example_network.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_demand_allocation/example_network.csv -------------------------------------------------------------------------------- /scripts/exchange_demand_allocation/run_demand_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_demand_allocation/run_demand_allocation.rb -------------------------------------------------------------------------------- /scripts/exchange_demand_allocation/run_exchange.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_demand_allocation/run_exchange.cmd -------------------------------------------------------------------------------- /scripts/exchange_full_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/README.md -------------------------------------------------------------------------------- /scripts/exchange_full_example/build_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/build_model.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/customer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/customer.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/fixed_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/fixed_head.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/hydrant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/hydrant.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/hydrant_lead.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/hydrant_lead.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/meter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/meter.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/odic_script.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/odic_script.bas -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/pipe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/pipe.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/cfg/valve.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/cfg/valve.cfg -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/expand_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/expand_links.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/odic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/odic.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/set_controls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/set_controls.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/set_elevations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/set_elevations.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/set_live_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/set_live_data.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/lib/model_builder/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/lib/model_builder/version.rb -------------------------------------------------------------------------------- /scripts/exchange_full_example/run_exchange.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/run_exchange.cmd -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/addresses.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/addresses.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/addresses.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/addresses.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/addresses.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/addresses.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/demand_diagram/Demand Diagram.ddg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/demand_diagram/Demand Diagram.ddg -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/ground/10m_spacing.ASC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/ground/10m_spacing.ASC.xml -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/ground/10m_spacing.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/ground/10m_spacing.asc -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/ground/10m_spacing.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/ground/10m_spacing.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/scada/BulkMeterOne.sli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/scada/BulkMeterOne.sli -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant_leads.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant_leads.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant_leads.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant_leads.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_hydrant_leads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_hydrant_leads.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains_presplit.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains_presplit.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains_presplit.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains_presplit.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains_presplit.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains_presplit.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains_presplit.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_mains_presplit.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_mains_presplit.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_meter.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_meter.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_meter.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_meter.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_meter.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_meter.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_treatment_works.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_treatment_works.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_treatment_works.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_treatment_works.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_treatment_works.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_treatment_works.shx -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_valve.dbf -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_valve.prj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_valve.qpj -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_valve.shp -------------------------------------------------------------------------------- /scripts/exchange_full_example/source_data/water_valve.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/exchange_full_example/source_data/water_valve.shx -------------------------------------------------------------------------------- /scripts/expand_short_links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/expand_short_links/README.md -------------------------------------------------------------------------------- /scripts/expand_short_links/expand_short_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/expand_short_links/expand_short_links.rb -------------------------------------------------------------------------------- /scripts/icm_scenario_generator/scenario_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/icm_scenario_generator/scenario_generator.rb -------------------------------------------------------------------------------- /scripts/icm_scenario_generator/scenario_generator_runoff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/icm_scenario_generator/scenario_generator_runoff.rb -------------------------------------------------------------------------------- /scripts/material_lookup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/material_lookup/README.md -------------------------------------------------------------------------------- /scripts/material_lookup/example_network.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/material_lookup/example_network.csv -------------------------------------------------------------------------------- /scripts/material_lookup/set_materials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/material_lookup/set_materials.rb -------------------------------------------------------------------------------- /scripts/modify_network_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/modify_network_data/README.md -------------------------------------------------------------------------------- /scripts/modify_network_data/example_network.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/modify_network_data/example_network.csv -------------------------------------------------------------------------------- /scripts/modify_network_data/modify_network_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/modify_network_data/modify_network_data.rb -------------------------------------------------------------------------------- /scripts/modify_structured_data/modify_structured_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/modify_structured_data/modify_structured_data.rb -------------------------------------------------------------------------------- /scripts/network_validations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/network_validations/README.md -------------------------------------------------------------------------------- /scripts/network_validations/validate_network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/network_validations/validate_network.rb -------------------------------------------------------------------------------- /scripts/open_data_import_centre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/open_data_import_centre/README.md -------------------------------------------------------------------------------- /scripts/open_data_import_centre/import_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/open_data_import_centre/import_model.rb -------------------------------------------------------------------------------- /scripts/open_data_import_centre/odic_script.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/open_data_import_centre/odic_script.bas -------------------------------------------------------------------------------- /scripts/split_links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/split_links/README.md -------------------------------------------------------------------------------- /scripts/split_links/libs/split_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/split_links/libs/split_links.rb -------------------------------------------------------------------------------- /scripts/split_links/split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/split_links/split.rb -------------------------------------------------------------------------------- /scripts/to_geojson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/to_geojson/README.md -------------------------------------------------------------------------------- /scripts/to_geojson/to_geojson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/to_geojson/to_geojson.rb -------------------------------------------------------------------------------- /scripts/trace_network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/trace_network/README.md -------------------------------------------------------------------------------- /scripts/trace_network/trace_network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcreate/infoworks-ruby-scripts/HEAD/scripts/trace_network/trace_network.rb --------------------------------------------------------------------------------