diff --git a/koswat/cost_report/README.md b/koswat/cost_report/README.md index 3de52aa9..7e0a4e30 100644 --- a/koswat/cost_report/README.md +++ b/koswat/cost_report/README.md @@ -7,7 +7,8 @@ A cost report is generated given a `KoswatRunScenarioSettings` instance. Said re In addition to the cost report, an infrastructure report (`InfrastructureLocationProfileCostReport`) will be added based on the `InfrastructureSurroundingsWrapper` which will determine additional costs per reinforcment depending on whether the infrastructures need to be replaced or repaired. The defined hierarchy is such as: -- `KoswatSummary`: Wrapper of all multi-location-profile-cost-reports `MultiLocationProfileCostReport`. -- `MultiLocationproFileCostReport`: Generates a profile-cost-report `ProfileCostReport`, based on a list of locations `PointSurroundings` and the compatible reinforcement profiles `ReinforcementProfileProtocol`. -- `ProfileCostReport`: Contains a summary of the costs associated with its reinforced profile (`ReinforcementProfileProtocol`). It also contains a list of reports per-layer ( `LayerCostReport`). -- `LayerCostReport`: A brief summary of the associated volumes and costs for a given `ReinforcementLayerProtocol`. \ No newline at end of file +- `KoswatSummary`: Wrapper of all multi-location-profile-cost-reports `MultiLocationProfileCostReport` and strategy-location-reinforcements `StrategyLocationReinforcement`. +- `MultiLocationProfileCostReport`: Generates a profile-cost-report `ProfileCostReport`, based on a list of locations `PointSurroundings` and the compatible reinforcement profiles `ReinforcementProfileProtocol`. +- `ProfileCostReport`: Contains a summary of the costs associated with its reinforced profile (`ReinforcementProfileProtocol`). It also contains a list of reports per-layer (`LayerCostReport`). +- `LayerCostReport`: A brief summary of the associated volumes and costs for a given `ReinforcementLayerProtocol`. +- `StrategyLocationReinforcement`: Contains the available and selected reinforcement profiles per location `PointSurrounding`. \ No newline at end of file diff --git a/koswat/cost_report/infrastructure/infrastructure_location_profile_cost_report.py b/koswat/cost_report/infrastructure/infrastructure_location_profile_cost_report.py index c5398211..815cccfc 100644 --- a/koswat/cost_report/infrastructure/infrastructure_location_profile_cost_report.py +++ b/koswat/cost_report/infrastructure/infrastructure_location_profile_cost_report.py @@ -31,7 +31,7 @@ def location(self) -> PointSurroundings | None: @property def total_cost(self) -> float: if not self.infrastructure_location_costs: - return 0 + return 0.0 return ( self.infrastructure_location_costs.zone_a_costs + self.infrastructure_location_costs.zone_b_costs @@ -40,5 +40,5 @@ def total_cost(self) -> float: @property def total_cost_with_surtax(self) -> float: if not self.infrastructure_location_costs: - return 0 + return 0.0 return self.total_cost * self.infrastructure_location_costs.surtax diff --git a/koswat/cost_report/io/summary/koswat_summary_exporter.py b/koswat/cost_report/io/summary/koswat_summary_exporter.py index 26fe04c0..27d95096 100644 --- a/koswat/cost_report/io/summary/koswat_summary_exporter.py +++ b/koswat/cost_report/io/summary/koswat_summary_exporter.py @@ -1,4 +1,4 @@ -from click import Path +from pathlib import Path from koswat.core.io.koswat_exporter_protocol import KoswatExporterProtocol from koswat.cost_report.io.summary.summary_costs.summary_costs_csv_exporter import ( diff --git a/koswat/cost_report/io/summary/summary_costs/summary_costs_csv_fom_builder.py b/koswat/cost_report/io/summary/summary_costs/summary_costs_csv_fom_builder.py index 33e43792..e73297d2 100644 --- a/koswat/cost_report/io/summary/summary_costs/summary_costs_csv_fom_builder.py +++ b/koswat/cost_report/io/summary/summary_costs/summary_costs_csv_fom_builder.py @@ -123,12 +123,8 @@ def _get_total_cost_rows( infrastructure_cost: dict[str, list[float]], ) -> dict[str, list[float]]: def add_costs(measure_cost: list[float], infra_cost: list[float]): - def replace_nan(cost: list[float]) -> list[float]: - return [0 if math.isnan(x) else x for x in cost] - return [ - x + y - for x, y in zip(replace_nan(measure_cost), replace_nan(infra_cost)) + round(x + y, self._decimals) for x, y in zip(measure_cost, infra_cost) ] _total_cost_key = "Total cost" @@ -151,19 +147,24 @@ def _get_infrastructure_cost(self) -> dict: _infrastructure_cost_incl_surtax_key = "Infrastructure cost incl surtax" _infrastructure_rows = defaultdict(list) + # Cost per reinforcement type for _ordered_reinf in self._get_summary_reinforcement_type_column_order(): - _report_by_profile = self.koswat_summary.get_report_by_profile( - _ordered_reinf - ) _infrastructure_rows[_infrastructure_cost_key].append( - round(_report_by_profile.infrastructure_cost, self._decimals) + round( + self.koswat_summary.get_infrastructure_cost(_ordered_reinf), + self._decimals, + ) ) _infrastructure_rows[_infrastructure_cost_incl_surtax_key].append( round( - _report_by_profile.infrastructure_cost_with_surtax, self._decimals + self.koswat_summary.get_infrastructure_cost_with_surtax( + _ordered_reinf + ), + self._decimals, ) ) + # Summary of cost per reinforcement type _infrastructure_rows[_infrastructure_cost_key].append( round(sum(_infrastructure_rows[_infrastructure_cost_key]), self._decimals) ) @@ -184,6 +185,8 @@ def _get_cost_per_selected_measure(self) -> dict: _total_meters_per_selected_measure = ( self._get_total_meters_per_selected_measure() ) + + # Cost per reinforcement type for _ordered_reinf in self._get_summary_reinforcement_type_column_order(): _total_meters = _total_meters_per_selected_measure.get(_ordered_reinf, 0) _selected_measures_rows[_total_measure_meters_key].append(_total_meters) @@ -203,6 +206,7 @@ def _get_cost_per_selected_measure(self) -> dict: round(_measure_cost_with_surtax, self._decimals) ) + # Summary of cost per reinforcement type _selected_measures_rows[_total_measure_cost_key].append( round(sum(_selected_measures_rows[_total_measure_cost_key]), self._decimals) ) @@ -231,21 +235,19 @@ def _format_parameter_name(dict_name: str) -> str: _quantity_key = f"{_parameter_name} {self._quantity_key}:" csv_dictionary[_quantity_key].append( - round(_vc_parameter.quantity, self._decimals) - if _vc_parameter - else math.nan + round(_vc_parameter.quantity, self._decimals) if _vc_parameter else 0.0 ) _cost_key = f"{_parameter_name} {self._cost_key}:" csv_dictionary[_cost_key].append( round(_vc_parameter.total_cost, self._decimals) if _vc_parameter - else math.nan + else 0.0 ) _cost_with_surtax_key = f"{_parameter_name} {self._cost_with_surtax_key}:" csv_dictionary[_cost_with_surtax_key].append( round(_vc_parameter.total_cost_with_surtax, self._decimals) if _vc_parameter - else math.nan + else 0.0 ) diff --git a/koswat/cost_report/multi_location_profile/multi_location_profile_cost_report.py b/koswat/cost_report/multi_location_profile/multi_location_profile_cost_report.py index cd698d99..cf707189 100644 --- a/koswat/cost_report/multi_location_profile/multi_location_profile_cost_report.py +++ b/koswat/cost_report/multi_location_profile/multi_location_profile_cost_report.py @@ -47,21 +47,6 @@ def total_cost_with_surtax(self) -> float: self.obstacle_locations ) - @property - def infrastructure_cost(self) -> float: - if not self.infra_multilocation_profile_cost_report: - return math.nan - return sum(x.total_cost for x in self.infra_multilocation_profile_cost_report) - - @property - def infrastructure_cost_with_surtax(self) -> float: - if not self.infra_multilocation_profile_cost_report: - return math.nan - return sum( - x.total_cost_with_surtax - for x in self.infra_multilocation_profile_cost_report - ) - @property def profile_type_name(self) -> str: if ( diff --git a/koswat/cost_report/summary/koswat_summary.py b/koswat/cost_report/summary/koswat_summary.py index c25ba0e0..ef5583e7 100644 --- a/koswat/cost_report/summary/koswat_summary.py +++ b/koswat/cost_report/summary/koswat_summary.py @@ -4,6 +4,7 @@ from typing import Type from koswat.cost_report.multi_location_profile import MultiLocationProfileCostReport +from koswat.dike.surroundings.point.point_surroundings import PointSurroundings from koswat.dike_reinforcements.reinforcement_profile.reinforcement_profile_protocol import ( ReinforcementProfileProtocol, ) @@ -24,6 +25,15 @@ class KoswatSummary: def get_report_by_profile( self, profile_type: Type[ReinforcementProfileProtocol] ) -> MultiLocationProfileCostReport | None: + """ + Get the report for a specific profile type. + + Args: + profile_type (Type[ReinforcementProfileProtocol]): Type of reinforcement profile. + + Returns: + MultiLocationProfileCostReport | None: Report for the profile type. + """ return next( ( _report @@ -34,3 +44,56 @@ def get_report_by_profile( ), None, ) + + def get_locations_by_profile( + self, profile_type: Type[ReinforcementProfileProtocol] + ) -> list[PointSurroundings]: + """ + Get the locations for which a specific profile type is selected. + + Args: + profile_type (Type[ReinforcementProfileProtocol]): Type of reinforcement profile. + + Returns: + list[PointSurroundings]: List of locations. + """ + return [ + _rpl.location + for _rpl in self.reinforcement_per_locations + if _rpl.selected_measure == profile_type + ] + + def get_infrastructure_cost( + self, profile_type: Type[ReinforcementProfileProtocol] + ) -> float: + """ + Get the infrastructure cost for those locations for which a specific profile type is selected. + + Args: + profile_type (Type[ReinforcementProfileProtocol]): Type of reinforcement profile. + + Returns: + float: Infrastructure cost. + """ + _locations = self.get_locations_by_profile(profile_type) + if not _locations: + return 0.0 + _report = self.get_report_by_profile(profile_type) + return sum( + ilpcr.total_cost + for ilpcr in _report.infra_multilocation_profile_cost_report + if ilpcr.location in _locations + ) + + def get_infrastructure_cost_with_surtax( + self, profile_type: Type[ReinforcementProfileProtocol] + ) -> float: + _locations = self.get_locations_by_profile(profile_type) + if not _locations: + return 0.0 + _report = self.get_report_by_profile(profile_type) + return sum( + ilpcr.total_cost_with_surtax + for ilpcr in _report.infra_multilocation_profile_cost_report + if ilpcr.location in _locations + ) diff --git a/koswat/strategies/README.md b/koswat/strategies/README.md index 12ba3def..fbdd5ea3 100644 --- a/koswat/strategies/README.md +++ b/koswat/strategies/README.md @@ -4,7 +4,7 @@ This modules contains the logic to choose which measure will be applied for a gi - `StrategyInput`, wraps all required properties to apply a strategy: - locations_matrix (`dict[PointSurroundings, list[Type[ReinforcementProfileProtocol]]]`), contains all the available reinforcements that can be applied at each location. - - structure_min_buffer (`float`), how many extra meters a structure requires for support its reinforcement. + - structure_min_buffer (`float`), how many extra meters a structure requires to support its reinforcement. - structure_min_length (`float`), how many minimal meters are required for a structure to "exist". This rule can, at times, have certain exceptions. - `StrategyLocationReinforcement`, represents a mapped location to a selected measure. diff --git a/tests/cost_report/io/summary/summary_costs/test_summary_costs_csv_exporter.py b/tests/cost_report/io/summary/summary_costs/test_summary_costs_csv_exporter.py index af5151b8..251c340a 100644 --- a/tests/cost_report/io/summary/summary_costs/test_summary_costs_csv_exporter.py +++ b/tests/cost_report/io/summary/summary_costs/test_summary_costs_csv_exporter.py @@ -34,47 +34,47 @@ def test_summary_cost_csv_exporter_export( _expected_text = """Profile type;Kistdam;Kwelscherm;Grondmaatregel profiel;Stabiliteitswand Cost per km (Euro/km);0.0;8144.4;16288.8;24433.2 Cost per km incl surtax (Euro/km);0.0;12216.6;24433.2;36649.8 -New grass volume (quantity):;nan;nan;nan;nan -New grass volume (cost):;nan;nan;nan;nan -New grass volume (cost incl surtax):;nan;nan;nan;nan -New clay volume (quantity):;nan;nan;nan;nan -New clay volume (cost):;nan;nan;nan;nan -New clay volume (cost incl surtax):;nan;nan;nan;nan -New core volume (quantity):;nan;nan;nan;nan -New core volume (cost):;nan;nan;nan;nan -New core volume (cost incl surtax):;nan;nan;nan;nan -Reused grass volume (quantity):;nan;nan;nan;nan -Reused grass volume (cost):;nan;nan;nan;nan -Reused grass volume (cost incl surtax):;nan;nan;nan;nan -Reused core volume (quantity):;nan;nan;nan;nan -Reused core volume (cost):;nan;nan;nan;nan -Reused core volume (cost incl surtax):;nan;nan;nan;nan -Removed material volume (quantity):;nan;nan;nan;nan -Removed material volume (cost):;nan;nan;nan;nan -Removed material volume (cost incl surtax):;nan;nan;nan;nan -New grass layer surface (quantity):;nan;nan;nan;nan -New grass layer surface (cost):;nan;nan;nan;nan -New grass layer surface (cost incl surtax):;nan;nan;nan;nan -New clay layer surface (quantity):;nan;nan;nan;nan -New clay layer surface (cost):;nan;nan;nan;nan -New clay layer surface (cost incl surtax):;nan;nan;nan;nan -New core layer surface (quantity):;nan;nan;nan;nan -New core layer surface (cost):;nan;nan;nan;nan -New core layer surface (cost incl surtax):;nan;nan;nan;nan -New maaiveld surface (quantity):;nan;nan;nan;nan -New maaiveld surface (cost):;nan;nan;nan;nan -New maaiveld surface (cost incl surtax):;nan;nan;nan;nan -Land purchase surface (quantity):;nan;nan;nan;nan -Land purchase surface (cost):;nan;nan;nan;nan -Land purchase surface (cost incl surtax):;nan;nan;nan;nan -Construction length (quantity):;nan;nan;nan;nan -Construction length (cost):;nan;nan;nan;nan -Construction length (cost incl surtax):;nan;nan;nan;nan +New grass volume (quantity):;0.0;0.0;0.0;0.0 +New grass volume (cost):;0.0;0.0;0.0;0.0 +New grass volume (cost incl surtax):;0.0;0.0;0.0;0.0 +New clay volume (quantity):;0.0;0.0;0.0;0.0 +New clay volume (cost):;0.0;0.0;0.0;0.0 +New clay volume (cost incl surtax):;0.0;0.0;0.0;0.0 +New core volume (quantity):;0.0;0.0;0.0;0.0 +New core volume (cost):;0.0;0.0;0.0;0.0 +New core volume (cost incl surtax):;0.0;0.0;0.0;0.0 +Reused grass volume (quantity):;0.0;0.0;0.0;0.0 +Reused grass volume (cost):;0.0;0.0;0.0;0.0 +Reused grass volume (cost incl surtax):;0.0;0.0;0.0;0.0 +Reused core volume (quantity):;0.0;0.0;0.0;0.0 +Reused core volume (cost):;0.0;0.0;0.0;0.0 +Reused core volume (cost incl surtax):;0.0;0.0;0.0;0.0 +Removed material volume (quantity):;0.0;0.0;0.0;0.0 +Removed material volume (cost):;0.0;0.0;0.0;0.0 +Removed material volume (cost incl surtax):;0.0;0.0;0.0;0.0 +New grass layer surface (quantity):;0.0;0.0;0.0;0.0 +New grass layer surface (cost):;0.0;0.0;0.0;0.0 +New grass layer surface (cost incl surtax):;0.0;0.0;0.0;0.0 +New clay layer surface (quantity):;0.0;0.0;0.0;0.0 +New clay layer surface (cost):;0.0;0.0;0.0;0.0 +New clay layer surface (cost incl surtax):;0.0;0.0;0.0;0.0 +New core layer surface (quantity):;0.0;0.0;0.0;0.0 +New core layer surface (cost):;0.0;0.0;0.0;0.0 +New core layer surface (cost incl surtax):;0.0;0.0;0.0;0.0 +New maaiveld surface (quantity):;0.0;0.0;0.0;0.0 +New maaiveld surface (cost):;0.0;0.0;0.0;0.0 +New maaiveld surface (cost incl surtax):;0.0;0.0;0.0;0.0 +Land purchase surface (quantity):;0.0;0.0;0.0;0.0 +Land purchase surface (cost):;0.0;0.0;0.0;0.0 +Land purchase surface (cost incl surtax):;0.0;0.0;0.0;0.0 +Construction length (quantity):;0.0;0.0;0.0;0.0 +Construction length (cost):;0.0;0.0;0.0;0.0 +Construction length (cost incl surtax):;0.0;0.0;0.0;0.0 Total measure meters;0;1;1;2 Total measure cost;0.0;8.14;16.29;48.87;73.3 Total measure cost incl surtax;0.0;12.22;24.43;73.3;109.95 -Infrastructure cost;39.6;39.6;39.6;39.6;158.4 -Infrastructure cost incl surtax;277.2;277.2;277.2;277.2;1108.8 -Total cost;39.6;47.74;55.89;88.47;231.7 -Total cost incl surtax;277.2;289.42;301.63;350.5;1218.75""" +Infrastructure cost;0.0;0.0;6.6;33.0;39.6 +Infrastructure cost incl surtax;0.0;0.0;19.8;257.4;277.2 +Total cost;0.0;8.14;22.89;81.87;112.9 +Total cost incl surtax;0.0;12.22;44.23;330.7;387.15""" assert _expected_text == _read_text diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1a_dh_with_default_layers/summary_costs.csv index 258c0864..3baa9451 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1b_ds_with_default_layers/summary_costs.csv index 9a8c994f..ac4f4abe 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1c_dp_with_default_layers/summary_costs.csv index 89574dea..51b50607 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12417.58;25550.72 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1d_dhds_with_default_layers/summary_costs.csv index 260d8425..bf97201e 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1e_dhdp_with_default_layers/summary_costs.csv index 36bcecf3..f5550d9b 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12954.77;26672.31 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1f_dsdp_with_default_layers/summary_costs.csv index 4155fafd..d2c1bb44 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12738.27;26223.67 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_1g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_1g_dhdsdp_with_default_layers/summary_costs.csv index 89b6cd1f..06a5435d 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_1g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_1g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;13955.84;28691.17 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2a_dh_with_default_layers/summary_costs.csv index b63f937b..bc6a521d 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2b_ds_with_default_layers/summary_costs.csv index 883c822e..6075b7e6 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2c_dp_with_default_layers/summary_costs.csv index 6fe452d4..1b76a589 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;17479.87;35196.38 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2d_dhds_with_default_layers/summary_costs.csv index 5d63f599..55c46a35 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2e_dhdp_with_default_layers/summary_costs.csv index 08fef3de..dab43d9a 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;20175.58;39682.73 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2f_dsdp_with_default_layers/summary_costs.csv index e43a8878..03137af0 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;19481.34;38561.14 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk1_2g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk1_2g_dhdsdp_with_default_layers/summary_costs.csv index f35d0359..5e9b3fd1 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk1_2g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk1_2g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;22786.91;43720.45 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1a_dh_with_default_layers/summary_costs.csv index af9b0d8e..bfc842b3 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1b_ds_with_default_layers/summary_costs.csv index 9a8c994f..ac4f4abe 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1c_dp_with_default_layers/summary_costs.csv index 89574dea..51b50607 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12417.58;25550.72 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1d_dhds_with_default_layers/summary_costs.csv index ccce979c..58067275 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1e_dhdp_with_default_layers/summary_costs.csv index ed91ee38..cffdf576 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12954.77;26672.31 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1f_dsdp_with_default_layers/summary_costs.csv index 4155fafd..d2c1bb44 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;12738.27;26223.67 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_1g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_1g_dhdsdp_with_default_layers/summary_costs.csv index 78c23649..3a308532 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_1g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_1g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;2821.61;13955.84;28691.17 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2a_dh_with_default_layers/summary_costs.csv index 81d6105c..4c621981 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2b_ds_with_default_layers/summary_costs.csv index 883c822e..6075b7e6 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2c_dp_with_default_layers/summary_costs.csv index 6fe452d4..1b76a589 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;17479.87;35196.38 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2d_dhds_with_default_layers/summary_costs.csv index 69745e03..cde357ad 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2e_dhdp_with_default_layers/summary_costs.csv index d3007364..e568c4cd 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;20175.58;39682.73 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2f_dsdp_with_default_layers/summary_costs.csv index e43a8878..03137af0 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;19481.34;38561.14 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk2_2g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk2_2g_dhdsdp_with_default_layers/summary_costs.csv index 640fe677..4f11e0b7 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk2_2g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk2_2g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;5141.4;22786.91;43720.45 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1a_dh_with_default_layers/summary_costs.csv index d3e5a131..9f0a102f 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1b_ds_with_default_layers/summary_costs.csv index 61acd57d..2b2f21de 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1c_dp_with_default_layers/summary_costs.csv index eaa3fd2b..e5a05669 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;1893.7;12417.58;25550.72 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1d_dhds_with_default_layers/summary_costs.csv index 4e90d1e8..d411e64b 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1e_dhdp_with_default_layers/summary_costs.csv index b5f6deee..21041b08 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;1893.7;12954.77;26672.31 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1f_dsdp_with_default_layers/summary_costs.csv index f35bf2cc..f78d7fd7 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;1893.7;13173.44;27120.94 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_1g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_1g_dhdsdp_with_default_layers/summary_costs.csv index 7d84ab72..e309c269 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_1g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_1g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;1893.7;14299.28;29364.12 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2a_dh_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2a_dh_with_default_layers/summary_costs.csv index de308f47..3479f7a2 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2a_dh_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2a_dh_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2b_ds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2b_ds_with_default_layers/summary_costs.csv index 75f61c19..4b9413ae 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2b_ds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2b_ds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2c_dp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2c_dp_with_default_layers/summary_costs.csv index 06bcc79f..89e02265 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2c_dp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2c_dp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;4213.48;17479.87;35196.38 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2d_dhds_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2d_dhds_with_default_layers/summary_costs.csv index 9bf946e1..03fb5111 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2d_dhds_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2d_dhds_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;0.0;0.0;0.0 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2e_dhdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2e_dhdp_with_default_layers/summary_costs.csv index 5e3ed904..80b63a63 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2e_dhdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2e_dhdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;4213.48;20175.58;39682.73 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2f_dsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2f_dsdp_with_default_layers/summary_costs.csv index 9e797277..ff6a129b 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2f_dsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2f_dsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;4213.48;20175.58;39682.73 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file diff --git a/tests/test_data/acceptance_reference_data/case_dijk3_2g_dhdsdp_with_default_layers/summary_costs.csv b/tests/test_data/acceptance_reference_data/case_dijk3_2g_dhdsdp_with_default_layers/summary_costs.csv index a76d0ec0..c91e7d93 100644 --- a/tests/test_data/acceptance_reference_data/case_dijk3_2g_dhdsdp_with_default_layers/summary_costs.csv +++ b/tests/test_data/acceptance_reference_data/case_dijk3_2g_dhdsdp_with_default_layers/summary_costs.csv @@ -40,7 +40,7 @@ Construction length (cost incl surtax):;0;1456.0;4213.48;23543.42;44842.04 Total measure meters;0;0;0;0;0 Total measure cost;0.0;0.0;0.0;0.0;0.0;0.0 Total measure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 -Infrastructure cost;nan;nan;nan;nan;nan;nan -Infrastructure cost incl surtax;nan;nan;nan;nan;nan;nan +Infrastructure cost;0.0;0.0;0.0;0.0;0.0;0.0 +Infrastructure cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 Total cost;0.0;0.0;0.0;0.0;0.0;0.0 Total cost incl surtax;0.0;0.0;0.0;0.0;0.0;0.0 \ No newline at end of file